ETH Price: $3,063.43 (+1.96%)
Gas: 3 Gwei

Token

Live Like A Cat -Furusato Maneki Imabari- (LLACFMI)
 

Overview

Max Total Supply

0 LLACFMI

Holders

216

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 LLACFMI
0xe9BE824FCa519f0ef53f760B8586043cA88229E7
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
llacfm

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 2 of 14 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.2) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.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: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

        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 overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

    /**
     * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @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 _ownerOf(tokenId) != address(0);
    }

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

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

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

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

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

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

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

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _balances[owner] -= 1;
        }
        delete _owners[tokenId];

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

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

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

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");

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

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[from] -= 1;
            _balances[to] += 1;
        }
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId, 1);
    }

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

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

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
     * - When `from` is zero, the tokens will be minted for `to`.
     * - When `to` is zero, ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant
     * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such
     * that `ownerOf(tokenId)` is `a`.
     */
    // solhint-disable-next-line func-name-mixedcase
    function __unsafe_increaseBalance(address account, uint256 amount) internal {
        _balances[account] += amount;
    }
}

File 3 of 14 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.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 4 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.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`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

File 5 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 6 of 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

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

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

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 7 of 14 : Base64.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Base64.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides a set of functions to operate with Base64 strings.
 *
 * _Available since v4.5._
 */
library Base64 {
    /**
     * @dev Base64 Encoding/Decoding Table
     */
    string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /**
     * @dev Converts a `bytes` to its Bytes64 `string` representation.
     */
    function encode(bytes memory data) internal pure returns (string memory) {
        /**
         * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence
         * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol
         */
        if (data.length == 0) return "";

        // Loads the table into memory
        string memory table = _TABLE;

        // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter
        // and split into 4 numbers of 6 bits.
        // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up
        // - `data.length + 2`  -> Round up
        // - `/ 3`              -> Number of 3-bytes chunks
        // - `4 *`              -> 4 characters for each chunk
        string memory result = new string(4 * ((data.length + 2) / 3));

        /// @solidity memory-safe-assembly
        assembly {
            // Prepare the lookup table (skip the first "length" byte)
            let tablePtr := add(table, 1)

            // Prepare result pointer, jump over length
            let resultPtr := add(result, 32)

            // Run over the input, 3 bytes at a time
            for {
                let dataPtr := data
                let endPtr := add(data, mload(data))
            } lt(dataPtr, endPtr) {

            } {
                // Advance 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // To write each character, shift the 3 bytes (18 bits) chunk
                // 4 times in blocks of 6 bits for each character (18, 12, 6, 0)
                // and apply logical AND with 0x3F which is the number of
                // the previous character in the ASCII table prior to the Base64 Table
                // The result is then added to the table to get the character to write,
                // and finally write it in the result pointer but with a left shift
                // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits

                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance
            }

            // When data `bytes` is not exactly 3 bytes long
            // it is padded with `=` characters at the end
            switch mod(mload(data), 3)
            case 1 {
                mstore8(sub(resultPtr, 1), 0x3d)
                mstore8(sub(resultPtr, 2), 0x3d)
            }
            case 2 {
                mstore8(sub(resultPtr, 1), 0x3d)
            }
        }

        return result;
    }
}

File 8 of 14 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 9 of 14 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 10 of 14 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.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 11 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 12 of 14 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

File 13 of 14 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

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

File 14 of 14 : llacfm.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/Base64.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract llacfm is ERC721, Ownable {
    using Strings for uint256;
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;
    string ipfs;
    mapping(uint256 => uint256) types;
    string title;
    string description;
    address ownerd;
    uint256 thtime;
    mapping (uint256 => string) token;
    mapping (uint256 => uint256)  transtime;
    address[] allowaddress;
    uint256 maxsupply;
    constructor(string memory name_,string memory symbol_,string memory title_,string memory description_,string memory ipfs_,uint256 maxsupply_) ERC721(name_,symbol_){
        title = title_;
        description = description_;
        ownerd = msg.sender;
        ipfs = ipfs_;
        thtime = 365 * 3600 * 24;
        maxsupply = maxsupply_;
    }
    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        bytes memory json = abi.encodePacked(
            '{"name": "', title ,' #',
            Strings.toString(tokenId),
            '", "description": "', description ,'", "image": "', ipfs,'"}' );
        return string(abi.encodePacked("data:application/json;base64,", Base64.encode(json)));
    }
    function mint(address user) public onlyOwner returns (uint256)  {
        require(_tokenIds.current() < maxsupply);
        _tokenIds.increment();
        uint256 newItemId = _tokenIds.current();
        _mint(user, newItemId);
        transtime[newItemId] = block.timestamp;
        return newItemId;
    }
    function isTime(uint256 _lastTransferredAt, uint256 _now) public view returns (bool) {
        return (_now - _lastTransferredAt) >= thtime;
    }
    function _beforeTokenTransfer(address from, address to, uint256 tokenId, uint256 batchSize) internal override {
        if (from == address(0) || from == owner()) {
        } else {
            require(isTime(transtime[tokenId], block.timestamp),"ERC721Transfer: This NFT is currently locked");
        }
        super._beforeTokenTransfer(from, to, tokenId,batchSize);
    }
    function setApprovalForAll(address ope,bool approved) public virtual override {
        require(list(ope) == true, "ERC721Approve: This contract is not authorized");
        super.setApprovalForAll(ope, approved);
    }
    function approve(address to,uint256 tokenId) public virtual override {
        require(list(to) == true, "ERC721Approve: This contract is not authorized");
        super.approve(to, tokenId);
    }
    function list(address to) public view returns (bool) {
        for (uint ins;ins<allowaddress.length; ins++) {
            if (allowaddress[ins] == to) {
                return true;
            }
        }
        return false;
    }
    function _ViewList() public view returns (address[] memory) {
        return allowaddress;
    }
    function _ViewMaxsupply() public view returns (uint256) {
        return maxsupply;
    }
    function _SetList(address to) public onlyOwner {
        allowaddress.push(to);
    }
    function _DelList(uint256 id) public onlyOwner {
        delete allowaddress[id];
    }
    function _ViewTime(uint256 tokenId) public view returns (uint256) {
        return block.timestamp - transtime[tokenId];
    }

}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"title_","type":"string"},{"internalType":"string","name":"description_","type":"string"},{"internalType":"string","name":"ipfs_","type":"string"},{"internalType":"uint256","name":"maxsupply_","type":"uint256"}],"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":"uint256","name":"id","type":"uint256"}],"name":"_DelList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"_SetList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_ViewList","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_ViewMaxsupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"_ViewTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_lastTransferredAt","type":"uint256"},{"internalType":"uint256","name":"_now","type":"uint256"}],"name":"isTime","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"list","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"ope","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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"}]

60806040523480156200001157600080fd5b5060405162003cee38038062003cee83398181016040528101906200003791906200048d565b858581600090805190602001906200005192919062000205565b5080600190805190602001906200006a92919062000205565b5050506200008d620000816200013760201b60201c565b6200013f60201b60201c565b83600a9080519060200190620000a592919062000205565b5082600b9080519060200190620000be92919062000205565b5033600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600890805190602001906200011892919062000205565b506301e13380600d819055508060118190555050505050505062000628565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021390620005f3565b90600052602060002090601f01602090048101928262000237576000855562000283565b82601f106200025257805160ff191683800117855562000283565b8280016001018555821562000283579182015b828111156200028257825182559160200191906001019062000265565b5b50905062000292919062000296565b5090565b5b80821115620002b157600081600090555060010162000297565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200031e82620002d3565b810181811067ffffffffffffffff8211171562000340576200033f620002e4565b5b80604052505050565b600062000355620002b5565b905062000363828262000313565b919050565b600067ffffffffffffffff821115620003865762000385620002e4565b5b6200039182620002d3565b9050602081019050919050565b60005b83811015620003be578082015181840152602081019050620003a1565b83811115620003ce576000848401525b50505050565b6000620003eb620003e58462000368565b62000349565b9050828152602081018484840111156200040a5762000409620002ce565b5b620004178482856200039e565b509392505050565b600082601f830112620004375762000436620002c9565b5b815162000449848260208601620003d4565b91505092915050565b6000819050919050565b620004678162000452565b81146200047357600080fd5b50565b60008151905062000487816200045c565b92915050565b60008060008060008060c08789031215620004ad57620004ac620002bf565b5b600087015167ffffffffffffffff811115620004ce57620004cd620002c4565b5b620004dc89828a016200041f565b965050602087015167ffffffffffffffff8111156200050057620004ff620002c4565b5b6200050e89828a016200041f565b955050604087015167ffffffffffffffff811115620005325762000531620002c4565b5b6200054089828a016200041f565b945050606087015167ffffffffffffffff811115620005645762000563620002c4565b5b6200057289828a016200041f565b935050608087015167ffffffffffffffff811115620005965762000595620002c4565b5b620005a489828a016200041f565b92505060a0620005b789828a0162000476565b9150509295509295509295565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200060c57607f821691505b602082108103620006225762000621620005c4565b5b50919050565b6136b680620006386000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c80638bf9d2c2116100c3578063bd704fbc1161007c578063bd704fbc146103d5578063c87b56dd146103f3578063d3f4a02a14610423578063debffbd914610453578063e985e9c514610471578063f2fde38b146104a157610158565b80638bf9d2c2146103015780638da5cb5b1461033157806395d89b411461034f578063a22cb4651461036d578063b88d4fde14610389578063bb032a66146103a557610158565b80636352211e116101155780636352211e1461022f5780636a6278421461025f57806370a082311461028f578063715018a6146102bf5780637accc8f5146102c95780637cf19908146102e557610158565b806301ffc9a71461015d57806306fdde031461018d578063081812fc146101ab578063095ea7b3146101db57806323b872dd146101f757806342842e0e14610213575b600080fd5b6101776004803603810190610172919061210b565b6104bd565b6040516101849190612153565b60405180910390f35b61019561059f565b6040516101a29190612207565b60405180910390f35b6101c560048036038101906101c0919061225f565b610631565b6040516101d291906122cd565b60405180910390f35b6101f560048036038101906101f09190612314565b610677565b005b610211600480360381019061020c9190612354565b6106d4565b005b61022d60048036038101906102289190612354565b610734565b005b6102496004803603810190610244919061225f565b610754565b60405161025691906122cd565b60405180910390f35b610279600480360381019061027491906123a7565b6107da565b60405161028691906123e3565b60405180910390f35b6102a960048036038101906102a491906123a7565b61083e565b6040516102b691906123e3565b60405180910390f35b6102c76108f5565b005b6102e360048036038101906102de919061225f565b610909565b005b6102ff60048036038101906102fa91906123a7565b610955565b005b61031b6004803603810190610316919061225f565b6109c3565b60405161032891906123e3565b60405180910390f35b6103396109eb565b60405161034691906122cd565b60405180910390f35b610357610a15565b6040516103649190612207565b60405180910390f35b6103876004803603810190610382919061242a565b610aa7565b005b6103a3600480360381019061039e919061259f565b610b04565b005b6103bf60048036038101906103ba91906123a7565b610b66565b6040516103cc9190612153565b60405180910390f35b6103dd610c10565b6040516103ea91906126e0565b60405180910390f35b61040d6004803603810190610408919061225f565b610c9e565b60405161041a9190612207565b60405180910390f35b61043d60048036038101906104389190612702565b610d4d565b60405161044a9190612153565b60405180910390f35b61045b610d68565b60405161046891906123e3565b60405180910390f35b61048b60048036038101906104869190612742565b610d72565b6040516104989190612153565b60405180910390f35b6104bb60048036038101906104b691906123a7565b610e06565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061058857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610598575061059782610e89565b5b9050919050565b6060600080546105ae906127b1565b80601f01602080910402602001604051908101604052809291908181526020018280546105da906127b1565b80156106275780601f106105fc57610100808354040283529160200191610627565b820191906000526020600020905b81548152906001019060200180831161060a57829003601f168201915b5050505050905090565b600061063c82610ef3565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6001151561068483610b66565b1515146106c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106bd90612854565b60405180910390fd5b6106d08282610f3e565b5050565b6106e56106df611055565b8261105d565b610724576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071b906128e6565b60405180910390fd5b61072f8383836110f2565b505050565b61074f83838360405180602001604052806000815250610b04565b505050565b600080610760836113eb565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c890612952565b60405180910390fd5b80915050919050565b60006107e4611428565b6011546107f160076114a6565b106107fb57600080fd5b61080560076114b4565b600061081160076114a6565b905061081d83826114ca565b42600f60008381526020019081526020016000208190555080915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a5906129e4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108fd611428565b61090760006116e7565b565b610911611428565b6010818154811061092557610924612a04565b5b9060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905550565b61095d611428565b6010819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600f600083815260200190815260200160002054426109e49190612a62565b9050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610a24906127b1565b80601f0160208091040260200160405190810160405280929190818152602001828054610a50906127b1565b8015610a9d5780601f10610a7257610100808354040283529160200191610a9d565b820191906000526020600020905b815481529060010190602001808311610a8057829003601f168201915b5050505050905090565b60011515610ab483610b66565b151514610af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aed90612854565b60405180910390fd5b610b0082826117ad565b5050565b610b15610b0f611055565b8361105d565b610b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4b906128e6565b60405180910390fd5b610b60848484846117c3565b50505050565b6000805b601080549050811015610c05578273ffffffffffffffffffffffffffffffffffffffff1660108281548110610ba257610ba1612a04565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610bf2576001915050610c0b565b8080610bfd90612a96565b915050610b6a565b50600090505b919050565b60606010805480602002602001604051908101604052809291908181526020018280548015610c9457602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311610c4a575b5050505050905090565b6060610ca98261181f565b610ce8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdf90612b50565b60405180910390fd5b6000600a610cf584611860565b600b6008604051602001610d0c9493929190612dbc565b6040516020818303038152906040529050610d268161192e565b604051602001610d369190612e7d565b604051602081830303815290604052915050919050565b6000600d548383610d5e9190612a62565b1015905092915050565b6000601154905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610e0e611428565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7490612f11565b60405180910390fd5b610e86816116e7565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610efc8161181f565b610f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3290612952565b60405180910390fd5b50565b6000610f4982610754565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb090612fa3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610fd8611055565b73ffffffffffffffffffffffffffffffffffffffff161480611007575061100681611001611055565b610d72565b5b611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d90613035565b60405180910390fd5b6110508383611a91565b505050565b600033905090565b60008061106983610754565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806110ab57506110aa8185610d72565b5b806110e957508373ffffffffffffffffffffffffffffffffffffffff166110d184610631565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661111282610754565b73ffffffffffffffffffffffffffffffffffffffff1614611168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115f906130c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ce90613159565b60405180910390fd5b6111e48383836001611b4a565b8273ffffffffffffffffffffffffffffffffffffffff1661120482610754565b73ffffffffffffffffffffffffffffffffffffffff161461125a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611251906130c7565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113e68383836001611c2a565b505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b611430611055565b73ffffffffffffffffffffffffffffffffffffffff1661144e6109eb565b73ffffffffffffffffffffffffffffffffffffffff16146114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b906131c5565b60405180910390fd5b565b600081600001549050919050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611539576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153090613231565b60405180910390fd5b6115428161181f565b15611582576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115799061329d565b60405180910390fd5b611590600083836001611b4a565b6115998161181f565b156115d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d09061329d565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116e3600083836001611c2a565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6117bf6117b8611055565b8383611c30565b5050565b6117ce8484846110f2565b6117da84848484611d9c565b611819576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118109061332f565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff16611841836113eb565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606000600161186f84611f23565b01905060008167ffffffffffffffff81111561188e5761188d612474565b5b6040519080825280601f01601f1916602001820160405280156118c05781602001600182028036833780820191505090505b509050600082602001820190505b600115611923578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816119175761191661334f565b5b049450600085036118ce575b819350505050919050565b6060600082510361195057604051806020016040528060008152509050611a8c565b6000604051806060016040528060408152602001613641604091399050600060036002855161197f919061337e565b61198991906133d4565b60046119959190613405565b67ffffffffffffffff8111156119ae576119ad612474565b5b6040519080825280601f01601f1916602001820160405280156119e05781602001600182028036833780820191505090505b509050600182016020820185865187015b80821015611a4c576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f81168501518453600184019350506119f1565b5050600386510660018114611a685760028114611a7b57611a83565b603d6001830353603d6002830353611a83565b603d60018303535b50505080925050505b919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b0483610754565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611bb75750611b886109eb565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b611c1857611bd8600f60008481526020019081526020016000205442610d4d565b611c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0e906134d1565b60405180910390fd5b5b611c2484848484612076565b50505050565b50505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c959061353d565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d8f9190612153565b60405180910390a3505050565b6000611dbd8473ffffffffffffffffffffffffffffffffffffffff1661207c565b15611f16578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611de6611055565b8786866040518563ffffffff1660e01b8152600401611e0894939291906135b2565b6020604051808303816000875af1925050508015611e4457506040513d601f19601f82011682018060405250810190611e419190613613565b60015b611ec6573d8060008114611e74576040519150601f19603f3d011682016040523d82523d6000602084013e611e79565b606091505b506000815103611ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb59061332f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611f1b565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611f81577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611f7757611f7661334f565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611fbe576d04ee2d6d415b85acef81000000008381611fb457611fb361334f565b5b0492506020810190505b662386f26fc100008310611fed57662386f26fc100008381611fe357611fe261334f565b5b0492506010810190505b6305f5e1008310612016576305f5e100838161200c5761200b61334f565b5b0492506008810190505b612710831061203b5761271083816120315761203061334f565b5b0492506004810190505b6064831061205e57606483816120545761205361334f565b5b0492506002810190505b600a831061206d576001810190505b80915050919050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6120e8816120b3565b81146120f357600080fd5b50565b600081359050612105816120df565b92915050565b600060208284031215612121576121206120a9565b5b600061212f848285016120f6565b91505092915050565b60008115159050919050565b61214d81612138565b82525050565b60006020820190506121686000830184612144565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121a857808201518184015260208101905061218d565b838111156121b7576000848401525b50505050565b6000601f19601f8301169050919050565b60006121d98261216e565b6121e38185612179565b93506121f381856020860161218a565b6121fc816121bd565b840191505092915050565b6000602082019050818103600083015261222181846121ce565b905092915050565b6000819050919050565b61223c81612229565b811461224757600080fd5b50565b60008135905061225981612233565b92915050565b600060208284031215612275576122746120a9565b5b60006122838482850161224a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122b78261228c565b9050919050565b6122c7816122ac565b82525050565b60006020820190506122e260008301846122be565b92915050565b6122f1816122ac565b81146122fc57600080fd5b50565b60008135905061230e816122e8565b92915050565b6000806040838503121561232b5761232a6120a9565b5b6000612339858286016122ff565b925050602061234a8582860161224a565b9150509250929050565b60008060006060848603121561236d5761236c6120a9565b5b600061237b868287016122ff565b935050602061238c868287016122ff565b925050604061239d8682870161224a565b9150509250925092565b6000602082840312156123bd576123bc6120a9565b5b60006123cb848285016122ff565b91505092915050565b6123dd81612229565b82525050565b60006020820190506123f860008301846123d4565b92915050565b61240781612138565b811461241257600080fd5b50565b600081359050612424816123fe565b92915050565b60008060408385031215612441576124406120a9565b5b600061244f858286016122ff565b925050602061246085828601612415565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6124ac826121bd565b810181811067ffffffffffffffff821117156124cb576124ca612474565b5b80604052505050565b60006124de61209f565b90506124ea82826124a3565b919050565b600067ffffffffffffffff82111561250a57612509612474565b5b612513826121bd565b9050602081019050919050565b82818337600083830152505050565b600061254261253d846124ef565b6124d4565b90508281526020810184848401111561255e5761255d61246f565b5b612569848285612520565b509392505050565b600082601f8301126125865761258561246a565b5b813561259684826020860161252f565b91505092915050565b600080600080608085870312156125b9576125b86120a9565b5b60006125c7878288016122ff565b94505060206125d8878288016122ff565b93505060406125e98782880161224a565b925050606085013567ffffffffffffffff81111561260a576126096120ae565b5b61261687828801612571565b91505092959194509250565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612657816122ac565b82525050565b6000612669838361264e565b60208301905092915050565b6000602082019050919050565b600061268d82612622565b612697818561262d565b93506126a28361263e565b8060005b838110156126d35781516126ba888261265d565b97506126c583612675565b9250506001810190506126a6565b5085935050505092915050565b600060208201905081810360008301526126fa8184612682565b905092915050565b60008060408385031215612719576127186120a9565b5b60006127278582860161224a565b92505060206127388582860161224a565b9150509250929050565b60008060408385031215612759576127586120a9565b5b6000612767858286016122ff565b9250506020612778858286016122ff565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806127c957607f821691505b6020821081036127dc576127db612782565b5b50919050565b7f455243373231417070726f76653a205468697320636f6e74726163742069732060008201527f6e6f7420617574686f72697a6564000000000000000000000000000000000000602082015250565b600061283e602e83612179565b9150612849826127e2565b604082019050919050565b6000602082019050818103600083015261286d81612831565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b60006128d0602d83612179565b91506128db82612874565b604082019050919050565b600060208201905081810360008301526128ff816128c3565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b600061293c601883612179565b915061294782612906565b602082019050919050565b6000602082019050818103600083015261296b8161292f565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006129ce602983612179565b91506129d982612972565b604082019050919050565b600060208201905081810360008301526129fd816129c1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612a6d82612229565b9150612a7883612229565b925082821015612a8b57612a8a612a33565b5b828203905092915050565b6000612aa182612229565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612ad357612ad2612a33565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612b3a602f83612179565b9150612b4582612ade565b604082019050919050565b60006020820190508181036000830152612b6981612b2d565b9050919050565b600081905092915050565b7f7b226e616d65223a202200000000000000000000000000000000000000000000600082015250565b6000612bb1600a83612b70565b9150612bbc82612b7b565b600a82019050919050565b60008190508160005260206000209050919050565b60008154612be9816127b1565b612bf38186612b70565b94506001821660008114612c0e5760018114612c1f57612c52565b60ff19831686528186019350612c52565b612c2885612bc7565b60005b83811015612c4a57815481890152600182019150602081019050612c2b565b838801955050505b50505092915050565b7f2023000000000000000000000000000000000000000000000000000000000000600082015250565b6000612c91600283612b70565b9150612c9c82612c5b565b600282019050919050565b6000612cb28261216e565b612cbc8185612b70565b9350612ccc81856020860161218a565b80840191505092915050565b7f222c20226465736372697074696f6e223a202200000000000000000000000000600082015250565b6000612d0e601383612b70565b9150612d1982612cd8565b601382019050919050565b7f222c2022696d616765223a202200000000000000000000000000000000000000600082015250565b6000612d5a600d83612b70565b9150612d6582612d24565b600d82019050919050565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b6000612da6600283612b70565b9150612db182612d70565b600282019050919050565b6000612dc782612ba4565b9150612dd38287612bdc565b9150612dde82612c84565b9150612dea8286612ca7565b9150612df582612d01565b9150612e018285612bdc565b9150612e0c82612d4d565b9150612e188284612bdc565b9150612e2382612d99565b915081905095945050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b6000612e67601d83612b70565b9150612e7282612e31565b601d82019050919050565b6000612e8882612e5a565b9150612e948284612ca7565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612efb602683612179565b9150612f0682612e9f565b604082019050919050565b60006020820190508181036000830152612f2a81612eee565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f8d602183612179565b9150612f9882612f31565b604082019050919050565b60006020820190508181036000830152612fbc81612f80565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b600061301f603d83612179565b915061302a82612fc3565b604082019050919050565b6000602082019050818103600083015261304e81613012565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006130b1602583612179565b91506130bc82613055565b604082019050919050565b600060208201905081810360008301526130e0816130a4565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613143602483612179565b915061314e826130e7565b604082019050919050565b6000602082019050818103600083015261317281613136565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131af602083612179565b91506131ba82613179565b602082019050919050565b600060208201905081810360008301526131de816131a2565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061321b602083612179565b9150613226826131e5565b602082019050919050565b6000602082019050818103600083015261324a8161320e565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613287601c83612179565b915061329282613251565b602082019050919050565b600060208201905081810360008301526132b68161327a565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613319603283612179565b9150613324826132bd565b604082019050919050565b600060208201905081810360008301526133488161330c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061338982612229565b915061339483612229565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133c9576133c8612a33565b5b828201905092915050565b60006133df82612229565b91506133ea83612229565b9250826133fa576133f961334f565b5b828204905092915050565b600061341082612229565b915061341b83612229565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561345457613453612a33565b5b828202905092915050565b7f4552433732315472616e736665723a2054686973204e4654206973206375727260008201527f656e746c79206c6f636b65640000000000000000000000000000000000000000602082015250565b60006134bb602c83612179565b91506134c68261345f565b604082019050919050565b600060208201905081810360008301526134ea816134ae565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613527601983612179565b9150613532826134f1565b602082019050919050565b600060208201905081810360008301526135568161351a565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006135848261355d565b61358e8185613568565b935061359e81856020860161218a565b6135a7816121bd565b840191505092915050565b60006080820190506135c760008301876122be565b6135d460208301866122be565b6135e160408301856123d4565b81810360608301526135f38184613579565b905095945050505050565b60008151905061360d816120df565b92915050565b600060208284031215613629576136286120a9565b5b6000613637848285016135fe565b9150509291505056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220ececccf15855c654bbbf8c1450ebbe0d8d0cc71845cae927f3a8903621bca89164736f6c634300080d003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000074000000000000000000000000000000000000000000000000000000000000000de00000000000000000000000000000000000000000000000000000000000000294c697665204c696b65204120436174202d467572757361746f204d616e656b6920496d61626172692d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074c4c4143464d4900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002f4c697665204c696b6520412043617420467572757361746f204d616e656b6920696e20496d6162617269204369747900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000544e69d91e4b88ae6b0b4e8bb8de38292e382a4e383a1e383bce382b8e38197e3819fe888b9e38292e4b8ade5bf83e381abe38197e3819f4c697665204c696b65204120436174e381aee4bd9ce59381e381a7e38199e38082e4bd95e5b1a4e381abe38282e9878de381aae3828be6b5b7e381aee9858de889b2e381afe38081e7a98de381bfe9878de381aae3828be69687e58c96e38292e382a4e383a1e383bce382b8e38197e381a6e38184e381bee38199e38082e4bb8ae6b2bbe5b882e381aee6adb4e58fb2e381aee8b18ae3818be38195e38292e694afe38188e381a6e3818de3819fe5a4a7e5b1b1e7a587e7a59ee7a4bee381aee9b3a5e5b185e38081e7be8ee38197e38184e5b3b6e38085e38292e8838ce699afe381abe68f8fe38184e381a6e38184e381bee38199e38082e8aabfe5928ce38292e5a4a7e58887e381abe8b18ae3818be381aae69687e58c96e38292e882b2e38293e381a0e69d91e4b88ae6b0b4e8bb8de381aee3808ce5ae88e3828be6b5b7e8b38ae3808de38284e59586e6898de381abe995b7e38191e3819fe3808ce8b18ae3818be381aae5beaae792b0e3808de38292e382a4e383a1e383bce382b8e38197e38081e58686efbc88e7b881efbc89e38292e68f8fe3818fe38288e38186e381aae6b3a2e38292e38182e38197e38289e38184e381bee38197e3819fe38082e78fbee4bba3e381abe3818ae38184e381a6e38282e38081e4bb8ae6b2bbe5b882e3818be38289e696b0e38197e38184e69687e58c96e381aee589b5e980a0e38284e5a496e983a8e381a8e381aee381a4e381aae3818ce3828ae381abe38288e381a3e381a6e799bae5b195e38197e381a6e38184e3818fe38193e381a8e38292e9a198e381a3e3819fe382a2e383bce38388e4bd9ce59381e381abe381aae3828ae381bee38199e380825c6e5c6e546869732069732061204c697665204c696b6520412043617420617274776f726b2c2063656e7465726564206f6e2061207368697020696e73706972656420627920746865204d7572616b616d69206e6176792e20546865206c61796572656420636f6c6f7273206f6620746865207365612073796d626f6c697a652074686520616363756d756c6174696f6e206f662063756c747572652e20497420646570696374732074686520546f7269692067617465206f6620746865204f79616d617a756d6920536872696e652c2077686963682068617320737570706f7274656420746865207269636820686973746f7279206f6620496d616261726920436974792c20616761696e737420746865206261636b64726f70206f662062656175746966756c2069736c616e64732e20576527766520696e636f72706f7261746564207761766573206c696b6520636972636c657320286f7220636f6e6e656374696f6e732920746f20726570726573656e7420746865204d7572616b616d69206e6176792c2061202770726f746563746976652070697261746527207468617420636865726973686564206861726d6f6e7920616e64206e75727475726564206120726963682063756c747572652c20616e6420612027726963682063697263756c6174696f6e2720616465707420617420636f6d6d657263652e20546869732061727420706965636520656d626f64696573206f757220686f70657320666f72206f6e676f696e672063756c747572616c206372656174696f6e20616e6420646576656c6f706d656e7420696e20496d616261726920436974792c206576656e20696e206d6f6465726e2074696d65732c207468726f75676820636f6e6e656374696f6e73207769746820746865206f75747369646520776f726c642e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d643463756231426f74765a41555335437461676f54646357634c72464c525750364e77646e336771644646480000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c80638bf9d2c2116100c3578063bd704fbc1161007c578063bd704fbc146103d5578063c87b56dd146103f3578063d3f4a02a14610423578063debffbd914610453578063e985e9c514610471578063f2fde38b146104a157610158565b80638bf9d2c2146103015780638da5cb5b1461033157806395d89b411461034f578063a22cb4651461036d578063b88d4fde14610389578063bb032a66146103a557610158565b80636352211e116101155780636352211e1461022f5780636a6278421461025f57806370a082311461028f578063715018a6146102bf5780637accc8f5146102c95780637cf19908146102e557610158565b806301ffc9a71461015d57806306fdde031461018d578063081812fc146101ab578063095ea7b3146101db57806323b872dd146101f757806342842e0e14610213575b600080fd5b6101776004803603810190610172919061210b565b6104bd565b6040516101849190612153565b60405180910390f35b61019561059f565b6040516101a29190612207565b60405180910390f35b6101c560048036038101906101c0919061225f565b610631565b6040516101d291906122cd565b60405180910390f35b6101f560048036038101906101f09190612314565b610677565b005b610211600480360381019061020c9190612354565b6106d4565b005b61022d60048036038101906102289190612354565b610734565b005b6102496004803603810190610244919061225f565b610754565b60405161025691906122cd565b60405180910390f35b610279600480360381019061027491906123a7565b6107da565b60405161028691906123e3565b60405180910390f35b6102a960048036038101906102a491906123a7565b61083e565b6040516102b691906123e3565b60405180910390f35b6102c76108f5565b005b6102e360048036038101906102de919061225f565b610909565b005b6102ff60048036038101906102fa91906123a7565b610955565b005b61031b6004803603810190610316919061225f565b6109c3565b60405161032891906123e3565b60405180910390f35b6103396109eb565b60405161034691906122cd565b60405180910390f35b610357610a15565b6040516103649190612207565b60405180910390f35b6103876004803603810190610382919061242a565b610aa7565b005b6103a3600480360381019061039e919061259f565b610b04565b005b6103bf60048036038101906103ba91906123a7565b610b66565b6040516103cc9190612153565b60405180910390f35b6103dd610c10565b6040516103ea91906126e0565b60405180910390f35b61040d6004803603810190610408919061225f565b610c9e565b60405161041a9190612207565b60405180910390f35b61043d60048036038101906104389190612702565b610d4d565b60405161044a9190612153565b60405180910390f35b61045b610d68565b60405161046891906123e3565b60405180910390f35b61048b60048036038101906104869190612742565b610d72565b6040516104989190612153565b60405180910390f35b6104bb60048036038101906104b691906123a7565b610e06565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061058857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610598575061059782610e89565b5b9050919050565b6060600080546105ae906127b1565b80601f01602080910402602001604051908101604052809291908181526020018280546105da906127b1565b80156106275780601f106105fc57610100808354040283529160200191610627565b820191906000526020600020905b81548152906001019060200180831161060a57829003601f168201915b5050505050905090565b600061063c82610ef3565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6001151561068483610b66565b1515146106c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106bd90612854565b60405180910390fd5b6106d08282610f3e565b5050565b6106e56106df611055565b8261105d565b610724576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071b906128e6565b60405180910390fd5b61072f8383836110f2565b505050565b61074f83838360405180602001604052806000815250610b04565b505050565b600080610760836113eb565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c890612952565b60405180910390fd5b80915050919050565b60006107e4611428565b6011546107f160076114a6565b106107fb57600080fd5b61080560076114b4565b600061081160076114a6565b905061081d83826114ca565b42600f60008381526020019081526020016000208190555080915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a5906129e4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108fd611428565b61090760006116e7565b565b610911611428565b6010818154811061092557610924612a04565b5b9060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905550565b61095d611428565b6010819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600f600083815260200190815260200160002054426109e49190612a62565b9050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610a24906127b1565b80601f0160208091040260200160405190810160405280929190818152602001828054610a50906127b1565b8015610a9d5780601f10610a7257610100808354040283529160200191610a9d565b820191906000526020600020905b815481529060010190602001808311610a8057829003601f168201915b5050505050905090565b60011515610ab483610b66565b151514610af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aed90612854565b60405180910390fd5b610b0082826117ad565b5050565b610b15610b0f611055565b8361105d565b610b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4b906128e6565b60405180910390fd5b610b60848484846117c3565b50505050565b6000805b601080549050811015610c05578273ffffffffffffffffffffffffffffffffffffffff1660108281548110610ba257610ba1612a04565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610bf2576001915050610c0b565b8080610bfd90612a96565b915050610b6a565b50600090505b919050565b60606010805480602002602001604051908101604052809291908181526020018280548015610c9457602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311610c4a575b5050505050905090565b6060610ca98261181f565b610ce8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdf90612b50565b60405180910390fd5b6000600a610cf584611860565b600b6008604051602001610d0c9493929190612dbc565b6040516020818303038152906040529050610d268161192e565b604051602001610d369190612e7d565b604051602081830303815290604052915050919050565b6000600d548383610d5e9190612a62565b1015905092915050565b6000601154905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610e0e611428565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7490612f11565b60405180910390fd5b610e86816116e7565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610efc8161181f565b610f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3290612952565b60405180910390fd5b50565b6000610f4982610754565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb090612fa3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610fd8611055565b73ffffffffffffffffffffffffffffffffffffffff161480611007575061100681611001611055565b610d72565b5b611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d90613035565b60405180910390fd5b6110508383611a91565b505050565b600033905090565b60008061106983610754565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806110ab57506110aa8185610d72565b5b806110e957508373ffffffffffffffffffffffffffffffffffffffff166110d184610631565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661111282610754565b73ffffffffffffffffffffffffffffffffffffffff1614611168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115f906130c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ce90613159565b60405180910390fd5b6111e48383836001611b4a565b8273ffffffffffffffffffffffffffffffffffffffff1661120482610754565b73ffffffffffffffffffffffffffffffffffffffff161461125a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611251906130c7565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113e68383836001611c2a565b505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b611430611055565b73ffffffffffffffffffffffffffffffffffffffff1661144e6109eb565b73ffffffffffffffffffffffffffffffffffffffff16146114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b906131c5565b60405180910390fd5b565b600081600001549050919050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611539576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153090613231565b60405180910390fd5b6115428161181f565b15611582576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115799061329d565b60405180910390fd5b611590600083836001611b4a565b6115998161181f565b156115d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d09061329d565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116e3600083836001611c2a565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6117bf6117b8611055565b8383611c30565b5050565b6117ce8484846110f2565b6117da84848484611d9c565b611819576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118109061332f565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff16611841836113eb565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606000600161186f84611f23565b01905060008167ffffffffffffffff81111561188e5761188d612474565b5b6040519080825280601f01601f1916602001820160405280156118c05781602001600182028036833780820191505090505b509050600082602001820190505b600115611923578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816119175761191661334f565b5b049450600085036118ce575b819350505050919050565b6060600082510361195057604051806020016040528060008152509050611a8c565b6000604051806060016040528060408152602001613641604091399050600060036002855161197f919061337e565b61198991906133d4565b60046119959190613405565b67ffffffffffffffff8111156119ae576119ad612474565b5b6040519080825280601f01601f1916602001820160405280156119e05781602001600182028036833780820191505090505b509050600182016020820185865187015b80821015611a4c576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f81168501518453600184019350506119f1565b5050600386510660018114611a685760028114611a7b57611a83565b603d6001830353603d6002830353611a83565b603d60018303535b50505080925050505b919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b0483610754565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611bb75750611b886109eb565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b611c1857611bd8600f60008481526020019081526020016000205442610d4d565b611c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0e906134d1565b60405180910390fd5b5b611c2484848484612076565b50505050565b50505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c959061353d565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d8f9190612153565b60405180910390a3505050565b6000611dbd8473ffffffffffffffffffffffffffffffffffffffff1661207c565b15611f16578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611de6611055565b8786866040518563ffffffff1660e01b8152600401611e0894939291906135b2565b6020604051808303816000875af1925050508015611e4457506040513d601f19601f82011682018060405250810190611e419190613613565b60015b611ec6573d8060008114611e74576040519150601f19603f3d011682016040523d82523d6000602084013e611e79565b606091505b506000815103611ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb59061332f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611f1b565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611f81577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611f7757611f7661334f565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611fbe576d04ee2d6d415b85acef81000000008381611fb457611fb361334f565b5b0492506020810190505b662386f26fc100008310611fed57662386f26fc100008381611fe357611fe261334f565b5b0492506010810190505b6305f5e1008310612016576305f5e100838161200c5761200b61334f565b5b0492506008810190505b612710831061203b5761271083816120315761203061334f565b5b0492506004810190505b6064831061205e57606483816120545761205361334f565b5b0492506002810190505b600a831061206d576001810190505b80915050919050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6120e8816120b3565b81146120f357600080fd5b50565b600081359050612105816120df565b92915050565b600060208284031215612121576121206120a9565b5b600061212f848285016120f6565b91505092915050565b60008115159050919050565b61214d81612138565b82525050565b60006020820190506121686000830184612144565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121a857808201518184015260208101905061218d565b838111156121b7576000848401525b50505050565b6000601f19601f8301169050919050565b60006121d98261216e565b6121e38185612179565b93506121f381856020860161218a565b6121fc816121bd565b840191505092915050565b6000602082019050818103600083015261222181846121ce565b905092915050565b6000819050919050565b61223c81612229565b811461224757600080fd5b50565b60008135905061225981612233565b92915050565b600060208284031215612275576122746120a9565b5b60006122838482850161224a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122b78261228c565b9050919050565b6122c7816122ac565b82525050565b60006020820190506122e260008301846122be565b92915050565b6122f1816122ac565b81146122fc57600080fd5b50565b60008135905061230e816122e8565b92915050565b6000806040838503121561232b5761232a6120a9565b5b6000612339858286016122ff565b925050602061234a8582860161224a565b9150509250929050565b60008060006060848603121561236d5761236c6120a9565b5b600061237b868287016122ff565b935050602061238c868287016122ff565b925050604061239d8682870161224a565b9150509250925092565b6000602082840312156123bd576123bc6120a9565b5b60006123cb848285016122ff565b91505092915050565b6123dd81612229565b82525050565b60006020820190506123f860008301846123d4565b92915050565b61240781612138565b811461241257600080fd5b50565b600081359050612424816123fe565b92915050565b60008060408385031215612441576124406120a9565b5b600061244f858286016122ff565b925050602061246085828601612415565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6124ac826121bd565b810181811067ffffffffffffffff821117156124cb576124ca612474565b5b80604052505050565b60006124de61209f565b90506124ea82826124a3565b919050565b600067ffffffffffffffff82111561250a57612509612474565b5b612513826121bd565b9050602081019050919050565b82818337600083830152505050565b600061254261253d846124ef565b6124d4565b90508281526020810184848401111561255e5761255d61246f565b5b612569848285612520565b509392505050565b600082601f8301126125865761258561246a565b5b813561259684826020860161252f565b91505092915050565b600080600080608085870312156125b9576125b86120a9565b5b60006125c7878288016122ff565b94505060206125d8878288016122ff565b93505060406125e98782880161224a565b925050606085013567ffffffffffffffff81111561260a576126096120ae565b5b61261687828801612571565b91505092959194509250565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612657816122ac565b82525050565b6000612669838361264e565b60208301905092915050565b6000602082019050919050565b600061268d82612622565b612697818561262d565b93506126a28361263e565b8060005b838110156126d35781516126ba888261265d565b97506126c583612675565b9250506001810190506126a6565b5085935050505092915050565b600060208201905081810360008301526126fa8184612682565b905092915050565b60008060408385031215612719576127186120a9565b5b60006127278582860161224a565b92505060206127388582860161224a565b9150509250929050565b60008060408385031215612759576127586120a9565b5b6000612767858286016122ff565b9250506020612778858286016122ff565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806127c957607f821691505b6020821081036127dc576127db612782565b5b50919050565b7f455243373231417070726f76653a205468697320636f6e74726163742069732060008201527f6e6f7420617574686f72697a6564000000000000000000000000000000000000602082015250565b600061283e602e83612179565b9150612849826127e2565b604082019050919050565b6000602082019050818103600083015261286d81612831565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b60006128d0602d83612179565b91506128db82612874565b604082019050919050565b600060208201905081810360008301526128ff816128c3565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b600061293c601883612179565b915061294782612906565b602082019050919050565b6000602082019050818103600083015261296b8161292f565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006129ce602983612179565b91506129d982612972565b604082019050919050565b600060208201905081810360008301526129fd816129c1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612a6d82612229565b9150612a7883612229565b925082821015612a8b57612a8a612a33565b5b828203905092915050565b6000612aa182612229565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612ad357612ad2612a33565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612b3a602f83612179565b9150612b4582612ade565b604082019050919050565b60006020820190508181036000830152612b6981612b2d565b9050919050565b600081905092915050565b7f7b226e616d65223a202200000000000000000000000000000000000000000000600082015250565b6000612bb1600a83612b70565b9150612bbc82612b7b565b600a82019050919050565b60008190508160005260206000209050919050565b60008154612be9816127b1565b612bf38186612b70565b94506001821660008114612c0e5760018114612c1f57612c52565b60ff19831686528186019350612c52565b612c2885612bc7565b60005b83811015612c4a57815481890152600182019150602081019050612c2b565b838801955050505b50505092915050565b7f2023000000000000000000000000000000000000000000000000000000000000600082015250565b6000612c91600283612b70565b9150612c9c82612c5b565b600282019050919050565b6000612cb28261216e565b612cbc8185612b70565b9350612ccc81856020860161218a565b80840191505092915050565b7f222c20226465736372697074696f6e223a202200000000000000000000000000600082015250565b6000612d0e601383612b70565b9150612d1982612cd8565b601382019050919050565b7f222c2022696d616765223a202200000000000000000000000000000000000000600082015250565b6000612d5a600d83612b70565b9150612d6582612d24565b600d82019050919050565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b6000612da6600283612b70565b9150612db182612d70565b600282019050919050565b6000612dc782612ba4565b9150612dd38287612bdc565b9150612dde82612c84565b9150612dea8286612ca7565b9150612df582612d01565b9150612e018285612bdc565b9150612e0c82612d4d565b9150612e188284612bdc565b9150612e2382612d99565b915081905095945050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b6000612e67601d83612b70565b9150612e7282612e31565b601d82019050919050565b6000612e8882612e5a565b9150612e948284612ca7565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612efb602683612179565b9150612f0682612e9f565b604082019050919050565b60006020820190508181036000830152612f2a81612eee565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f8d602183612179565b9150612f9882612f31565b604082019050919050565b60006020820190508181036000830152612fbc81612f80565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b600061301f603d83612179565b915061302a82612fc3565b604082019050919050565b6000602082019050818103600083015261304e81613012565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006130b1602583612179565b91506130bc82613055565b604082019050919050565b600060208201905081810360008301526130e0816130a4565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613143602483612179565b915061314e826130e7565b604082019050919050565b6000602082019050818103600083015261317281613136565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131af602083612179565b91506131ba82613179565b602082019050919050565b600060208201905081810360008301526131de816131a2565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061321b602083612179565b9150613226826131e5565b602082019050919050565b6000602082019050818103600083015261324a8161320e565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613287601c83612179565b915061329282613251565b602082019050919050565b600060208201905081810360008301526132b68161327a565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613319603283612179565b9150613324826132bd565b604082019050919050565b600060208201905081810360008301526133488161330c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061338982612229565b915061339483612229565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133c9576133c8612a33565b5b828201905092915050565b60006133df82612229565b91506133ea83612229565b9250826133fa576133f961334f565b5b828204905092915050565b600061341082612229565b915061341b83612229565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561345457613453612a33565b5b828202905092915050565b7f4552433732315472616e736665723a2054686973204e4654206973206375727260008201527f656e746c79206c6f636b65640000000000000000000000000000000000000000602082015250565b60006134bb602c83612179565b91506134c68261345f565b604082019050919050565b600060208201905081810360008301526134ea816134ae565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613527601983612179565b9150613532826134f1565b602082019050919050565b600060208201905081810360008301526135568161351a565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006135848261355d565b61358e8185613568565b935061359e81856020860161218a565b6135a7816121bd565b840191505092915050565b60006080820190506135c760008301876122be565b6135d460208301866122be565b6135e160408301856123d4565b81810360608301526135f38184613579565b905095945050505050565b60008151905061360d816120df565b92915050565b600060208284031215613629576136286120a9565b5b6000613637848285016135fe565b9150509291505056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220ececccf15855c654bbbf8c1450ebbe0d8d0cc71845cae927f3a8903621bca89164736f6c634300080d0033

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

00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000074000000000000000000000000000000000000000000000000000000000000000de00000000000000000000000000000000000000000000000000000000000000294c697665204c696b65204120436174202d467572757361746f204d616e656b6920496d61626172692d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074c4c4143464d4900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002f4c697665204c696b6520412043617420467572757361746f204d616e656b6920696e20496d6162617269204369747900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000544e69d91e4b88ae6b0b4e8bb8de38292e382a4e383a1e383bce382b8e38197e3819fe888b9e38292e4b8ade5bf83e381abe38197e3819f4c697665204c696b65204120436174e381aee4bd9ce59381e381a7e38199e38082e4bd95e5b1a4e381abe38282e9878de381aae3828be6b5b7e381aee9858de889b2e381afe38081e7a98de381bfe9878de381aae3828be69687e58c96e38292e382a4e383a1e383bce382b8e38197e381a6e38184e381bee38199e38082e4bb8ae6b2bbe5b882e381aee6adb4e58fb2e381aee8b18ae3818be38195e38292e694afe38188e381a6e3818de3819fe5a4a7e5b1b1e7a587e7a59ee7a4bee381aee9b3a5e5b185e38081e7be8ee38197e38184e5b3b6e38085e38292e8838ce699afe381abe68f8fe38184e381a6e38184e381bee38199e38082e8aabfe5928ce38292e5a4a7e58887e381abe8b18ae3818be381aae69687e58c96e38292e882b2e38293e381a0e69d91e4b88ae6b0b4e8bb8de381aee3808ce5ae88e3828be6b5b7e8b38ae3808de38284e59586e6898de381abe995b7e38191e3819fe3808ce8b18ae3818be381aae5beaae792b0e3808de38292e382a4e383a1e383bce382b8e38197e38081e58686efbc88e7b881efbc89e38292e68f8fe3818fe38288e38186e381aae6b3a2e38292e38182e38197e38289e38184e381bee38197e3819fe38082e78fbee4bba3e381abe3818ae38184e381a6e38282e38081e4bb8ae6b2bbe5b882e3818be38289e696b0e38197e38184e69687e58c96e381aee589b5e980a0e38284e5a496e983a8e381a8e381aee381a4e381aae3818ce3828ae381abe38288e381a3e381a6e799bae5b195e38197e381a6e38184e3818fe38193e381a8e38292e9a198e381a3e3819fe382a2e383bce38388e4bd9ce59381e381abe381aae3828ae381bee38199e380825c6e5c6e546869732069732061204c697665204c696b6520412043617420617274776f726b2c2063656e7465726564206f6e2061207368697020696e73706972656420627920746865204d7572616b616d69206e6176792e20546865206c61796572656420636f6c6f7273206f6620746865207365612073796d626f6c697a652074686520616363756d756c6174696f6e206f662063756c747572652e20497420646570696374732074686520546f7269692067617465206f6620746865204f79616d617a756d6920536872696e652c2077686963682068617320737570706f7274656420746865207269636820686973746f7279206f6620496d616261726920436974792c20616761696e737420746865206261636b64726f70206f662062656175746966756c2069736c616e64732e20576527766520696e636f72706f7261746564207761766573206c696b6520636972636c657320286f7220636f6e6e656374696f6e732920746f20726570726573656e7420746865204d7572616b616d69206e6176792c2061202770726f746563746976652070697261746527207468617420636865726973686564206861726d6f6e7920616e64206e75727475726564206120726963682063756c747572652c20616e6420612027726963682063697263756c6174696f6e2720616465707420617420636f6d6d657263652e20546869732061727420706965636520656d626f64696573206f757220686f70657320666f72206f6e676f696e672063756c747572616c206372656174696f6e20616e6420646576656c6f706d656e7420696e20496d616261726920436974792c206576656e20696e206d6f6465726e2074696d65732c207468726f75676820636f6e6e656374696f6e73207769746820746865206f75747369646520776f726c642e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d643463756231426f74765a41555335437461676f54646357634c72464c525750364e77646e336771644646480000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Live Like A Cat -Furusato Maneki Imabari-
Arg [1] : symbol_ (string): LLACFMI
Arg [2] : title_ (string): Live Like A Cat Furusato Maneki in Imabari City
Arg [3] : description_ (string): 村上水軍をイメージした船を中心にしたLive Like A Catの作品です。何層にも重なる海の配色は、積み重なる文化をイメージしています。今治市の歴史の豊かさを支えてきた大山祇神社の鳥居、美しい島々を背景に描いています。調和を大切に豊かな文化を育んだ村上水軍の「守る海賊」や商才に長けた「豊かな循環」をイメージし、円(縁)を描くような波をあしらいました。現代においても、今治市から新しい文化の創造や外部とのつながりによって発展していくことを願ったアート作品になります。\n\nThis is a Live Like A Cat artwork, centered on a ship inspired by the Murakami navy. The layered colors of the sea symbolize the accumulation of culture. It depicts the Torii gate of the Oyamazumi Shrine, which has supported the rich history of Imabari City, against the backdrop of beautiful islands. We've incorporated waves like circles (or connections) to represent the Murakami navy, a 'protective pirate' that cherished harmony and nurtured a rich culture, and a 'rich circulation' adept at commerce. This art piece embodies our hopes for ongoing cultural creation and development in Imabari City, even in modern times, through connections with the outside world.
Arg [4] : ipfs_ (string): ipfs://Qmd4cub1BotvZAUS5CtagoTdcWcLrFLRWP6Nwdn3gqdFFH
Arg [5] : maxsupply_ (uint256): 222

-----Encoded View---------------
61 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000740
Arg [5] : 00000000000000000000000000000000000000000000000000000000000000de
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000029
Arg [7] : 4c697665204c696b65204120436174202d467572757361746f204d616e656b69
Arg [8] : 20496d61626172692d0000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [10] : 4c4c4143464d4900000000000000000000000000000000000000000000000000
Arg [11] : 000000000000000000000000000000000000000000000000000000000000002f
Arg [12] : 4c697665204c696b6520412043617420467572757361746f204d616e656b6920
Arg [13] : 696e20496d616261726920436974790000000000000000000000000000000000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000544
Arg [15] : e69d91e4b88ae6b0b4e8bb8de38292e382a4e383a1e383bce382b8e38197e381
Arg [16] : 9fe888b9e38292e4b8ade5bf83e381abe38197e3819f4c697665204c696b6520
Arg [17] : 4120436174e381aee4bd9ce59381e381a7e38199e38082e4bd95e5b1a4e381ab
Arg [18] : e38282e9878de381aae3828be6b5b7e381aee9858de889b2e381afe38081e7a9
Arg [19] : 8de381bfe9878de381aae3828be69687e58c96e38292e382a4e383a1e383bce3
Arg [20] : 82b8e38197e381a6e38184e381bee38199e38082e4bb8ae6b2bbe5b882e381ae
Arg [21] : e6adb4e58fb2e381aee8b18ae3818be38195e38292e694afe38188e381a6e381
Arg [22] : 8de3819fe5a4a7e5b1b1e7a587e7a59ee7a4bee381aee9b3a5e5b185e38081e7
Arg [23] : be8ee38197e38184e5b3b6e38085e38292e8838ce699afe381abe68f8fe38184
Arg [24] : e381a6e38184e381bee38199e38082e8aabfe5928ce38292e5a4a7e58887e381
Arg [25] : abe8b18ae3818be381aae69687e58c96e38292e882b2e38293e381a0e69d91e4
Arg [26] : b88ae6b0b4e8bb8de381aee3808ce5ae88e3828be6b5b7e8b38ae3808de38284
Arg [27] : e59586e6898de381abe995b7e38191e3819fe3808ce8b18ae3818be381aae5be
Arg [28] : aae792b0e3808de38292e382a4e383a1e383bce382b8e38197e38081e58686ef
Arg [29] : bc88e7b881efbc89e38292e68f8fe3818fe38288e38186e381aae6b3a2e38292
Arg [30] : e38182e38197e38289e38184e381bee38197e3819fe38082e78fbee4bba3e381
Arg [31] : abe3818ae38184e381a6e38282e38081e4bb8ae6b2bbe5b882e3818be38289e6
Arg [32] : 96b0e38197e38184e69687e58c96e381aee589b5e980a0e38284e5a496e983a8
Arg [33] : e381a8e381aee381a4e381aae3818ce3828ae381abe38288e381a3e381a6e799
Arg [34] : bae5b195e38197e381a6e38184e3818fe38193e381a8e38292e9a198e381a3e3
Arg [35] : 819fe382a2e383bce38388e4bd9ce59381e381abe381aae3828ae381bee38199
Arg [36] : e380825c6e5c6e546869732069732061204c697665204c696b65204120436174
Arg [37] : 20617274776f726b2c2063656e7465726564206f6e2061207368697020696e73
Arg [38] : 706972656420627920746865204d7572616b616d69206e6176792e2054686520
Arg [39] : 6c61796572656420636f6c6f7273206f6620746865207365612073796d626f6c
Arg [40] : 697a652074686520616363756d756c6174696f6e206f662063756c747572652e
Arg [41] : 20497420646570696374732074686520546f7269692067617465206f66207468
Arg [42] : 65204f79616d617a756d6920536872696e652c20776869636820686173207375
Arg [43] : 70706f7274656420746865207269636820686973746f7279206f6620496d6162
Arg [44] : 61726920436974792c20616761696e737420746865206261636b64726f70206f
Arg [45] : 662062656175746966756c2069736c616e64732e20576527766520696e636f72
Arg [46] : 706f7261746564207761766573206c696b6520636972636c657320286f722063
Arg [47] : 6f6e6e656374696f6e732920746f20726570726573656e7420746865204d7572
Arg [48] : 616b616d69206e6176792c2061202770726f7465637469766520706972617465
Arg [49] : 27207468617420636865726973686564206861726d6f6e7920616e64206e7572
Arg [50] : 7475726564206120726963682063756c747572652c20616e6420612027726963
Arg [51] : 682063697263756c6174696f6e2720616465707420617420636f6d6d65726365
Arg [52] : 2e20546869732061727420706965636520656d626f64696573206f757220686f
Arg [53] : 70657320666f72206f6e676f696e672063756c747572616c206372656174696f
Arg [54] : 6e20616e6420646576656c6f706d656e7420696e20496d616261726920436974
Arg [55] : 792c206576656e20696e206d6f6465726e2074696d65732c207468726f756768
Arg [56] : 20636f6e6e656374696f6e73207769746820746865206f75747369646520776f
Arg [57] : 726c642e00000000000000000000000000000000000000000000000000000000
Arg [58] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [59] : 697066733a2f2f516d643463756231426f74765a41555335437461676f546463
Arg [60] : 57634c72464c525750364e77646e336771644646480000000000000000000000


Deployed Bytecode Sourcemap

324:3267:13:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1570:300:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2471:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3935:167;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2644:197:13;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4612:326:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5004:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2190:219;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1577:307:13;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1929:204:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1831:101:0;;;:::i;:::-;;3370:87:13;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3280:85;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3462:126;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1201:85:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2633:102:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2420:219:13;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5249:314:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2846:234:13;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3085:96;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1102:470;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1889:146;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3186:89;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4388:162:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2081:198:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1570:300:1;1672:4;1722:25;1707:40;;;:11;:40;;;;:104;;;;1778:33;1763:48;;;:11;:48;;;;1707:104;:156;;;;1827:36;1851:11;1827:23;:36::i;:::-;1707:156;1688:175;;1570:300;;;:::o;2471:98::-;2525:13;2557:5;2550:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2471:98;:::o;3935:167::-;4011:7;4030:23;4045:7;4030:14;:23::i;:::-;4071:15;:24;4087:7;4071:24;;;;;;;;;;;;;;;;;;;;;4064:31;;3935:167;;;:::o;2644:197:13:-;2743:4;2731:16;;:8;2736:2;2731:4;:8::i;:::-;:16;;;2723:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;2808:26;2822:2;2826:7;2808:13;:26::i;:::-;2644:197;;:::o;4612:326:1:-;4801:41;4820:12;:10;:12::i;:::-;4834:7;4801:18;:41::i;:::-;4793:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;4903:28;4913:4;4919:2;4923:7;4903:9;:28::i;:::-;4612:326;;;:::o;5004:179::-;5137:39;5154:4;5160:2;5164:7;5137:39;;;;;;;;;;;;:16;:39::i;:::-;5004:179;;;:::o;2190:219::-;2262:7;2281:13;2297:17;2306:7;2297:8;:17::i;:::-;2281:33;;2349:1;2332:19;;:5;:19;;;2324:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;2397:5;2390:12;;;2190:219;;;:::o;1577:307:13:-;1631:7;1094:13:0;:11;:13::i;:::-;1681:9:13::1;;1659:19;:9;:17;:19::i;:::-;:31;1651:40;;;::::0;::::1;;1701:21;:9;:19;:21::i;:::-;1732:17;1752:19;:9;:17;:19::i;:::-;1732:39;;1781:22;1787:4;1793:9;1781:5;:22::i;:::-;1836:15;1813:9;:20;1823:9;1813:20;;;;;;;;;;;:38;;;;1868:9;1861:16;;;1577:307:::0;;;:::o;1929:204:1:-;2001:7;2045:1;2028:19;;:5;:19;;;2020:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2110:9;:16;2120:5;2110:16;;;;;;;;;;;;;;;;2103:23;;1929:204;;;:::o;1831:101:0:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;3370:87:13:-;1094:13:0;:11;:13::i;:::-;3434:12:13::1;3447:2;3434:16;;;;;;;;:::i;:::-;;;;;;;;;;3427:23;;;;;;;;;;;3370:87:::0;:::o;3280:85::-;1094:13:0;:11;:13::i;:::-;3337:12:13::1;3355:2;3337:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3280:85:::0;:::o;3462:126::-;3519:7;3563:9;:18;3573:7;3563:18;;;;;;;;;;;;3545:15;:36;;;;:::i;:::-;3538:43;;3462:126;;;:::o;1201:85:0:-;1247:7;1273:6;;;;;;;;;;;1266:13;;1201:85;:::o;2633:102:1:-;2689:13;2721:7;2714:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2633:102;:::o;2420:219:13:-;2529:4;2516:17;;:9;2521:3;2516:4;:9::i;:::-;:17;;;2508:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;2594:38;2618:3;2623:8;2594:23;:38::i;:::-;2420:219;;:::o;5249:314:1:-;5417:41;5436:12;:10;:12::i;:::-;5450:7;5417:18;:41::i;:::-;5409:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;5518:38;5532:4;5538:2;5542:7;5551:4;5518:13;:38::i;:::-;5249:314;;;;:::o;2846:234:13:-;2893:4;2914:8;2909:143;2927:12;:19;;;;2923:3;:23;2909:143;;;2994:2;2973:23;;:12;2986:3;2973:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:23;;;2969:73;;3023:4;3016:11;;;;;2969:73;2948:5;;;;;:::i;:::-;;;;2909:143;;;;3068:5;3061:12;;2846:234;;;;:::o;3085:96::-;3127:16;3162:12;3155:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3085:96;:::o;1102:470::-;1167:13;1200:16;1208:7;1200;:16::i;:::-;1192:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;1278:17;1342:5;1367:25;1384:7;1367:16;:25::i;:::-;1429:11;1459:4;1298:172;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1278:192;;1544:19;1558:4;1544:13;:19::i;:::-;1494:70;;;;;;;;:::i;:::-;;;;;;;;;;;;;1480:85;;;1102:470;;;:::o;1889:146::-;1968:4;2022:6;;1999:18;1992:4;:25;;;;:::i;:::-;1991:37;;1984:44;;1889:146;;;;:::o;3186:89::-;3233:7;3259:9;;3252:16;;3186:89;:::o;4388:162:1:-;4485:4;4508:18;:25;4527:5;4508:25;;;;;;;;;;;;;;;:35;4534:8;4508:35;;;;;;;;;;;;;;;;;;;;;;;;;4501:42;;4388:162;;;;:::o;2081:198:0:-;1094:13;:11;:13::i;:::-;2189:1:::1;2169:22;;:8;:22;;::::0;2161:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2244:28;2263:8;2244:18;:28::i;:::-;2081:198:::0;:::o;829:155:10:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;13466:133:1:-;13547:16;13555:7;13547;:16::i;:::-;13539:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;13466:133;:::o;3468:406::-;3548:13;3564:23;3579:7;3564:14;:23::i;:::-;3548:39;;3611:5;3605:11;;:2;:11;;;3597:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3702:5;3686:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3711:37;3728:5;3735:12;:10;:12::i;:::-;3711:16;:37::i;:::-;3686:62;3665:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;3846:21;3855:2;3859:7;3846:8;:21::i;:::-;3538:336;3468:406;;:::o;640:96:7:-;693:7;719:10;712:17;;640:96;:::o;7540:261:1:-;7633:4;7649:13;7665:23;7680:7;7665:14;:23::i;:::-;7649:39;;7717:5;7706:16;;:7;:16;;;:52;;;;7726:32;7743:5;7750:7;7726:16;:32::i;:::-;7706:52;:87;;;;7786:7;7762:31;;:20;7774:7;7762:11;:20::i;:::-;:31;;;7706:87;7698:96;;;7540:261;;;;:::o;11423:1233::-;11577:4;11550:31;;:23;11565:7;11550:14;:23::i;:::-;:31;;;11542:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;11655:1;11641:16;;:2;:16;;;11633:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;11709:42;11730:4;11736:2;11740:7;11749:1;11709:20;:42::i;:::-;11878:4;11851:31;;:23;11866:7;11851:14;:23::i;:::-;:31;;;11843:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;11993:15;:24;12009:7;11993:24;;;;;;;;;;;;11986:31;;;;;;;;;;;12480:1;12461:9;:15;12471:4;12461:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;12512:1;12495:9;:13;12505:2;12495:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;12552:2;12533:7;:16;12541:7;12533:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;12589:7;12585:2;12570:27;;12579:4;12570:27;;;;;;;;;;;;12608:41;12628:4;12634:2;12638:7;12647:1;12608:19;:41::i;:::-;11423:1233;;;:::o;6838:115::-;6904:7;6930;:16;6938:7;6930:16;;;;;;;;;;;;;;;;;;;;;6923:23;;6838:115;;;:::o;1359:130:0:-;1433:12;:10;:12::i;:::-;1422:23;;:7;:5;:7::i;:::-;:23;;;1414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:130::o;827:112:8:-;892:7;918;:14;;;911:21;;827:112;;;:::o;945:123::-;1050:1;1032:7;:14;;;:19;;;;;;;;;;;945:123;:::o;9091:920:1:-;9184:1;9170:16;;:2;:16;;;9162:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9242:16;9250:7;9242;:16::i;:::-;9241:17;9233:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9302:48;9331:1;9335:2;9339:7;9348:1;9302:20;:48::i;:::-;9446:16;9454:7;9446;:16::i;:::-;9445:17;9437:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9854:1;9837:9;:13;9847:2;9837:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;9895:2;9876:7;:16;9884:7;9876:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9938:7;9934:2;9913:33;;9930:1;9913:33;;;;;;;;;;;;9957:47;9985:1;9989:2;9993:7;10002:1;9957:19;:47::i;:::-;9091:920;;:::o;2433:187:0:-;2506:16;2525:6;;;;;;;;;;;2506:25;;2550:8;2541:6;;:17;;;;;;;;;;;;;;;;;;2604:8;2573:40;;2594:8;2573:40;;;;;;;;;;;;2496:124;2433:187;:::o;4169:153:1:-;4263:52;4282:12;:10;:12::i;:::-;4296:8;4306;4263:18;:52::i;:::-;4169:153;;:::o;6424:305::-;6574:28;6584:4;6590:2;6594:7;6574:9;:28::i;:::-;6620:47;6643:4;6649:2;6653:7;6662:4;6620:22;:47::i;:::-;6612:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;6424:305;;;;:::o;7256:126::-;7321:4;7373:1;7344:31;;:17;7353:7;7344:8;:17::i;:::-;:31;;;;7337:38;;7256:126;;;:::o;415:696:9:-;471:13;520:14;557:1;537:17;548:5;537:10;:17::i;:::-;:21;520:38;;572:20;606:6;595:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;572:41;;627:11;753:6;749:2;745:15;737:6;733:28;726:35;;788:280;795:4;788:280;;;819:5;;;;;;;;958:8;953:2;946:5;942:14;937:30;932:3;924:44;1012:2;1003:11;;;;;;:::i;:::-;;;;;1045:1;1036:5;:10;788:280;1032:21;788:280;1088:6;1081:13;;;;;415:696;;;:::o;505:3026:6:-;563:13;810:1;795:4;:11;:16;791:31;;813:9;;;;;;;;;;;;;;;;791:31;872:19;894:6;;;;;;;;;;;;;;;;;872:28;;1303:20;1362:1;1357;1343:4;:11;:15;;;;:::i;:::-;1342:21;;;;:::i;:::-;1337:1;:27;;;;:::i;:::-;1326:39;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1303:62;;1540:1;1533:5;1529:13;1641:2;1633:6;1629:15;1748:4;1799;1793:11;1787:4;1783:22;1711:1403;1832:6;1823:7;1820:19;1711:1403;;;1934:1;1925:7;1921:15;1910:26;;1972:7;1966:14;2615:4;2607:5;2603:2;2599:14;2595:25;2585:8;2581:40;2575:47;2564:9;2556:67;2668:1;2657:9;2653:17;2640:30;;2758:4;2750:5;2746:2;2742:14;2738:25;2728:8;2724:40;2718:47;2707:9;2699:67;2811:1;2800:9;2796:17;2783:30;;2900:4;2892:5;2889:1;2885:13;2881:24;2871:8;2867:39;2861:46;2850:9;2842:66;2953:1;2942:9;2938:17;2925:30;;3034:4;3027:5;3023:16;3013:8;3009:31;3003:38;2992:9;2984:58;3087:1;3076:9;3072:17;3059:30;;1857:1257;1711:1403;;;1715:104;;3272:1;3265:4;3259:11;3255:19;3292:1;3287:120;;;;3425:1;3420:71;;;;3248:243;;3287:120;3339:4;3335:1;3324:9;3320:17;3312:32;3388:4;3384:1;3373:9;3369:17;3361:32;3287:120;;3420:71;3472:4;3468:1;3457:9;3453:17;3445:32;3248:243;;1428:2073;;3518:6;3511:13;;;;505:3026;;;;:::o;12768:171:1:-;12869:2;12842:15;:24;12858:7;12842:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;12924:7;12920:2;12886:46;;12895:23;12910:7;12895:14;:23::i;:::-;12886:46;;;;;;;;;;;;12768:171;;:::o;2040:375:13:-;2180:1;2164:18;;:4;:18;;;:37;;;;2194:7;:5;:7::i;:::-;2186:15;;:4;:15;;;2164:37;2160:184;;2242:43;2249:9;:18;2259:7;2249:18;;;;;;;;;;;;2269:15;2242:6;:43::i;:::-;2234:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;2160:184;2353:55;2380:4;2386:2;2390:7;2398:9;2353:26;:55::i;:::-;2040:375;;;;:::o;16558:153:1:-;;;;;:::o;13075:307::-;13225:8;13216:17;;:5;:17;;;13208:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;13311:8;13273:18;:25;13292:5;13273:25;;;;;;;;;;;;;;;:35;13299:8;13273:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;13356:8;13334:41;;13349:5;13334:41;;;13366:8;13334:41;;;;;;:::i;:::-;;;;;;;;13075:307;;;:::o;14151:831::-;14300:4;14320:15;:2;:13;;;:15::i;:::-;14316:660;;;14371:2;14355:36;;;14392:12;:10;:12::i;:::-;14406:4;14412:7;14421:4;14355:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;14351:573;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14610:1;14593:6;:13;:18;14589:321;;14635:60;;;;;;;;;;:::i;:::-;;;;;;;;14589:321;14862:6;14856:13;14847:6;14843:2;14839:15;14832:38;14351:573;14486:41;;;14476:51;;;:6;:51;;;;14469:58;;;;;14316:660;14961:4;14954:11;;14151:831;;;;;;;:::o;9889:890:12:-;9942:7;9961:14;9978:1;9961:18;;10026:6;10017:5;:15;10013:99;;10061:6;10052:15;;;;;;:::i;:::-;;;;;10095:2;10085:12;;;;10013:99;10138:6;10129:5;:15;10125:99;;10173:6;10164:15;;;;;;:::i;:::-;;;;;10207:2;10197:12;;;;10125:99;10250:6;10241:5;:15;10237:99;;10285:6;10276:15;;;;;;:::i;:::-;;;;;10319:2;10309:12;;;;10237:99;10362:5;10353;:14;10349:96;;10396:5;10387:14;;;;;;:::i;:::-;;;;;10429:1;10419:11;;;;10349:96;10471:5;10462;:14;10458:96;;10505:5;10496:14;;;;;;:::i;:::-;;;;;10538:1;10528:11;;;;10458:96;10580:5;10571;:14;10567:96;;10614:5;10605:14;;;;;;:::i;:::-;;;;;10647:1;10637:11;;;;10567:96;10689:5;10680;:14;10676:64;;10724:1;10714:11;;;;10676:64;10766:6;10759:13;;;9889:890;;;:::o;15698:154:1:-;;;;;:::o;1175:320:5:-;1235:4;1487:1;1465:7;:19;;;:23;1458:30;;1175:320;;;:::o;7:75:14:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:619::-;5015:6;5023;5031;5080:2;5068:9;5059:7;5055:23;5051:32;5048:119;;;5086:79;;:::i;:::-;5048:119;5206:1;5231:53;5276:7;5267:6;5256:9;5252:22;5231:53;:::i;:::-;5221:63;;5177:117;5333:2;5359:53;5404:7;5395:6;5384:9;5380:22;5359:53;:::i;:::-;5349:63;;5304:118;5461:2;5487:53;5532:7;5523:6;5512:9;5508:22;5487:53;:::i;:::-;5477:63;;5432:118;4938:619;;;;;:::o;5563:329::-;5622:6;5671:2;5659:9;5650:7;5646:23;5642:32;5639:119;;;5677:79;;:::i;:::-;5639:119;5797:1;5822:53;5867:7;5858:6;5847:9;5843:22;5822:53;:::i;:::-;5812:63;;5768:117;5563:329;;;;:::o;5898:118::-;5985:24;6003:5;5985:24;:::i;:::-;5980:3;5973:37;5898:118;;:::o;6022:222::-;6115:4;6153:2;6142:9;6138:18;6130:26;;6166:71;6234:1;6223:9;6219:17;6210:6;6166:71;:::i;:::-;6022:222;;;;:::o;6250:116::-;6320:21;6335:5;6320:21;:::i;:::-;6313:5;6310:32;6300:60;;6356:1;6353;6346:12;6300:60;6250:116;:::o;6372:133::-;6415:5;6453:6;6440:20;6431:29;;6469:30;6493:5;6469:30;:::i;:::-;6372:133;;;;:::o;6511:468::-;6576:6;6584;6633:2;6621:9;6612:7;6608:23;6604:32;6601:119;;;6639:79;;:::i;:::-;6601:119;6759:1;6784:53;6829:7;6820:6;6809:9;6805:22;6784:53;:::i;:::-;6774:63;;6730:117;6886:2;6912:50;6954:7;6945:6;6934:9;6930:22;6912:50;:::i;:::-;6902:60;;6857:115;6511:468;;;;;:::o;6985:117::-;7094:1;7091;7084:12;7108:117;7217:1;7214;7207:12;7231:180;7279:77;7276:1;7269:88;7376:4;7373:1;7366:15;7400:4;7397:1;7390:15;7417:281;7500:27;7522:4;7500:27;:::i;:::-;7492:6;7488:40;7630:6;7618:10;7615:22;7594:18;7582:10;7579:34;7576:62;7573:88;;;7641:18;;:::i;:::-;7573:88;7681:10;7677:2;7670:22;7460:238;7417:281;;:::o;7704:129::-;7738:6;7765:20;;:::i;:::-;7755:30;;7794:33;7822:4;7814:6;7794:33;:::i;:::-;7704:129;;;:::o;7839:307::-;7900:4;7990:18;7982:6;7979:30;7976:56;;;8012:18;;:::i;:::-;7976:56;8050:29;8072:6;8050:29;:::i;:::-;8042:37;;8134:4;8128;8124:15;8116:23;;7839:307;;;:::o;8152:154::-;8236:6;8231:3;8226;8213:30;8298:1;8289:6;8284:3;8280:16;8273:27;8152:154;;;:::o;8312:410::-;8389:5;8414:65;8430:48;8471:6;8430:48;:::i;:::-;8414:65;:::i;:::-;8405:74;;8502:6;8495:5;8488:21;8540:4;8533:5;8529:16;8578:3;8569:6;8564:3;8560:16;8557:25;8554:112;;;8585:79;;:::i;:::-;8554:112;8675:41;8709:6;8704:3;8699;8675:41;:::i;:::-;8395:327;8312:410;;;;;:::o;8741:338::-;8796:5;8845:3;8838:4;8830:6;8826:17;8822:27;8812:122;;8853:79;;:::i;:::-;8812:122;8970:6;8957:20;8995:78;9069:3;9061:6;9054:4;9046:6;9042:17;8995:78;:::i;:::-;8986:87;;8802:277;8741:338;;;;:::o;9085:943::-;9180:6;9188;9196;9204;9253:3;9241:9;9232:7;9228:23;9224:33;9221:120;;;9260:79;;:::i;:::-;9221:120;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:53;9578:7;9569:6;9558:9;9554:22;9533:53;:::i;:::-;9523:63;;9478:118;9635:2;9661:53;9706:7;9697:6;9686:9;9682:22;9661:53;:::i;:::-;9651:63;;9606:118;9791:2;9780:9;9776:18;9763:32;9822:18;9814:6;9811:30;9808:117;;;9844:79;;:::i;:::-;9808:117;9949:62;10003:7;9994:6;9983:9;9979:22;9949:62;:::i;:::-;9939:72;;9734:287;9085:943;;;;;;;:::o;10034:114::-;10101:6;10135:5;10129:12;10119:22;;10034:114;;;:::o;10154:184::-;10253:11;10287:6;10282:3;10275:19;10327:4;10322:3;10318:14;10303:29;;10154:184;;;;:::o;10344:132::-;10411:4;10434:3;10426:11;;10464:4;10459:3;10455:14;10447:22;;10344:132;;;:::o;10482:108::-;10559:24;10577:5;10559:24;:::i;:::-;10554:3;10547:37;10482:108;;:::o;10596:179::-;10665:10;10686:46;10728:3;10720:6;10686:46;:::i;:::-;10764:4;10759:3;10755:14;10741:28;;10596:179;;;;:::o;10781:113::-;10851:4;10883;10878:3;10874:14;10866:22;;10781:113;;;:::o;10930:732::-;11049:3;11078:54;11126:5;11078:54;:::i;:::-;11148:86;11227:6;11222:3;11148:86;:::i;:::-;11141:93;;11258:56;11308:5;11258:56;:::i;:::-;11337:7;11368:1;11353:284;11378:6;11375:1;11372:13;11353:284;;;11454:6;11448:13;11481:63;11540:3;11525:13;11481:63;:::i;:::-;11474:70;;11567:60;11620:6;11567:60;:::i;:::-;11557:70;;11413:224;11400:1;11397;11393:9;11388:14;;11353:284;;;11357:14;11653:3;11646:10;;11054:608;;;10930:732;;;;:::o;11668:373::-;11811:4;11849:2;11838:9;11834:18;11826:26;;11898:9;11892:4;11888:20;11884:1;11873:9;11869:17;11862:47;11926:108;12029:4;12020:6;11926:108;:::i;:::-;11918:116;;11668:373;;;;:::o;12047:474::-;12115:6;12123;12172:2;12160:9;12151:7;12147:23;12143:32;12140:119;;;12178:79;;:::i;:::-;12140:119;12298:1;12323:53;12368:7;12359:6;12348:9;12344:22;12323:53;:::i;:::-;12313:63;;12269:117;12425:2;12451:53;12496:7;12487:6;12476:9;12472:22;12451:53;:::i;:::-;12441:63;;12396:118;12047:474;;;;;:::o;12527:::-;12595:6;12603;12652:2;12640:9;12631:7;12627:23;12623:32;12620:119;;;12658:79;;:::i;:::-;12620:119;12778:1;12803:53;12848:7;12839:6;12828:9;12824:22;12803:53;:::i;:::-;12793:63;;12749:117;12905:2;12931:53;12976:7;12967:6;12956:9;12952:22;12931:53;:::i;:::-;12921:63;;12876:118;12527:474;;;;;:::o;13007:180::-;13055:77;13052:1;13045:88;13152:4;13149:1;13142:15;13176:4;13173:1;13166:15;13193:320;13237:6;13274:1;13268:4;13264:12;13254:22;;13321:1;13315:4;13311:12;13342:18;13332:81;;13398:4;13390:6;13386:17;13376:27;;13332:81;13460:2;13452:6;13449:14;13429:18;13426:38;13423:84;;13479:18;;:::i;:::-;13423:84;13244:269;13193:320;;;:::o;13519:233::-;13659:34;13655:1;13647:6;13643:14;13636:58;13728:16;13723:2;13715:6;13711:15;13704:41;13519:233;:::o;13758:366::-;13900:3;13921:67;13985:2;13980:3;13921:67;:::i;:::-;13914:74;;13997:93;14086:3;13997:93;:::i;:::-;14115:2;14110:3;14106:12;14099:19;;13758:366;;;:::o;14130:419::-;14296:4;14334:2;14323:9;14319:18;14311:26;;14383:9;14377:4;14373:20;14369:1;14358:9;14354:17;14347:47;14411:131;14537:4;14411:131;:::i;:::-;14403:139;;14130:419;;;:::o;14555:232::-;14695:34;14691:1;14683:6;14679:14;14672:58;14764:15;14759:2;14751:6;14747:15;14740:40;14555:232;:::o;14793:366::-;14935:3;14956:67;15020:2;15015:3;14956:67;:::i;:::-;14949:74;;15032:93;15121:3;15032:93;:::i;:::-;15150:2;15145:3;15141:12;15134:19;;14793:366;;;:::o;15165:419::-;15331:4;15369:2;15358:9;15354:18;15346:26;;15418:9;15412:4;15408:20;15404:1;15393:9;15389:17;15382:47;15446:131;15572:4;15446:131;:::i;:::-;15438:139;;15165:419;;;:::o;15590:174::-;15730:26;15726:1;15718:6;15714:14;15707:50;15590:174;:::o;15770:366::-;15912:3;15933:67;15997:2;15992:3;15933:67;:::i;:::-;15926:74;;16009:93;16098:3;16009:93;:::i;:::-;16127:2;16122:3;16118:12;16111:19;;15770:366;;;:::o;16142:419::-;16308:4;16346:2;16335:9;16331:18;16323:26;;16395:9;16389:4;16385:20;16381:1;16370:9;16366:17;16359:47;16423:131;16549:4;16423:131;:::i;:::-;16415:139;;16142:419;;;:::o;16567:228::-;16707:34;16703:1;16695:6;16691:14;16684:58;16776:11;16771:2;16763:6;16759:15;16752:36;16567:228;:::o;16801:366::-;16943:3;16964:67;17028:2;17023:3;16964:67;:::i;:::-;16957:74;;17040:93;17129:3;17040:93;:::i;:::-;17158:2;17153:3;17149:12;17142:19;;16801:366;;;:::o;17173:419::-;17339:4;17377:2;17366:9;17362:18;17354:26;;17426:9;17420:4;17416:20;17412:1;17401:9;17397:17;17390:47;17454:131;17580:4;17454:131;:::i;:::-;17446:139;;17173:419;;;:::o;17598:180::-;17646:77;17643:1;17636:88;17743:4;17740:1;17733:15;17767:4;17764:1;17757:15;17784:180;17832:77;17829:1;17822:88;17929:4;17926:1;17919:15;17953:4;17950:1;17943:15;17970:191;18010:4;18030:20;18048:1;18030:20;:::i;:::-;18025:25;;18064:20;18082:1;18064:20;:::i;:::-;18059:25;;18103:1;18100;18097:8;18094:34;;;18108:18;;:::i;:::-;18094:34;18153:1;18150;18146:9;18138:17;;17970:191;;;;:::o;18167:233::-;18206:3;18229:24;18247:5;18229:24;:::i;:::-;18220:33;;18275:66;18268:5;18265:77;18262:103;;18345:18;;:::i;:::-;18262:103;18392:1;18385:5;18381:13;18374:20;;18167:233;;;:::o;18406:234::-;18546:34;18542:1;18534:6;18530:14;18523:58;18615:17;18610:2;18602:6;18598:15;18591:42;18406:234;:::o;18646:366::-;18788:3;18809:67;18873:2;18868:3;18809:67;:::i;:::-;18802:74;;18885:93;18974:3;18885:93;:::i;:::-;19003:2;18998:3;18994:12;18987:19;;18646:366;;;:::o;19018:419::-;19184:4;19222:2;19211:9;19207:18;19199:26;;19271:9;19265:4;19261:20;19257:1;19246:9;19242:17;19235:47;19299:131;19425:4;19299:131;:::i;:::-;19291:139;;19018:419;;;:::o;19443:148::-;19545:11;19582:3;19567:18;;19443:148;;;;:::o;19597:214::-;19737:66;19733:1;19725:6;19721:14;19714:90;19597:214;:::o;19817:402::-;19977:3;19998:85;20080:2;20075:3;19998:85;:::i;:::-;19991:92;;20092:93;20181:3;20092:93;:::i;:::-;20210:2;20205:3;20201:12;20194:19;;19817:402;;;:::o;20225:141::-;20274:4;20297:3;20289:11;;20320:3;20317:1;20310:14;20354:4;20351:1;20341:18;20333:26;;20225:141;;;:::o;20396:845::-;20499:3;20536:5;20530:12;20565:36;20591:9;20565:36;:::i;:::-;20617:89;20699:6;20694:3;20617:89;:::i;:::-;20610:96;;20737:1;20726:9;20722:17;20753:1;20748:137;;;;20899:1;20894:341;;;;20715:520;;20748:137;20832:4;20828:9;20817;20813:25;20808:3;20801:38;20868:6;20863:3;20859:16;20852:23;;20748:137;;20894:341;20961:38;20993:5;20961:38;:::i;:::-;21021:1;21035:154;21049:6;21046:1;21043:13;21035:154;;;21123:7;21117:14;21113:1;21108:3;21104:11;21097:35;21173:1;21164:7;21160:15;21149:26;;21071:4;21068:1;21064:12;21059:17;;21035:154;;;21218:6;21213:3;21209:16;21202:23;;20901:334;;20715:520;;20503:738;;20396:845;;;;:::o;21247:152::-;21387:4;21383:1;21375:6;21371:14;21364:28;21247:152;:::o;21405:400::-;21565:3;21586:84;21668:1;21663:3;21586:84;:::i;:::-;21579:91;;21679:93;21768:3;21679:93;:::i;:::-;21797:1;21792:3;21788:11;21781:18;;21405:400;;;:::o;21811:377::-;21917:3;21945:39;21978:5;21945:39;:::i;:::-;22000:89;22082:6;22077:3;22000:89;:::i;:::-;21993:96;;22098:52;22143:6;22138:3;22131:4;22124:5;22120:16;22098:52;:::i;:::-;22175:6;22170:3;22166:16;22159:23;;21921:267;21811:377;;;;:::o;22194:214::-;22334:66;22330:1;22322:6;22318:14;22311:90;22194:214;:::o;22414:402::-;22574:3;22595:85;22677:2;22672:3;22595:85;:::i;:::-;22588:92;;22689:93;22778:3;22689:93;:::i;:::-;22807:2;22802:3;22798:12;22791:19;;22414:402;;;:::o;22822:214::-;22962:66;22958:1;22950:6;22946:14;22939:90;22822:214;:::o;23042:402::-;23202:3;23223:85;23305:2;23300:3;23223:85;:::i;:::-;23216:92;;23317:93;23406:3;23317:93;:::i;:::-;23435:2;23430:3;23426:12;23419:19;;23042:402;;;:::o;23450:214::-;23590:66;23586:1;23578:6;23574:14;23567:90;23450:214;:::o;23670:400::-;23830:3;23851:84;23933:1;23928:3;23851:84;:::i;:::-;23844:91;;23944:93;24033:3;23944:93;:::i;:::-;24062:1;24057:3;24053:11;24046:18;;23670:400;;;:::o;24076:2067::-;24848:3;24870:148;25014:3;24870:148;:::i;:::-;24863:155;;25035:92;25123:3;25114:6;25035:92;:::i;:::-;25028:99;;25144:148;25288:3;25144:148;:::i;:::-;25137:155;;25309:95;25400:3;25391:6;25309:95;:::i;:::-;25302:102;;25421:148;25565:3;25421:148;:::i;:::-;25414:155;;25586:92;25674:3;25665:6;25586:92;:::i;:::-;25579:99;;25695:148;25839:3;25695:148;:::i;:::-;25688:155;;25860:92;25948:3;25939:6;25860:92;:::i;:::-;25853:99;;25969:148;26113:3;25969:148;:::i;:::-;25962:155;;26134:3;26127:10;;24076:2067;;;;;;;:::o;26149:179::-;26289:31;26285:1;26277:6;26273:14;26266:55;26149:179;:::o;26334:402::-;26494:3;26515:85;26597:2;26592:3;26515:85;:::i;:::-;26508:92;;26609:93;26698:3;26609:93;:::i;:::-;26727:2;26722:3;26718:12;26711:19;;26334:402;;;:::o;26742:541::-;26975:3;26997:148;27141:3;26997:148;:::i;:::-;26990:155;;27162:95;27253:3;27244:6;27162:95;:::i;:::-;27155:102;;27274:3;27267:10;;26742:541;;;;:::o;27289:225::-;27429:34;27425:1;27417:6;27413:14;27406:58;27498:8;27493:2;27485:6;27481:15;27474:33;27289:225;:::o;27520:366::-;27662:3;27683:67;27747:2;27742:3;27683:67;:::i;:::-;27676:74;;27759:93;27848:3;27759:93;:::i;:::-;27877:2;27872:3;27868:12;27861:19;;27520:366;;;:::o;27892:419::-;28058:4;28096:2;28085:9;28081:18;28073:26;;28145:9;28139:4;28135:20;28131:1;28120:9;28116:17;28109:47;28173:131;28299:4;28173:131;:::i;:::-;28165:139;;27892:419;;;:::o;28317:220::-;28457:34;28453:1;28445:6;28441:14;28434:58;28526:3;28521:2;28513:6;28509:15;28502:28;28317:220;:::o;28543:366::-;28685:3;28706:67;28770:2;28765:3;28706:67;:::i;:::-;28699:74;;28782:93;28871:3;28782:93;:::i;:::-;28900:2;28895:3;28891:12;28884:19;;28543:366;;;:::o;28915:419::-;29081:4;29119:2;29108:9;29104:18;29096:26;;29168:9;29162:4;29158:20;29154:1;29143:9;29139:17;29132:47;29196:131;29322:4;29196:131;:::i;:::-;29188:139;;28915:419;;;:::o;29340:248::-;29480:34;29476:1;29468:6;29464:14;29457:58;29549:31;29544:2;29536:6;29532:15;29525:56;29340:248;:::o;29594:366::-;29736:3;29757:67;29821:2;29816:3;29757:67;:::i;:::-;29750:74;;29833:93;29922:3;29833:93;:::i;:::-;29951:2;29946:3;29942:12;29935:19;;29594:366;;;:::o;29966:419::-;30132:4;30170:2;30159:9;30155:18;30147:26;;30219:9;30213:4;30209:20;30205:1;30194:9;30190:17;30183:47;30247:131;30373:4;30247:131;:::i;:::-;30239:139;;29966:419;;;:::o;30391:224::-;30531:34;30527:1;30519:6;30515:14;30508:58;30600:7;30595:2;30587:6;30583:15;30576:32;30391:224;:::o;30621:366::-;30763:3;30784:67;30848:2;30843:3;30784:67;:::i;:::-;30777:74;;30860:93;30949:3;30860:93;:::i;:::-;30978:2;30973:3;30969:12;30962:19;;30621:366;;;:::o;30993:419::-;31159:4;31197:2;31186:9;31182:18;31174:26;;31246:9;31240:4;31236:20;31232:1;31221:9;31217:17;31210:47;31274:131;31400:4;31274:131;:::i;:::-;31266:139;;30993:419;;;:::o;31418:223::-;31558:34;31554:1;31546:6;31542:14;31535:58;31627:6;31622:2;31614:6;31610:15;31603:31;31418:223;:::o;31647:366::-;31789:3;31810:67;31874:2;31869:3;31810:67;:::i;:::-;31803:74;;31886:93;31975:3;31886:93;:::i;:::-;32004:2;31999:3;31995:12;31988:19;;31647:366;;;:::o;32019:419::-;32185:4;32223:2;32212:9;32208:18;32200:26;;32272:9;32266:4;32262:20;32258:1;32247:9;32243:17;32236:47;32300:131;32426:4;32300:131;:::i;:::-;32292:139;;32019:419;;;:::o;32444:182::-;32584:34;32580:1;32572:6;32568:14;32561:58;32444:182;:::o;32632:366::-;32774:3;32795:67;32859:2;32854:3;32795:67;:::i;:::-;32788:74;;32871:93;32960:3;32871:93;:::i;:::-;32989:2;32984:3;32980:12;32973:19;;32632:366;;;:::o;33004:419::-;33170:4;33208:2;33197:9;33193:18;33185:26;;33257:9;33251:4;33247:20;33243:1;33232:9;33228:17;33221:47;33285:131;33411:4;33285:131;:::i;:::-;33277:139;;33004:419;;;:::o;33429:182::-;33569:34;33565:1;33557:6;33553:14;33546:58;33429:182;:::o;33617:366::-;33759:3;33780:67;33844:2;33839:3;33780:67;:::i;:::-;33773:74;;33856:93;33945:3;33856:93;:::i;:::-;33974:2;33969:3;33965:12;33958:19;;33617:366;;;:::o;33989:419::-;34155:4;34193:2;34182:9;34178:18;34170:26;;34242:9;34236:4;34232:20;34228:1;34217:9;34213:17;34206:47;34270:131;34396:4;34270:131;:::i;:::-;34262:139;;33989:419;;;:::o;34414:178::-;34554:30;34550:1;34542:6;34538:14;34531:54;34414:178;:::o;34598:366::-;34740:3;34761:67;34825:2;34820:3;34761:67;:::i;:::-;34754:74;;34837:93;34926:3;34837:93;:::i;:::-;34955:2;34950:3;34946:12;34939:19;;34598:366;;;:::o;34970:419::-;35136:4;35174:2;35163:9;35159:18;35151:26;;35223:9;35217:4;35213:20;35209:1;35198:9;35194:17;35187:47;35251:131;35377:4;35251:131;:::i;:::-;35243:139;;34970:419;;;:::o;35395:237::-;35535:34;35531:1;35523:6;35519:14;35512:58;35604:20;35599:2;35591:6;35587:15;35580:45;35395:237;:::o;35638:366::-;35780:3;35801:67;35865:2;35860:3;35801:67;:::i;:::-;35794:74;;35877:93;35966:3;35877:93;:::i;:::-;35995:2;35990:3;35986:12;35979:19;;35638:366;;;:::o;36010:419::-;36176:4;36214:2;36203:9;36199:18;36191:26;;36263:9;36257:4;36253:20;36249:1;36238:9;36234:17;36227:47;36291:131;36417:4;36291:131;:::i;:::-;36283:139;;36010:419;;;:::o;36435:180::-;36483:77;36480:1;36473:88;36580:4;36577:1;36570:15;36604:4;36601:1;36594:15;36621:305;36661:3;36680:20;36698:1;36680:20;:::i;:::-;36675:25;;36714:20;36732:1;36714:20;:::i;:::-;36709:25;;36868:1;36800:66;36796:74;36793:1;36790:81;36787:107;;;36874:18;;:::i;:::-;36787:107;36918:1;36915;36911:9;36904:16;;36621:305;;;;:::o;36932:185::-;36972:1;36989:20;37007:1;36989:20;:::i;:::-;36984:25;;37023:20;37041:1;37023:20;:::i;:::-;37018:25;;37062:1;37052:35;;37067:18;;:::i;:::-;37052:35;37109:1;37106;37102:9;37097:14;;36932:185;;;;:::o;37123:348::-;37163:7;37186:20;37204:1;37186:20;:::i;:::-;37181:25;;37220:20;37238:1;37220:20;:::i;:::-;37215:25;;37408:1;37340:66;37336:74;37333:1;37330:81;37325:1;37318:9;37311:17;37307:105;37304:131;;;37415:18;;:::i;:::-;37304:131;37463:1;37460;37456:9;37445:20;;37123:348;;;;:::o;37477:231::-;37617:34;37613:1;37605:6;37601:14;37594:58;37686:14;37681:2;37673:6;37669:15;37662:39;37477:231;:::o;37714:366::-;37856:3;37877:67;37941:2;37936:3;37877:67;:::i;:::-;37870:74;;37953:93;38042:3;37953:93;:::i;:::-;38071:2;38066:3;38062:12;38055:19;;37714:366;;;:::o;38086:419::-;38252:4;38290:2;38279:9;38275:18;38267:26;;38339:9;38333:4;38329:20;38325:1;38314:9;38310:17;38303:47;38367:131;38493:4;38367:131;:::i;:::-;38359:139;;38086:419;;;:::o;38511:175::-;38651:27;38647:1;38639:6;38635:14;38628:51;38511:175;:::o;38692:366::-;38834:3;38855:67;38919:2;38914:3;38855:67;:::i;:::-;38848:74;;38931:93;39020:3;38931:93;:::i;:::-;39049:2;39044:3;39040:12;39033:19;;38692:366;;;:::o;39064:419::-;39230:4;39268:2;39257:9;39253:18;39245:26;;39317:9;39311:4;39307:20;39303:1;39292:9;39288:17;39281:47;39345:131;39471:4;39345:131;:::i;:::-;39337:139;;39064:419;;;:::o;39489:98::-;39540:6;39574:5;39568:12;39558:22;;39489:98;;;:::o;39593:168::-;39676:11;39710:6;39705:3;39698:19;39750:4;39745:3;39741:14;39726:29;;39593:168;;;;:::o;39767:360::-;39853:3;39881:38;39913:5;39881:38;:::i;:::-;39935:70;39998:6;39993:3;39935:70;:::i;:::-;39928:77;;40014:52;40059:6;40054:3;40047:4;40040:5;40036:16;40014:52;:::i;:::-;40091:29;40113:6;40091:29;:::i;:::-;40086:3;40082:39;40075:46;;39857:270;39767:360;;;;:::o;40133:640::-;40328:4;40366:3;40355:9;40351:19;40343:27;;40380:71;40448:1;40437:9;40433:17;40424:6;40380:71;:::i;:::-;40461:72;40529:2;40518:9;40514:18;40505:6;40461:72;:::i;:::-;40543;40611:2;40600:9;40596:18;40587:6;40543:72;:::i;:::-;40662:9;40656:4;40652:20;40647:2;40636:9;40632:18;40625:48;40690:76;40761:4;40752:6;40690:76;:::i;:::-;40682:84;;40133:640;;;;;;;:::o;40779:141::-;40835:5;40866:6;40860:13;40851:22;;40882:32;40908:5;40882:32;:::i;:::-;40779:141;;;;:::o;40926:349::-;40995:6;41044:2;41032:9;41023:7;41019:23;41015:32;41012:119;;;41050:79;;:::i;:::-;41012:119;41170:1;41195:63;41250:7;41241:6;41230:9;41226:22;41195:63;:::i;:::-;41185:73;;41141:127;40926:349;;;;:::o

Swarm Source

ipfs://ececccf15855c654bbbf8c1450ebbe0d8d0cc71845cae927f3a8903621bca891
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.