ETH Price: $2,434.53 (-2.18%)

Token

IlluminatiNFT Illuminaries (Illuminaries)
 

Overview

Max Total Supply

31 Illuminaries

Holders

29

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 Illuminaries
0x09f548483149382506C0A271b9b8c4152A132a39
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:
Illuminaries

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 20000 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 12 of 16: Illuminaries.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.10;

import './ERC721Enumerable.sol';
import './Ownable.sol';
import './Strings.sol';
import './Payment.sol';
import './Guard.sol';

contract Illuminaries is ERC721Enumerable, Ownable, Payment, Guard {
    using Strings for uint256;
    string public baseURI;

  	//settings
  	uint256 public maxSupply = 100;

	//shares
	address[] private addressList = [
		0x0Aa1F3d61e7c325aE795737266c5FD6839819b86];
	uint[] private shareList = [100];

	//token
	constructor(
	string memory _name,
	string memory _symbol,
	string memory _initBaseURI
	) 
    ERC721(_name, _symbol)
	    Payment(addressList, shareList){
	    setURI(_initBaseURI);
	}

	// admin minting directly to receipent
	// admin minting
	function giftHonorary(uint[] calldata gifts, address[] calldata recipient) external onlyOwner{
	require(gifts.length == recipient.length);
	uint g = 0;
	uint256 s = totalSupply();
	for(uint i = 0; i < gifts.length; ++i){
	g += gifts[i];
	}
	require( s + g <= maxSupply, "Too many" );
	delete g;
	for(uint i = 0; i < recipient.length; ++i){
	for(uint j = 0; j < gifts[i]; ++j){
	_safeMint( recipient[i], s++, "" );
	}
	}
	delete s;	
	}

	//read metadata
	function _baseURI() internal view virtual returns (string memory) {
		return baseURI;
	}

	function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
		require(tokenId <= maxSupply);
		string memory currentBaseURI = _baseURI();
		return bytes(currentBaseURI).length > 0	? string(abi.encodePacked(currentBaseURI, tokenId.toString())) : "";
	}

	//write metadata
	function setURI(string memory _newBaseURI) public onlyOwner {
		baseURI = _newBaseURI;
	}
	
	//supply switch if the ancients deem necessary
	function setMax(uint256 _newMaxSupply) public onlyOwner {
		maxSupply = _newMaxSupply;
	}

	//withdraw
	function withdraw() public payable onlyOwner {
		(bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
		require(success);
	}
}

File 1 of 16: Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

File 2 of 16: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 3 of 16: ERC165.sol
// SPDX-License-Identifier: MIT

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 4 of 16: ERC721.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.10;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./ERC165.sol";

abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    string private _name;
    string private _symbol;
    address[] internal _owners;
    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;     
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }     
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        uint count = 0;
        uint length = _owners.length;
        for( uint i = 0; i < length; ++i ){
          if( owner == _owners[i] ){
            ++count;
          }
        }
        delete length;
        return count;
    }
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }
    function name() public view virtual override returns (string memory) {
        return _name;
    }
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }     
    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");
    }
	function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _owners[tokenId] != address(0);
    }
	function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }
	function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }
	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"
        );
    }
	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);
        _owners.push(to);

        emit Transfer(address(0), to, tokenId);
    }
	function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Clear approvals
        _approve(address(0), tokenId);
        _owners[tokenId] = address(0);

        emit Transfer(owner, address(0), tokenId);
    }
	function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }
	function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }
	function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }
	function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 5 of 16: ERC721Enumerable.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.10;
import "./ERC721.sol";
import "./IERC721Enumerable.sol";
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256 tokenId) {
        require(index < ERC721.balanceOf(owner), "ERC721Enum: owner ioob");
        uint count;
        for( uint i; i < _owners.length; ++i ){
            if( owner == _owners[i] ){
                if( count == index )
                    return i;
                else
                    ++count;
            }
        }
        require(false, "ERC721Enum: owner ioob");
    }
    function tokensOfOwner(address owner) public view returns (uint256[] memory) {
        require(0 < ERC721.balanceOf(owner), "ERC721Enum: owner ioob");
        uint256 tokenCount = balanceOf(owner);
        uint256[] memory tokenIds = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(owner, i);
        }
        return tokenIds;
    }
    function totalSupply() public view virtual override returns (uint256) {
        return _owners.length;
    }
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enum: global ioob");
        return index;
    }
}

File 6 of 16: Guard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 7 of 16: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 8 of 16: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

File 9 of 16: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 10 of 16: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

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 11 of 16: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 13 of 16: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./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() {
        _setOwner(_msgSender());
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 14 of 16: Payment.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Address.sol";
import "./Context.sol";
import "./SafeMath.sol";

/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 */
contract Payment is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + _totalReleased;
        uint256 payment = (totalReceived * _shares[account]) / _totalShares - _released[account];

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] = _released[account] + payment;
        _totalReleased = _totalReleased + payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

File 15 of 16: SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 16 of 16: Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"gifts","type":"uint256[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"giftHonorary","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6064600d5560a0604052730aa1f3d61e7c325ae795737266c5fd6839819b8660809081526200003390600e90600162000586565b506040805160208101909152606481526200005390600f906001620005f0565b503480156200006157600080fd5b50604051620034d3380380620034d3833981016040819052620000849162000794565b600e805480602002602001604051908101604052809291908181526020018280548015620000dc57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311620000bd575b5050505050600f8054806020026020016040519081016040528092919081815260200182805480156200012f57602002820191906000526020600020905b8154815260200190600101908083116200011a575b505087518893508792506200014d9150600090602085019062000633565b5080516200016390600190602084019062000633565b505050620001806200017a620002cd60201b60201c565b620002d1565b8051825114620001f25760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620002455760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f207061796565730000000000006044820152606401620001e9565b60005b8251811015620002b1576200029c8382815181106200026b576200026b62000825565b602002602001015183838151811062000288576200028862000825565b60200260200101516200032360201b60201c565b80620002a88162000851565b91505062000248565b50506001600b5550620002c48162000511565b505050620008c7565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003905760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b6064820152608401620001e9565b60008111620003e25760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a207368617265732061726520300000006044820152606401620001e9565b6001600160a01b038216600090815260086020526040902054156200045e5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b6064820152608401620001e9565b600a8054600181019091557fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319166001600160a01b0384169081179091556000908152600860205260409020819055600654620004c89082906200086f565b600655604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b6005546001600160a01b031633146200056d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620001e9565b80516200058290600c90602084019062000633565b5050565b828054828255906000526020600020908101928215620005de579160200282015b82811115620005de57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620005a7565b50620005ec929150620006b0565b5090565b828054828255906000526020600020908101928215620005de579160200282015b82811115620005de578251829060ff1690559160200191906001019062000611565b82805462000641906200088a565b90600052602060002090601f016020900481019282620006655760008555620005de565b82601f106200068057805160ff1916838001178555620005de565b82800160010185558215620005de579182015b82811115620005de57825182559160200191906001019062000693565b5b80821115620005ec5760008155600101620006b1565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620006ef57600080fd5b81516001600160401b03808211156200070c576200070c620006c7565b604051601f8301601f19908116603f01168101908282118183101715620007375762000737620006c7565b816040528381526020925086838588010111156200075457600080fd5b600091505b8382101562000778578582018301518183018401529082019062000759565b838211156200078a5760008385830101525b9695505050505050565b600080600060608486031215620007aa57600080fd5b83516001600160401b0380821115620007c257600080fd5b620007d087838801620006dd565b94506020860151915080821115620007e757600080fd5b620007f587838801620006dd565b935060408601519150808211156200080c57600080fd5b506200081b86828701620006dd565b9150509250925092565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156200086857620008686200083b565b5060010190565b600082198211156200088557620008856200083b565b500190565b600181811c908216806200089f57607f821691505b60208210811415620008c157634e487b7160e01b600052602260045260246000fd5b50919050565b612bfc80620008d76000396000f3fe6080604052600436106101e75760003560e01c80636c0360eb11610102578063a22cb46511610095578063d5abeb0111610064578063d5abeb0114610619578063e33b7de31461062f578063e985e9c514610644578063f2fde38b1461069a57600080fd5b8063a22cb46514610576578063b88d4fde14610596578063c87b56dd146105b6578063ce7c2ac2146105d657600080fd5b80638b83209b116100d15780638b83209b146104d35780638da5cb5b146104f357806395d89b411461051e5780639852595c1461053357600080fd5b80636c0360eb1461045c57806370a0823114610471578063715018a6146104915780638462151c146104a657600080fd5b806323b872dd1161017a57806342842e0e1161014957806342842e0e146103dc5780634f6ccce7146103fc578063511928c61461041c5780636352211e1461043c57600080fd5b806323b872dd1461037f5780632f745c591461039f5780633a98ef39146103bf5780633ccfd60b146103d457600080fd5b8063095ea7b3116101b6578063095ea7b31461030057806318160ddd14610320578063191655871461033f5780631fe9eabc1461035f57600080fd5b806301ffc9a71461024257806302fe53051461027757806306fdde0314610299578063081812fc146102bb57600080fd5b3661023d577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770336040805173ffffffffffffffffffffffffffffffffffffffff90921682523460208301520160405180910390a1005b600080fd5b34801561024e57600080fd5b5061026261025d366004612524565b6106ba565b60405190151581526020015b60405180910390f35b34801561028357600080fd5b50610297610292366004612604565b610716565b005b3480156102a557600080fd5b506102ae610799565b60405161026e91906126c3565b3480156102c757600080fd5b506102db6102d63660046126d6565b61082b565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161026e565b34801561030c57600080fd5b5061029761031b366004612711565b6108d1565b34801561032c57600080fd5b506002545b60405190815260200161026e565b34801561034b57600080fd5b5061029761035a36600461273d565b610a2a565b34801561036b57600080fd5b5061029761037a3660046126d6565b610c65565b34801561038b57600080fd5b5061029761039a36600461275a565b610cd1565b3480156103ab57600080fd5b506103316103ba366004612711565b610d58565b3480156103cb57600080fd5b50600654610331565b610297610e74565b3480156103e857600080fd5b506102976103f736600461275a565b610f33565b34801561040857600080fd5b506103316104173660046126d6565b610f4e565b34801561042857600080fd5b506102976104373660046127e7565b610fab565b34801561044857600080fd5b506102db6104573660046126d6565b611170565b34801561046857600080fd5b506102ae61121d565b34801561047d57600080fd5b5061033161048c36600461273d565b6112ab565b34801561049d57600080fd5b506102976113aa565b3480156104b257600080fd5b506104c66104c136600461273d565b61141d565b60405161026e9190612853565b3480156104df57600080fd5b506102db6104ee3660046126d6565b611517565b3480156104ff57600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff166102db565b34801561052a57600080fd5b506102ae611554565b34801561053f57600080fd5b5061033161054e36600461273d565b73ffffffffffffffffffffffffffffffffffffffff1660009081526009602052604090205490565b34801561058257600080fd5b50610297610591366004612897565b611563565b3480156105a257600080fd5b506102976105b13660046128d5565b611660565b3480156105c257600080fd5b506102ae6105d13660046126d6565b6116ee565b3480156105e257600080fd5b506103316105f136600461273d565b73ffffffffffffffffffffffffffffffffffffffff1660009081526008602052604090205490565b34801561062557600080fd5b50610331600d5481565b34801561063b57600080fd5b50600754610331565b34801561065057600080fd5b5061026261065f366004612955565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260046020908152604080832093909416825291909152205460ff1690565b3480156106a657600080fd5b506102976106b536600461273d565b61175b565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610710575061071082611854565b92915050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146107825760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b805161079590600c906020840190612466565b5050565b6060600080546107a890612983565b80601f01602080910402602001604051908101604052809291908181526020018280546107d490612983565b80156108215780601f106107f657610100808354040283529160200191610821565b820191906000526020600020905b81548152906001019060200180831161080457829003601f168201915b5050505050905090565b600061083682611937565b6108a85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610779565b5060009081526003602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b60006108dc82611170565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109805760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610779565b3373ffffffffffffffffffffffffffffffffffffffff821614806109a957506109a9813361065f565b610a1b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610779565b610a25838361199b565b505050565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260086020526040902054610ac25760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f73686172657300000000000000000000000000000000000000000000000000006064820152608401610779565b600060075447610ad29190612a06565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600960209081526040808320546006546008909352908320549394509192610b169085612a1e565b610b209190612a8a565b610b2a9190612a9e565b905080610b9f5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401610779565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260096020526040902054610bd0908290612a06565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260096020526040902055600754610c04908290612a06565b600755610c118382611a3b565b6040805173ffffffffffffffffffffffffffffffffffffffff85168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610ccc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610779565b600d55565b610cdb3382611b61565b610d4d5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610779565b610a25838383611c9d565b6000610d63836112ab565b8210610db15760405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610779565b6000805b600254811015610e2b5760028181548110610dd257610dd2612ab5565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff86811691161415610e1b5783821415610e0f5791506107109050565b610e1882612ae4565b91505b610e2481612ae4565b9050610db5565b5060405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610779565b60055473ffffffffffffffffffffffffffffffffffffffff163314610edb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610779565b604051600090339047908381818185875af1925050503d8060008114610f1d576040519150601f19603f3d011682016040523d82523d6000602084013e610f22565b606091505b5050905080610f3057600080fd5b50565b610a2583838360405180602001604052806000815250611660565b6000610f5960025490565b8210610fa75760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f620000000000000000006044820152606401610779565b5090565b60055473ffffffffffffffffffffffffffffffffffffffff1633146110125760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610779565b82811461101e57600080fd5b60008061102a60025490565b905060005b8581101561106d5786868281811061104957611049612ab5565b905060200201358361105b9190612a06565b925061106681612ae4565b905061102f565b50600d5461107b8383612a06565b11156110c95760405162461bcd60e51b815260206004820152600860248201527f546f6f206d616e790000000000000000000000000000000000000000000000006044820152606401610779565b6000915060005b838110156111675760005b8787838181106110ed576110ed612ab5565b905060200201358110156111565761114686868481811061111057611110612ab5565b9050602002016020810190611125919061273d565b8461112f81612ae4565b955060405180602001604052806000815250611e6c565b61114f81612ae4565b90506110db565b5061116081612ae4565b90506110d0565b50505050505050565b6000806002838154811061118657611186612ab5565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff169050806107105760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610779565b600c805461122a90612983565b80601f016020809104026020016040519081016040528092919081815260200182805461125690612983565b80156112a35780601f10611278576101008083540402835291602001916112a3565b820191906000526020600020905b81548152906001019060200180831161128657829003601f168201915b505050505081565b600073ffffffffffffffffffffffffffffffffffffffff82166113365760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610779565b600254600090815b818110156113a1576002818154811061135957611359612ab5565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff868116911614156113915761138e83612ae4565b92505b61139a81612ae4565b905061133e565b50909392505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146114115760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610779565b61141b6000611ef5565b565b6060611428826112ab565b6000106114775760405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610779565b6000611482836112ab565b905060008167ffffffffffffffff81111561149f5761149f612541565b6040519080825280602002602001820160405280156114c8578160200160208202803683370190505b50905060005b8281101561150f576114e08582610d58565b8282815181106114f2576114f2612ab5565b60209081029190910101528061150781612ae4565b9150506114ce565b509392505050565b6000600a828154811061152c5761152c612ab5565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1692915050565b6060600180546107a890612983565b73ffffffffffffffffffffffffffffffffffffffff82163314156115c95760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610779565b33600081815260046020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61166a3383611b61565b6116dc5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610779565b6116e884848484611f6c565b50505050565b6060600d548211156116ff57600080fd5b6000611709611ff5565b905060008151116117295760405180602001604052806000815250611754565b8061173384612004565b604051602001611744929190612b1d565b6040516020818303038152906040525b9392505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146117c25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610779565b73ffffffffffffffffffffffffffffffffffffffff811661184b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610779565b610f3081611ef5565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806118e757507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061071057507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610710565b600254600090821080156107105750600073ffffffffffffffffffffffffffffffffffffffff166002838154811061197157611971612ab5565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16141592915050565b600081815260036020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff841690811790915581906119f582611170565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80471015611a8b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610779565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114611ae5576040519150601f19603f3d011682016040523d82523d6000602084013e611aea565b606091505b5050905080610a255760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610779565b6000611b6c82611937565b611bde5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610779565b6000611be983611170565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c5857508373ffffffffffffffffffffffffffffffffffffffff16611c408461082b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c95575073ffffffffffffffffffffffffffffffffffffffff80821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16611cbd82611170565b73ffffffffffffffffffffffffffffffffffffffff1614611d465760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610779565b73ffffffffffffffffffffffffffffffffffffffff8216611dce5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610779565b611dd960008261199b565b8160028281548110611ded57611ded612ab5565b6000918252602082200180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b611e768383612136565b611e836000848484612290565b610a255760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610779565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611f77848484611c9d565b611f8384848484612290565b6116e85760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610779565b6060600c80546107a890612983565b60608161204457505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561206e578061205881612ae4565b91506120679050600a83612a8a565b9150612048565b60008167ffffffffffffffff81111561208957612089612541565b6040519080825280601f01601f1916602001820160405280156120b3576020820181803683370190505b5090505b8415611c95576120c8600183612a9e565b91506120d5600a86612b4c565b6120e0906030612a06565b60f81b8183815181106120f5576120f5612ab5565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061212f600a86612a8a565b94506120b7565b73ffffffffffffffffffffffffffffffffffffffff82166121995760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610779565b6121a281611937565b156121ef5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610779565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff85169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600073ffffffffffffffffffffffffffffffffffffffff84163b1561245b576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290612307903390899088908890600401612b60565b6020604051808303816000875af1925050508015612360575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261235d91810190612ba9565b60015b612410573d80801561238e576040519150601f19603f3d011682016040523d82523d6000602084013e612393565b606091505b5080516124085760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610779565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611c95565b506001949350505050565b82805461247290612983565b90600052602060002090601f01602090048101928261249457600085556124da565b82601f106124ad57805160ff19168380011785556124da565b828001600101855582156124da579182015b828111156124da5782518255916020019190600101906124bf565b50610fa79291505b80821115610fa757600081556001016124e2565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610f3057600080fd5b60006020828403121561253657600080fd5b8135611754816124f6565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff8084111561258b5761258b612541565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f011681019082821181831017156125d1576125d1612541565b816040528093508581528686860111156125ea57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561261657600080fd5b813567ffffffffffffffff81111561262d57600080fd5b8201601f8101841361263e57600080fd5b611c9584823560208401612570565b60005b83811015612668578181015183820152602001612650565b838111156116e85750506000910152565b6000815180845261269181602086016020860161264d565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006117546020830184612679565b6000602082840312156126e857600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff81168114610f3057600080fd5b6000806040838503121561272457600080fd5b823561272f816126ef565b946020939093013593505050565b60006020828403121561274f57600080fd5b8135611754816126ef565b60008060006060848603121561276f57600080fd5b833561277a816126ef565b9250602084013561278a816126ef565b929592945050506040919091013590565b60008083601f8401126127ad57600080fd5b50813567ffffffffffffffff8111156127c557600080fd5b6020830191508360208260051b85010111156127e057600080fd5b9250929050565b600080600080604085870312156127fd57600080fd5b843567ffffffffffffffff8082111561281557600080fd5b6128218883890161279b565b9096509450602087013591508082111561283a57600080fd5b506128478782880161279b565b95989497509550505050565b6020808252825182820181905260009190848201906040850190845b8181101561288b5783518352928401929184019160010161286f565b50909695505050505050565b600080604083850312156128aa57600080fd5b82356128b5816126ef565b9150602083013580151581146128ca57600080fd5b809150509250929050565b600080600080608085870312156128eb57600080fd5b84356128f6816126ef565b93506020850135612906816126ef565b925060408501359150606085013567ffffffffffffffff81111561292957600080fd5b8501601f8101871361293a57600080fd5b61294987823560208401612570565b91505092959194509250565b6000806040838503121561296857600080fd5b8235612973816126ef565b915060208301356128ca816126ef565b600181811c9082168061299757607f821691505b602082108114156129d1577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008219821115612a1957612a196129d7565b500190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a5657612a566129d7565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082612a9957612a99612a5b565b500490565b600082821015612ab057612ab06129d7565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612b1657612b166129d7565b5060010190565b60008351612b2f81846020880161264d565b835190830190612b4381836020880161264d565b01949350505050565b600082612b5b57612b5b612a5b565b500690565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152612b9f6080830184612679565b9695505050505050565b600060208284031215612bbb57600080fd5b8151611754816124f656fea264697066735822122027ad3d49abad64697c60a580e1e8908c88c43cc52ebccb6e7314deae752045c464736f6c634300080a0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001a496c6c756d696e6174694e465420496c6c756d696e6172696573000000000000000000000000000000000000000000000000000000000000000000000000000c496c6c756d696e61726965730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005668747470733a2f2f696c6c756d696e6174692e6d7970696e6174612e636c6f75642f697066732f516d537271457a4d6762413768434372376e6142347a6464346d46666451724b4c36456e594d486d57456a4e41472f00000000000000000000

Deployed Bytecode

0x6080604052600436106101e75760003560e01c80636c0360eb11610102578063a22cb46511610095578063d5abeb0111610064578063d5abeb0114610619578063e33b7de31461062f578063e985e9c514610644578063f2fde38b1461069a57600080fd5b8063a22cb46514610576578063b88d4fde14610596578063c87b56dd146105b6578063ce7c2ac2146105d657600080fd5b80638b83209b116100d15780638b83209b146104d35780638da5cb5b146104f357806395d89b411461051e5780639852595c1461053357600080fd5b80636c0360eb1461045c57806370a0823114610471578063715018a6146104915780638462151c146104a657600080fd5b806323b872dd1161017a57806342842e0e1161014957806342842e0e146103dc5780634f6ccce7146103fc578063511928c61461041c5780636352211e1461043c57600080fd5b806323b872dd1461037f5780632f745c591461039f5780633a98ef39146103bf5780633ccfd60b146103d457600080fd5b8063095ea7b3116101b6578063095ea7b31461030057806318160ddd14610320578063191655871461033f5780631fe9eabc1461035f57600080fd5b806301ffc9a71461024257806302fe53051461027757806306fdde0314610299578063081812fc146102bb57600080fd5b3661023d577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770336040805173ffffffffffffffffffffffffffffffffffffffff90921682523460208301520160405180910390a1005b600080fd5b34801561024e57600080fd5b5061026261025d366004612524565b6106ba565b60405190151581526020015b60405180910390f35b34801561028357600080fd5b50610297610292366004612604565b610716565b005b3480156102a557600080fd5b506102ae610799565b60405161026e91906126c3565b3480156102c757600080fd5b506102db6102d63660046126d6565b61082b565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161026e565b34801561030c57600080fd5b5061029761031b366004612711565b6108d1565b34801561032c57600080fd5b506002545b60405190815260200161026e565b34801561034b57600080fd5b5061029761035a36600461273d565b610a2a565b34801561036b57600080fd5b5061029761037a3660046126d6565b610c65565b34801561038b57600080fd5b5061029761039a36600461275a565b610cd1565b3480156103ab57600080fd5b506103316103ba366004612711565b610d58565b3480156103cb57600080fd5b50600654610331565b610297610e74565b3480156103e857600080fd5b506102976103f736600461275a565b610f33565b34801561040857600080fd5b506103316104173660046126d6565b610f4e565b34801561042857600080fd5b506102976104373660046127e7565b610fab565b34801561044857600080fd5b506102db6104573660046126d6565b611170565b34801561046857600080fd5b506102ae61121d565b34801561047d57600080fd5b5061033161048c36600461273d565b6112ab565b34801561049d57600080fd5b506102976113aa565b3480156104b257600080fd5b506104c66104c136600461273d565b61141d565b60405161026e9190612853565b3480156104df57600080fd5b506102db6104ee3660046126d6565b611517565b3480156104ff57600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff166102db565b34801561052a57600080fd5b506102ae611554565b34801561053f57600080fd5b5061033161054e36600461273d565b73ffffffffffffffffffffffffffffffffffffffff1660009081526009602052604090205490565b34801561058257600080fd5b50610297610591366004612897565b611563565b3480156105a257600080fd5b506102976105b13660046128d5565b611660565b3480156105c257600080fd5b506102ae6105d13660046126d6565b6116ee565b3480156105e257600080fd5b506103316105f136600461273d565b73ffffffffffffffffffffffffffffffffffffffff1660009081526008602052604090205490565b34801561062557600080fd5b50610331600d5481565b34801561063b57600080fd5b50600754610331565b34801561065057600080fd5b5061026261065f366004612955565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260046020908152604080832093909416825291909152205460ff1690565b3480156106a657600080fd5b506102976106b536600461273d565b61175b565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610710575061071082611854565b92915050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146107825760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b805161079590600c906020840190612466565b5050565b6060600080546107a890612983565b80601f01602080910402602001604051908101604052809291908181526020018280546107d490612983565b80156108215780601f106107f657610100808354040283529160200191610821565b820191906000526020600020905b81548152906001019060200180831161080457829003601f168201915b5050505050905090565b600061083682611937565b6108a85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610779565b5060009081526003602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b60006108dc82611170565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109805760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610779565b3373ffffffffffffffffffffffffffffffffffffffff821614806109a957506109a9813361065f565b610a1b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610779565b610a25838361199b565b505050565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260086020526040902054610ac25760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f73686172657300000000000000000000000000000000000000000000000000006064820152608401610779565b600060075447610ad29190612a06565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600960209081526040808320546006546008909352908320549394509192610b169085612a1e565b610b209190612a8a565b610b2a9190612a9e565b905080610b9f5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401610779565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260096020526040902054610bd0908290612a06565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260096020526040902055600754610c04908290612a06565b600755610c118382611a3b565b6040805173ffffffffffffffffffffffffffffffffffffffff85168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610ccc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610779565b600d55565b610cdb3382611b61565b610d4d5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610779565b610a25838383611c9d565b6000610d63836112ab565b8210610db15760405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610779565b6000805b600254811015610e2b5760028181548110610dd257610dd2612ab5565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff86811691161415610e1b5783821415610e0f5791506107109050565b610e1882612ae4565b91505b610e2481612ae4565b9050610db5565b5060405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610779565b60055473ffffffffffffffffffffffffffffffffffffffff163314610edb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610779565b604051600090339047908381818185875af1925050503d8060008114610f1d576040519150601f19603f3d011682016040523d82523d6000602084013e610f22565b606091505b5050905080610f3057600080fd5b50565b610a2583838360405180602001604052806000815250611660565b6000610f5960025490565b8210610fa75760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f620000000000000000006044820152606401610779565b5090565b60055473ffffffffffffffffffffffffffffffffffffffff1633146110125760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610779565b82811461101e57600080fd5b60008061102a60025490565b905060005b8581101561106d5786868281811061104957611049612ab5565b905060200201358361105b9190612a06565b925061106681612ae4565b905061102f565b50600d5461107b8383612a06565b11156110c95760405162461bcd60e51b815260206004820152600860248201527f546f6f206d616e790000000000000000000000000000000000000000000000006044820152606401610779565b6000915060005b838110156111675760005b8787838181106110ed576110ed612ab5565b905060200201358110156111565761114686868481811061111057611110612ab5565b9050602002016020810190611125919061273d565b8461112f81612ae4565b955060405180602001604052806000815250611e6c565b61114f81612ae4565b90506110db565b5061116081612ae4565b90506110d0565b50505050505050565b6000806002838154811061118657611186612ab5565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff169050806107105760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610779565b600c805461122a90612983565b80601f016020809104026020016040519081016040528092919081815260200182805461125690612983565b80156112a35780601f10611278576101008083540402835291602001916112a3565b820191906000526020600020905b81548152906001019060200180831161128657829003601f168201915b505050505081565b600073ffffffffffffffffffffffffffffffffffffffff82166113365760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610779565b600254600090815b818110156113a1576002818154811061135957611359612ab5565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff868116911614156113915761138e83612ae4565b92505b61139a81612ae4565b905061133e565b50909392505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146114115760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610779565b61141b6000611ef5565b565b6060611428826112ab565b6000106114775760405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610779565b6000611482836112ab565b905060008167ffffffffffffffff81111561149f5761149f612541565b6040519080825280602002602001820160405280156114c8578160200160208202803683370190505b50905060005b8281101561150f576114e08582610d58565b8282815181106114f2576114f2612ab5565b60209081029190910101528061150781612ae4565b9150506114ce565b509392505050565b6000600a828154811061152c5761152c612ab5565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1692915050565b6060600180546107a890612983565b73ffffffffffffffffffffffffffffffffffffffff82163314156115c95760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610779565b33600081815260046020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61166a3383611b61565b6116dc5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610779565b6116e884848484611f6c565b50505050565b6060600d548211156116ff57600080fd5b6000611709611ff5565b905060008151116117295760405180602001604052806000815250611754565b8061173384612004565b604051602001611744929190612b1d565b6040516020818303038152906040525b9392505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146117c25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610779565b73ffffffffffffffffffffffffffffffffffffffff811661184b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610779565b610f3081611ef5565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806118e757507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061071057507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610710565b600254600090821080156107105750600073ffffffffffffffffffffffffffffffffffffffff166002838154811061197157611971612ab5565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16141592915050565b600081815260036020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff841690811790915581906119f582611170565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80471015611a8b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610779565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114611ae5576040519150601f19603f3d011682016040523d82523d6000602084013e611aea565b606091505b5050905080610a255760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610779565b6000611b6c82611937565b611bde5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610779565b6000611be983611170565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c5857508373ffffffffffffffffffffffffffffffffffffffff16611c408461082b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c95575073ffffffffffffffffffffffffffffffffffffffff80821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16611cbd82611170565b73ffffffffffffffffffffffffffffffffffffffff1614611d465760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610779565b73ffffffffffffffffffffffffffffffffffffffff8216611dce5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610779565b611dd960008261199b565b8160028281548110611ded57611ded612ab5565b6000918252602082200180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b611e768383612136565b611e836000848484612290565b610a255760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610779565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611f77848484611c9d565b611f8384848484612290565b6116e85760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610779565b6060600c80546107a890612983565b60608161204457505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561206e578061205881612ae4565b91506120679050600a83612a8a565b9150612048565b60008167ffffffffffffffff81111561208957612089612541565b6040519080825280601f01601f1916602001820160405280156120b3576020820181803683370190505b5090505b8415611c95576120c8600183612a9e565b91506120d5600a86612b4c565b6120e0906030612a06565b60f81b8183815181106120f5576120f5612ab5565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061212f600a86612a8a565b94506120b7565b73ffffffffffffffffffffffffffffffffffffffff82166121995760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610779565b6121a281611937565b156121ef5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610779565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff85169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600073ffffffffffffffffffffffffffffffffffffffff84163b1561245b576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290612307903390899088908890600401612b60565b6020604051808303816000875af1925050508015612360575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261235d91810190612ba9565b60015b612410573d80801561238e576040519150601f19603f3d011682016040523d82523d6000602084013e612393565b606091505b5080516124085760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610779565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611c95565b506001949350505050565b82805461247290612983565b90600052602060002090601f01602090048101928261249457600085556124da565b82601f106124ad57805160ff19168380011785556124da565b828001600101855582156124da579182015b828111156124da5782518255916020019190600101906124bf565b50610fa79291505b80821115610fa757600081556001016124e2565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610f3057600080fd5b60006020828403121561253657600080fd5b8135611754816124f6565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff8084111561258b5761258b612541565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f011681019082821181831017156125d1576125d1612541565b816040528093508581528686860111156125ea57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561261657600080fd5b813567ffffffffffffffff81111561262d57600080fd5b8201601f8101841361263e57600080fd5b611c9584823560208401612570565b60005b83811015612668578181015183820152602001612650565b838111156116e85750506000910152565b6000815180845261269181602086016020860161264d565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006117546020830184612679565b6000602082840312156126e857600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff81168114610f3057600080fd5b6000806040838503121561272457600080fd5b823561272f816126ef565b946020939093013593505050565b60006020828403121561274f57600080fd5b8135611754816126ef565b60008060006060848603121561276f57600080fd5b833561277a816126ef565b9250602084013561278a816126ef565b929592945050506040919091013590565b60008083601f8401126127ad57600080fd5b50813567ffffffffffffffff8111156127c557600080fd5b6020830191508360208260051b85010111156127e057600080fd5b9250929050565b600080600080604085870312156127fd57600080fd5b843567ffffffffffffffff8082111561281557600080fd5b6128218883890161279b565b9096509450602087013591508082111561283a57600080fd5b506128478782880161279b565b95989497509550505050565b6020808252825182820181905260009190848201906040850190845b8181101561288b5783518352928401929184019160010161286f565b50909695505050505050565b600080604083850312156128aa57600080fd5b82356128b5816126ef565b9150602083013580151581146128ca57600080fd5b809150509250929050565b600080600080608085870312156128eb57600080fd5b84356128f6816126ef565b93506020850135612906816126ef565b925060408501359150606085013567ffffffffffffffff81111561292957600080fd5b8501601f8101871361293a57600080fd5b61294987823560208401612570565b91505092959194509250565b6000806040838503121561296857600080fd5b8235612973816126ef565b915060208301356128ca816126ef565b600181811c9082168061299757607f821691505b602082108114156129d1577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008219821115612a1957612a196129d7565b500190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a5657612a566129d7565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082612a9957612a99612a5b565b500490565b600082821015612ab057612ab06129d7565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612b1657612b166129d7565b5060010190565b60008351612b2f81846020880161264d565b835190830190612b4381836020880161264d565b01949350505050565b600082612b5b57612b5b612a5b565b500690565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152612b9f6080830184612679565b9695505050505050565b600060208284031215612bbb57600080fd5b8151611754816124f656fea264697066735822122027ad3d49abad64697c60a580e1e8908c88c43cc52ebccb6e7314deae752045c464736f6c634300080a0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001a496c6c756d696e6174694e465420496c6c756d696e6172696573000000000000000000000000000000000000000000000000000000000000000000000000000c496c6c756d696e61726965730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005668747470733a2f2f696c6c756d696e6174692e6d7970696e6174612e636c6f75642f697066732f516d537271457a4d6762413768434372376e6142347a6464346d46666451724b4c36456e594d486d57456a4e41472f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): IlluminatiNFT Illuminaries
Arg [1] : _symbol (string): Illuminaries
Arg [2] : _initBaseURI (string): https://illuminati.mypinata.cloud/ipfs/QmSrqEzMgbA7hCCr7naB4zdd4mFfdQrKL6EnYMHmWEjNAG/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000001a
Arg [4] : 496c6c756d696e6174694e465420496c6c756d696e6172696573000000000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [6] : 496c6c756d696e61726965730000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000056
Arg [8] : 68747470733a2f2f696c6c756d696e6174692e6d7970696e6174612e636c6f75
Arg [9] : 642f697066732f516d537271457a4d6762413768434372376e6142347a646434
Arg [10] : 6d46666451724b4c36456e594d486d57456a4e41472f00000000000000000000


Deployed Bytecode Sourcemap

190:1806:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2627:40:13;681:10:1;2627:40:13;;;218:42:16;206:55;;;188:74;;2657:9:13;293:2:16;278:18;;271:34;161:18;2627:40:13;;;;;;;190:1806:11;;;;;193:224:4;;;;;;;;;;-1:-1:-1;193:224:4;;;;;:::i;:::-;;:::i;:::-;;;913:14:16;;906:22;888:41;;876:2;861:18;193:224:4;;;;;;;;1599:89:11;;;;;;;;;;-1:-1:-1;1599:89:11;;;;;:::i;:::-;;:::i;:::-;;1672:100:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;2305:221::-;;;;;;;;;;-1:-1:-1;2305:221:3;;;;;:::i;:::-;;:::i;:::-;;;3452:42:16;3440:55;;;3422:74;;3410:2;3395:18;2305:221:3;3276:226:16;1888:411:3;;;;;;;;;;-1:-1:-1;1888:411:3;;;;;:::i;:::-;;:::i;1351:110:4:-;;;;;;;;;;-1:-1:-1;1439:7:4;:14;1351:110;;;4132:25:16;;;4120:2;4105:18;1351:110:4;3986:177:16;3791:600:13;;;;;;;;;;-1:-1:-1;3791:600:13;;;;;:::i;:::-;;:::i;1740:89:11:-;;;;;;;;;;-1:-1:-1;1740:89:11;;;;;:::i;:::-;;:::i;3003:339:3:-;;;;;;;;;;-1:-1:-1;3003:339:3;;;;;:::i;:::-;;:::i;423:499:4:-;;;;;;;;;;-1:-1:-1;423:499:4;;;;;:::i;:::-;;:::i;2752:89:13:-;;;;;;;;;;-1:-1:-1;2822:12:13;;2752:89;;1844:150:11;;;:::i;3348:185:3:-;;;;;;;;;;-1:-1:-1;3348:185:3;;;;;:::i;:::-;;:::i;1467:200:4:-;;;;;;;;;;-1:-1:-1;1467:200:4;;;;;:::i;:::-;;:::i;752:434:11:-;;;;;;;;;;-1:-1:-1;752:434:11;;;;;:::i;:::-;;:::i;1427:239:3:-;;;;;;;;;;-1:-1:-1;1427:239:3;;;;;:::i;:::-;;:::i;294:21:11:-;;;;;;;;;;;;;:::i;1007:414:3:-;;;;;;;;;;-1:-1:-1;1007:414:3;;;;;:::i;:::-;;:::i;1650:94:12:-;;;;;;;;;;;;;:::i;928:417:4:-;;;;;;;;;;-1:-1:-1;928:417:4;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3499:98:13:-;;;;;;;;;;-1:-1:-1;3499:98:13;;;;;:::i;:::-;;:::i;999:87:12:-;;;;;;;;;;-1:-1:-1;1072:6:12;;;;999:87;;1778:104:3;;;;;;;;;;;;;:::i;3306:107:13:-;;;;;;;;;;-1:-1:-1;3306:107:13;;;;;:::i;:::-;3388:18;;3362:7;3388:18;;;:9;:18;;;;;;;3306:107;2532:295:3;;;;;;;;;;-1:-1:-1;2532:295:3;;;;;:::i;:::-;;:::i;3539:328::-;;;;;;;;;;-1:-1:-1;3539:328:3;;;;;:::i;:::-;;:::i;1297:281:11:-;;;;;;;;;;-1:-1:-1;1297:281:11;;;;;:::i;:::-;;:::i;3109:103:13:-;;;;;;;;;;-1:-1:-1;3109:103:13;;;;;:::i;:::-;3189:16;;3163:7;3189:16;;;:7;:16;;;;;;;3109:103;335:30:11;;;;;;;;;;;;;;;;2930:93:13;;;;;;;;;;-1:-1:-1;3002:14:13;;2930:93;;2833:164:3;;;;;;;;;;-1:-1:-1;2833:164:3;;;;;:::i;:::-;2954:25;;;;2930:4;2954:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;2833:164;1899:192:12;;;;;;;;;;-1:-1:-1;1899:192:12;;;;;:::i;:::-;;:::i;193:224:4:-;295:4;319:50;;;334:35;319:50;;:90;;;373:36;397:11;373:23;:36::i;:::-;312:97;193:224;-1:-1:-1;;193:224:4:o;1599:89:11:-;1072:6:12;;1219:23;1072:6;681:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;8744:2:16;1211:68:12;;;8726:21:16;;;8763:18;;;8756:30;8822:34;8802:18;;;8795:62;8874:18;;1211:68:12;;;;;;;;;1663:21:11;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;1599:89:::0;:::o;1672:100:3:-;1726:13;1759:5;1752:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1672:100;:::o;2305:221::-;2381:7;2409:16;2417:7;2409;:16::i;:::-;2401:73;;;;-1:-1:-1;;;2401:73:3;;9547:2:16;2401:73:3;;;9529:21:16;9586:2;9566:18;;;9559:30;9625:34;9605:18;;;9598:62;9696:14;9676:18;;;9669:42;9728:19;;2401:73:3;9345:408:16;2401:73:3;-1:-1:-1;2494:24:3;;;;:15;:24;;;;;;;;;2305:221::o;1888:411::-;1969:13;1985:23;2000:7;1985:14;:23::i;:::-;1969:39;;2033:5;2027:11;;:2;:11;;;;2019:57;;;;-1:-1:-1;;;2019:57:3;;9960:2:16;2019:57:3;;;9942:21:16;9999:2;9979:18;;;9972:30;10038:34;10018:18;;;10011:62;10109:3;10089:18;;;10082:31;10130:19;;2019:57:3;9758:397:16;2019:57:3;681:10:1;2111:21:3;;;;;:62;;-1:-1:-1;2136:37:3;2153:5;681:10:1;2833:164:3;:::i;2136:37::-;2089:168;;;;-1:-1:-1;;;2089:168:3;;10362:2:16;2089:168:3;;;10344:21:16;10401:2;10381:18;;;10374:30;10440:34;10420:18;;;10413:62;10511:26;10491:18;;;10484:54;10555:19;;2089:168:3;10160:420:16;2089:168:3;2270:21;2279:2;2283:7;2270:8;:21::i;:::-;1958:341;1888:411;;:::o;3791:600:13:-;3866:16;;;3885:1;3866:16;;;:7;:16;;;;;;3858:71;;;;-1:-1:-1;;;3858:71:13;;10787:2:16;3858:71:13;;;10769:21:16;10826:2;10806:18;;;10799:30;10865:34;10845:18;;;10838:62;10936:8;10916:18;;;10909:36;10962:19;;3858:71:13;10585:402:16;3858:71:13;3940:21;3988:14;;3964:21;:38;;;;:::i;:::-;4082:18;;;4012:15;4082:18;;;:9;:18;;;;;;;;;4067:12;;4047:7;:16;;;;;;;3940:62;;-1:-1:-1;4012:15:13;;4031:32;;3940:62;4031:32;:::i;:::-;4030:49;;;;:::i;:::-;:70;;;;:::i;:::-;4012:88;-1:-1:-1;4119:12:13;4111:68;;;;-1:-1:-1;;;4111:68:13;;12193:2:16;4111:68:13;;;12175:21:16;12232:2;12212:18;;;12205:30;12271:34;12251:18;;;12244:62;12342:13;12322:18;;;12315:41;12373:19;;4111:68:13;11991:407:16;4111:68:13;4211:18;;;;;;;:9;:18;;;;;;:28;;4232:7;;4211:28;:::i;:::-;4190:18;;;;;;;:9;:18;;;;;:49;4266:14;;:24;;4283:7;;4266:24;:::i;:::-;4249:14;:41;4301:35;4319:7;4328;4301:17;:35::i;:::-;4351:33;;;218:42:16;206:55;;188:74;;293:2;278:18;;271:34;;;4351:33:13;;161:18:16;4351:33:13;;;;;;;3848:543;;3791:600;:::o;1740:89:11:-;1072:6:12;;1219:23;1072:6;681:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;8744:2:16;1211:68:12;;;8726:21:16;;;8763:18;;;8756:30;8822:34;8802:18;;;8795:62;8874:18;;1211:68:12;8542:356:16;1211:68:12;1800:9:11::1;:25:::0;1740:89::o;3003:339:3:-;3198:41;681:10:1;3231:7:3;3198:18;:41::i;:::-;3190:103;;;;-1:-1:-1;;;3190:103:3;;12915:2:16;3190:103:3;;;12897:21:16;12954:2;12934:18;;;12927:30;12993:34;12973:18;;;12966:62;13064:19;13044:18;;;13037:47;13101:19;;3190:103:3;12713:413:16;3190:103:3;3306:28;3316:4;3322:2;3326:7;3306:9;:28::i;423:499:4:-;512:15;556:23;573:5;556:16;:23::i;:::-;548:5;:31;540:66;;;;-1:-1:-1;;;540:66:4;;13333:2:16;540:66:4;;;13315:21:16;13372:2;13352:18;;;13345:30;13411:24;13391:18;;;13384:52;13453:18;;540:66:4;13131:346:16;540:66:4;617:10;643:6;638:226;655:7;:14;651:18;;638:226;;;704:7;712:1;704:10;;;;;;;;:::i;:::-;;;;;;;;;;;;695:19;;;704:10;;695:19;691:162;;;748:5;739;:14;735:102;;;784:1;-1:-1:-1;777:8:4;;-1:-1:-1;777:8:4;735:102;830:7;;;:::i;:::-;;;735:102;671:3;;;:::i;:::-;;;638:226;;;-1:-1:-1;874:40:4;;-1:-1:-1;;;874:40:4;;13333:2:16;874:40:4;;;13315:21:16;13372:2;13352:18;;;13345:30;13411:24;13391:18;;;13384:52;13453:18;;874:40:4;13131:346:16;1844:150:11;1072:6:12;;1219:23;1072:6;681:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;8744:2:16;1211:68:12;;;8726:21:16;;;8763:18;;;8756:30;8822:34;8802:18;;;8795:62;8874:18;;1211:68:12;8542:356:16;1211:68:12;1912:58:11::1;::::0;1894:12:::1;::::0;1920:10:::1;::::0;1944:21:::1;::::0;1894:12;1912:58;1894:12;1912:58;1944:21;1920:10;1912:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1893:77;;;1982:7;1974:16;;;::::0;::::1;;1889:105;1844:150::o:0;3348:185:3:-;3486:39;3503:4;3509:2;3513:7;3486:39;;;;;;;;;;;;:16;:39::i;1467:200:4:-;1542:7;1578:30;1439:7;:14;;1351:110;1578:30;1570:5;:38;1562:74;;;;-1:-1:-1;;;1562:74:4;;14283:2:16;1562:74:4;;;14265:21:16;14322:2;14302:18;;;14295:30;14361:25;14341:18;;;14334:53;14404:18;;1562:74:4;14081:347:16;1562:74:4;-1:-1:-1;1654:5:4;1467:200::o;752:434:11:-;1072:6:12;;1219:23;1072:6;681:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;8744:2:16;1211:68:12;;;8726:21:16;;;8763:18;;;8756:30;8822:34;8802:18;;;8795:62;8874:18;;1211:68:12;8542:356:16;1211:68:12;856:32:11;;::::1;848:41;;;::::0;::::1;;892:6;905:9:::0;917:13:::1;1439:7:4::0;:14;;1351:110;917:13:11::1;905:25;;937:6;933:58;949:16:::0;;::::1;933:58;;;979:5;;985:1;979:8;;;;;;;:::i;:::-;;;;;;;974:13;;;;;:::i;:::-;::::0;-1:-1:-1;967:3:11::1;::::0;::::1;:::i;:::-;;;933:58;;;-1:-1:-1::0;1011:9:11::1;::::0;1002:5:::1;1006:1:::0;1002;:5:::1;:::i;:::-;:18;;993:41;;;::::0;-1:-1:-1;;;993:41:11;;14635:2:16;993:41:11::1;::::0;::::1;14617:21:16::0;14674:1;14654:18;;;14647:29;14712:10;14692:18;;;14685:38;14740:18;;993:41:11::1;14433:331:16::0;993:41:11::1;1037:8;;;1052:6;1048:123;1064:20:::0;;::::1;1048:123;;;1097:6;1093:75;1113:5;;1119:1;1113:8;;;;;;;:::i;:::-;;;;;;;1109:1;:12;1093:75;;;1130:34;1141:9;;1151:1;1141:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;1155:3:::0;::::1;::::0;::::1;:::i;:::-;;;1130:34;;;;;;;;;;;::::0;:9:::1;:34::i;:::-;1123:3;::::0;::::1;:::i;:::-;;;1093:75;;;-1:-1:-1::0;1086:3:11::1;::::0;::::1;:::i;:::-;;;1048:123;;;-1:-1:-1::0;;;;;;;752:434:11:o;1427:239:3:-;1499:7;1519:13;1535:7;1543;1535:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;1570:19:3;1562:73;;;;-1:-1:-1;;;1562:73:3;;14971:2:16;1562:73:3;;;14953:21:16;15010:2;14990:18;;;14983:30;15049:34;15029:18;;;15022:62;15120:11;15100:18;;;15093:39;15149:19;;1562:73:3;14769:405:16;294:21:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1007:414:3:-;1079:7;1107:19;;;1099:74;;;;-1:-1:-1;;;1099:74:3;;15381:2:16;1099:74:3;;;15363:21:16;15420:2;15400:18;;;15393:30;15459:34;15439:18;;;15432:62;15530:12;15510:18;;;15503:40;15560:19;;1099:74:3;15179:406:16;1099:74:3;1223:7;:14;1184:10;;;1248:119;1269:6;1265:1;:10;1248:119;;;1308:7;1316:1;1308:10;;;;;;;;:::i;:::-;;;;;;;;;;;;1299:19;;;1308:10;;1299:19;1295:61;;;1335:7;;;:::i;:::-;;;1295:61;1277:3;;;:::i;:::-;;;1248:119;;;-1:-1:-1;1408:5:3;;1007:414;-1:-1:-1;;;1007:414:3:o;1650:94:12:-;1072:6;;1219:23;1072:6;681:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;8744:2:16;1211:68:12;;;8726:21:16;;;8763:18;;;8756:30;8822:34;8802:18;;;8795:62;8874:18;;1211:68:12;8542:356:16;1211:68:12;1715:21:::1;1733:1;1715:9;:21::i;:::-;1650:94::o:0;928:417:4:-;987:16;1028:23;1045:5;1028:16;:23::i;:::-;1024:1;:27;1016:62;;;;-1:-1:-1;;;1016:62:4;;13333:2:16;1016:62:4;;;13315:21:16;13372:2;13352:18;;;13345:30;13411:24;13391:18;;;13384:52;13453:18;;1016:62:4;13131:346:16;1016:62:4;1089:18;1110:16;1120:5;1110:9;:16::i;:::-;1089:37;;1137:25;1179:10;1165:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1165:25:4;;1137:53;;1206:9;1201:111;1225:10;1221:1;:14;1201:111;;;1271:29;1291:5;1298:1;1271:19;:29::i;:::-;1257:8;1266:1;1257:11;;;;;;;;:::i;:::-;;;;;;;;;;:43;1237:3;;;;:::i;:::-;;;;1201:111;;;-1:-1:-1;1329:8:4;928:417;-1:-1:-1;;;928:417:4:o;3499:98:13:-;3550:7;3576;3584:5;3576:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;3499:98;-1:-1:-1;;3499:98:13:o;1778:104:3:-;1834:13;1867:7;1860:14;;;;;:::i;2532:295::-;2635:24;;;681:10:1;2635:24:3;;2627:62;;;;-1:-1:-1;;;2627:62:3;;15792:2:16;2627:62:3;;;15774:21:16;15831:2;15811:18;;;15804:30;15870:27;15850:18;;;15843:55;15915:18;;2627:62:3;15590:349:16;2627:62:3;681:10:1;2702:32:3;;;;:18;:32;;;;;;;;;:42;;;;;;;;;;;;:53;;;;;;;;;;;;;2771:48;;888:41:16;;;2702:42:3;;681:10:1;2771:48:3;;861:18:16;2771:48:3;;;;;;;2532:295;;:::o;3539:328::-;3714:41;681:10:1;3747:7:3;3714:18;:41::i;:::-;3706:103;;;;-1:-1:-1;;;3706:103:3;;12915:2:16;3706:103:3;;;12897:21:16;12954:2;12934:18;;;12927:30;12993:34;12973:18;;;12966:62;13064:19;13044:18;;;13037:47;13101:19;;3706:103:3;12713:413:16;3706:103:3;3820:39;3834:4;3840:2;3844:7;3853:5;3820:13;:39::i;:::-;3539:328;;;;:::o;1297:281:11:-;1370:13;1408:9;;1397:7;:20;;1389:29;;;;;;1422:28;1453:10;:8;:10::i;:::-;1422:41;;1505:1;1480:14;1474:28;:32;:100;;;;;;;;;;;;;;;;;1533:14;1549:18;:7;:16;:18::i;:::-;1516:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1474:100;1467:107;1297:281;-1:-1:-1;;;1297:281:11:o;1899:192:12:-;1072:6;;1219:23;1072:6;681:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;8744:2:16;1211:68:12;;;8726:21:16;;;8763:18;;;8756:30;8822:34;8802:18;;;8795:62;8874:18;;1211:68:12;8542:356:16;1211:68:12;1988:22:::1;::::0;::::1;1980:73;;;::::0;-1:-1:-1;;;1980:73:12;;16621:2:16;1980:73:12::1;::::0;::::1;16603:21:16::0;16660:2;16640:18;;;16633:30;16699:34;16679:18;;;16672:62;16770:8;16750:18;;;16743:36;16796:19;;1980:73:12::1;16419:402:16::0;1980:73:12::1;2064:19;2074:8;2064:9;:19::i;696:305:3:-:0;798:4;835:40;;;850:25;835:40;;:105;;-1:-1:-1;892:48:3;;;907:33;892:48;835:105;:158;;;-1:-1:-1;886:25:2;871:40;;;;957:36:3;763:155:2;4196::3;4295:7;:14;4261:4;;4285:24;;:58;;;;;4341:1;4313:30;;:7;4321;4313:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;:30;;4278:65;4196:155;-1:-1:-1;;4196:155:3:o;6345:174::-;6420:24;;;;:15;:24;;;;;:29;;;;;;;;;;;;;:24;;6474:23;6420:24;6474:14;:23::i;:::-;6465:46;;;;;;;;;;;;6345:174;;:::o;2065:317:0:-;2180:6;2155:21;:31;;2147:73;;;;-1:-1:-1;;;2147:73:0;;17028:2:16;2147:73:0;;;17010:21:16;17067:2;17047:18;;;17040:30;17106:31;17086:18;;;17079:59;17155:18;;2147:73:0;16826:353:16;2147:73:0;2234:12;2252:9;:14;;2274:6;2252:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2233:52;;;2304:7;2296:78;;;;-1:-1:-1;;;2296:78:0;;17386:2:16;2296:78:0;;;17368:21:16;17425:2;17405:18;;;17398:30;17464:34;17444:18;;;17437:62;17535:28;17515:18;;;17508:56;17581:19;;2296:78:0;17184:422:16;4354:348:3;4447:4;4472:16;4480:7;4472;:16::i;:::-;4464:73;;;;-1:-1:-1;;;4464:73:3;;17813:2:16;4464:73:3;;;17795:21:16;17852:2;17832:18;;;17825:30;17891:34;17871:18;;;17864:62;17962:14;17942:18;;;17935:42;17994:19;;4464:73:3;17611:408:16;4464:73:3;4548:13;4564:23;4579:7;4564:14;:23::i;:::-;4548:39;;4617:5;4606:16;;:7;:16;;;:51;;;;4650:7;4626:31;;:20;4638:7;4626:11;:20::i;:::-;:31;;;4606:51;:87;;;-1:-1:-1;2954:25:3;;;;2930:4;2954:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;4661:32;4598:96;4354:348;-1:-1:-1;;;;4354:348:3:o;5826:516::-;5985:4;5958:31;;:23;5973:7;5958:14;:23::i;:::-;:31;;;5950:85;;;;-1:-1:-1;;;5950:85:3;;18226:2:16;5950:85:3;;;18208:21:16;18265:2;18245:18;;;18238:30;18304:34;18284:18;;;18277:62;18375:11;18355:18;;;18348:39;18404:19;;5950:85:3;18024:405:16;5950:85:3;6054:16;;;6046:65;;;;-1:-1:-1;;;6046:65:3;;18636:2:16;6046:65:3;;;18618:21:16;18675:2;18655:18;;;18648:30;18714:34;18694:18;;;18687:62;18785:6;18765:18;;;18758:34;18809:19;;6046:65:3;18434:400:16;6046:65:3;6228:29;6245:1;6249:7;6228:8;:29::i;:::-;6287:2;6268:7;6276;6268:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;;;;;;;;;;6307:27;;6326:7;;6307:27;;;;;;;;;;6268:16;6307:27;5826:516;;;:::o;4818:321::-;4948:18;4954:2;4958:7;4948:5;:18::i;:::-;4999:54;5030:1;5034:2;5038:7;5047:5;4999:22;:54::i;:::-;4977:154;;;;-1:-1:-1;;;4977:154:3;;19041:2:16;4977:154:3;;;19023:21:16;19080:2;19060:18;;;19053:30;19119:34;19099:18;;;19092:62;19190:20;19170:18;;;19163:48;19228:19;;4977:154:3;18839:414:16;2099:173:12;2174:6;;;;2191:17;;;;;;;;;;;2224:40;;2174:6;;;2191:17;2174:6;;2224:40;;2155:16;;2224:40;2144:128;2099:173;:::o;3878:315:3:-;4035:28;4045:4;4051:2;4055:7;4035:9;:28::i;:::-;4082:48;4105:4;4111:2;4115:7;4124:5;4082:22;:48::i;:::-;4074:111;;;;-1:-1:-1;;;4074:111:3;;19041:2:16;4074:111:3;;;19023:21:16;19080:2;19060:18;;;19053:30;19119:34;19099:18;;;19092:62;19190:20;19170:18;;;19163:48;19228:19;;4074:111:3;18839:414:16;1206:88:11;1257:13;1283:7;1276:14;;;;;:::i;288:723:15:-;344:13;565:10;561:53;;-1:-1:-1;;592:10:15;;;;;;;;;;;;;;;;;;288:723::o;561:53::-;639:5;624:12;680:78;687:9;;680:78;;713:8;;;;:::i;:::-;;-1:-1:-1;736:10:15;;-1:-1:-1;744:2:15;736:10;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;790:17:15;;768:39;;818:154;825:10;;818:154;;852:11;862:1;852:11;;:::i;:::-;;-1:-1:-1;921:10:15;929:2;921:5;:10;:::i;:::-;908:24;;:2;:24;:::i;:::-;895:39;;878:6;885;878:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;949:11:15;958:2;949:11;;:::i;:::-;;;818:154;;5142:346:3;5222:16;;;5214:61;;;;-1:-1:-1;;;5214:61:3;;19577:2:16;5214:61:3;;;19559:21:16;;;19596:18;;;19589:30;19655:34;19635:18;;;19628:62;19707:18;;5214:61:3;19375:356:16;5214:61:3;5295:16;5303:7;5295;:16::i;:::-;5294:17;5286:58;;;;-1:-1:-1;;;5286:58:3;;19938:2:16;5286:58:3;;;19920:21:16;19977:2;19957:18;;;19950:30;20016;19996:18;;;19989:58;20064:18;;5286:58:3;19736:352:16;5286:58:3;5413:7;:16;;;;;;;-1:-1:-1;5413:16:3;;;;;;;;;;;;;;;;;;5447:33;;5472:7;;-1:-1:-1;5447:33:3;;-1:-1:-1;;5447:33:3;5142:346;;:::o;6522:799::-;6677:4;6698:13;;;1066:20:0;1114:8;6694:620:3;;6734:72;;;;;:36;;;;;;:72;;681:10:1;;6785:4:3;;6791:7;;6800:5;;6734:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6734:72:3;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;6730:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6976:13:3;;6972:272;;7019:60;;-1:-1:-1;;;7019:60:3;;19041:2:16;7019:60:3;;;19023:21:16;19080:2;19060:18;;;19053:30;19119:34;19099:18;;;19092:62;19190:20;19170:18;;;19163:48;19228:19;;7019:60:3;18839:414:16;6972:272:3;7194:6;7188:13;7179:6;7175:2;7171:15;7164:38;6730:529;6857:51;;6867:41;6857:51;;-1:-1:-1;6850:58:3;;6694:620;-1:-1:-1;7298:4:3;6522:799;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;316:177:16;401:66;394:5;390:78;383:5;380:89;370:117;;483:1;480;473:12;498:245;556:6;609:2;597:9;588:7;584:23;580:32;577:52;;;625:1;622;615:12;577:52;664:9;651:23;683:30;707:5;683:30;:::i;940:184::-;992:77;989:1;982:88;1089:4;1086:1;1079:15;1113:4;1110:1;1103:15;1129:691;1194:5;1224:18;1265:2;1257:6;1254:14;1251:40;;;1271:18;;:::i;:::-;1405:2;1399:9;1471:2;1459:15;;1310:66;1455:24;;;1481:2;1451:33;1447:42;1435:55;;;1505:18;;;1525:22;;;1502:46;1499:72;;;1551:18;;:::i;:::-;1591:10;1587:2;1580:22;1620:6;1611:15;;1650:6;1642;1635:22;1690:3;1681:6;1676:3;1672:16;1669:25;1666:45;;;1707:1;1704;1697:12;1666:45;1757:6;1752:3;1745:4;1737:6;1733:17;1720:44;1812:1;1805:4;1796:6;1788;1784:19;1780:30;1773:41;;;;1129:691;;;;;:::o;1825:451::-;1894:6;1947:2;1935:9;1926:7;1922:23;1918:32;1915:52;;;1963:1;1960;1953:12;1915:52;2003:9;1990:23;2036:18;2028:6;2025:30;2022:50;;;2068:1;2065;2058:12;2022:50;2091:22;;2144:4;2136:13;;2132:27;-1:-1:-1;2122:55:16;;2173:1;2170;2163:12;2122:55;2196:74;2262:7;2257:2;2244:16;2239:2;2235;2231:11;2196:74;:::i;2281:258::-;2353:1;2363:113;2377:6;2374:1;2371:13;2363:113;;;2453:11;;;2447:18;2434:11;;;2427:39;2399:2;2392:10;2363:113;;;2494:6;2491:1;2488:13;2485:48;;;-1:-1:-1;;2529:1:16;2511:16;;2504:27;2281:258::o;2544:317::-;2586:3;2624:5;2618:12;2651:6;2646:3;2639:19;2667:63;2723:6;2716:4;2711:3;2707:14;2700:4;2693:5;2689:16;2667:63;:::i;:::-;2775:2;2763:15;2780:66;2759:88;2750:98;;;;2850:4;2746:109;;2544:317;-1:-1:-1;;2544:317:16:o;2866:220::-;3015:2;3004:9;2997:21;2978:4;3035:45;3076:2;3065:9;3061:18;3053:6;3035:45;:::i;3091:180::-;3150:6;3203:2;3191:9;3182:7;3178:23;3174:32;3171:52;;;3219:1;3216;3209:12;3171:52;-1:-1:-1;3242:23:16;;3091:180;-1:-1:-1;3091:180:16:o;3507:154::-;3593:42;3586:5;3582:54;3575:5;3572:65;3562:93;;3651:1;3648;3641:12;3666:315;3734:6;3742;3795:2;3783:9;3774:7;3770:23;3766:32;3763:52;;;3811:1;3808;3801:12;3763:52;3850:9;3837:23;3869:31;3894:5;3869:31;:::i;:::-;3919:5;3971:2;3956:18;;;;3943:32;;-1:-1:-1;;;3666:315:16:o;4168:255::-;4235:6;4288:2;4276:9;4267:7;4263:23;4259:32;4256:52;;;4304:1;4301;4294:12;4256:52;4343:9;4330:23;4362:31;4387:5;4362:31;:::i;4428:456::-;4505:6;4513;4521;4574:2;4562:9;4553:7;4549:23;4545:32;4542:52;;;4590:1;4587;4580:12;4542:52;4629:9;4616:23;4648:31;4673:5;4648:31;:::i;:::-;4698:5;-1:-1:-1;4755:2:16;4740:18;;4727:32;4768:33;4727:32;4768:33;:::i;:::-;4428:456;;4820:7;;-1:-1:-1;;;4874:2:16;4859:18;;;;4846:32;;4428:456::o;4889:367::-;4952:8;4962:6;5016:3;5009:4;5001:6;4997:17;4993:27;4983:55;;5034:1;5031;5024:12;4983:55;-1:-1:-1;5057:20:16;;5100:18;5089:30;;5086:50;;;5132:1;5129;5122:12;5086:50;5169:4;5161:6;5157:17;5145:29;;5229:3;5222:4;5212:6;5209:1;5205:14;5197:6;5193:27;5189:38;5186:47;5183:67;;;5246:1;5243;5236:12;5183:67;4889:367;;;;;:::o;5261:773::-;5383:6;5391;5399;5407;5460:2;5448:9;5439:7;5435:23;5431:32;5428:52;;;5476:1;5473;5466:12;5428:52;5516:9;5503:23;5545:18;5586:2;5578:6;5575:14;5572:34;;;5602:1;5599;5592:12;5572:34;5641:70;5703:7;5694:6;5683:9;5679:22;5641:70;:::i;:::-;5730:8;;-1:-1:-1;5615:96:16;-1:-1:-1;5818:2:16;5803:18;;5790:32;;-1:-1:-1;5834:16:16;;;5831:36;;;5863:1;5860;5853:12;5831:36;;5902:72;5966:7;5955:8;5944:9;5940:24;5902:72;:::i;:::-;5261:773;;;;-1:-1:-1;5993:8:16;-1:-1:-1;;;;5261:773:16:o;6291:632::-;6462:2;6514:21;;;6584:13;;6487:18;;;6606:22;;;6433:4;;6462:2;6685:15;;;;6659:2;6644:18;;;6433:4;6728:169;6742:6;6739:1;6736:13;6728:169;;;6803:13;;6791:26;;6872:15;;;;6837:12;;;;6764:1;6757:9;6728:169;;;-1:-1:-1;6914:3:16;;6291:632;-1:-1:-1;;;;;;6291:632:16:o;6928:416::-;6993:6;7001;7054:2;7042:9;7033:7;7029:23;7025:32;7022:52;;;7070:1;7067;7060:12;7022:52;7109:9;7096:23;7128:31;7153:5;7128:31;:::i;:::-;7178:5;-1:-1:-1;7235:2:16;7220:18;;7207:32;7277:15;;7270:23;7258:36;;7248:64;;7308:1;7305;7298:12;7248:64;7331:7;7321:17;;;6928:416;;;;;:::o;7349:795::-;7444:6;7452;7460;7468;7521:3;7509:9;7500:7;7496:23;7492:33;7489:53;;;7538:1;7535;7528:12;7489:53;7577:9;7564:23;7596:31;7621:5;7596:31;:::i;:::-;7646:5;-1:-1:-1;7703:2:16;7688:18;;7675:32;7716:33;7675:32;7716:33;:::i;:::-;7768:7;-1:-1:-1;7822:2:16;7807:18;;7794:32;;-1:-1:-1;7877:2:16;7862:18;;7849:32;7904:18;7893:30;;7890:50;;;7936:1;7933;7926:12;7890:50;7959:22;;8012:4;8004:13;;8000:27;-1:-1:-1;7990:55:16;;8041:1;8038;8031:12;7990:55;8064:74;8130:7;8125:2;8112:16;8107:2;8103;8099:11;8064:74;:::i;:::-;8054:84;;;7349:795;;;;;;;:::o;8149:388::-;8217:6;8225;8278:2;8266:9;8257:7;8253:23;8249:32;8246:52;;;8294:1;8291;8284:12;8246:52;8333:9;8320:23;8352:31;8377:5;8352:31;:::i;:::-;8402:5;-1:-1:-1;8459:2:16;8444:18;;8431:32;8472:33;8431:32;8472:33;:::i;8903:437::-;8982:1;8978:12;;;;9025;;;9046:61;;9100:4;9092:6;9088:17;9078:27;;9046:61;9153:2;9145:6;9142:14;9122:18;9119:38;9116:218;;;9190:77;9187:1;9180:88;9291:4;9288:1;9281:15;9319:4;9316:1;9309:15;9116:218;;8903:437;;;:::o;10992:184::-;11044:77;11041:1;11034:88;11141:4;11138:1;11131:15;11165:4;11162:1;11155:15;11181:128;11221:3;11252:1;11248:6;11245:1;11242:13;11239:39;;;11258:18;;:::i;:::-;-1:-1:-1;11294:9:16;;11181:128::o;11314:228::-;11354:7;11480:1;11412:66;11408:74;11405:1;11402:81;11397:1;11390:9;11383:17;11379:105;11376:131;;;11487:18;;:::i;:::-;-1:-1:-1;11527:9:16;;11314:228::o;11547:184::-;11599:77;11596:1;11589:88;11696:4;11693:1;11686:15;11720:4;11717:1;11710:15;11736:120;11776:1;11802;11792:35;;11807:18;;:::i;:::-;-1:-1:-1;11841:9:16;;11736:120::o;11861:125::-;11901:4;11929:1;11926;11923:8;11920:34;;;11934:18;;:::i;:::-;-1:-1:-1;11971:9:16;;11861:125::o;13482:184::-;13534:77;13531:1;13524:88;13631:4;13628:1;13621:15;13655:4;13652:1;13645:15;13671:195;13710:3;13741:66;13734:5;13731:77;13728:103;;;13811:18;;:::i;:::-;-1:-1:-1;13858:1:16;13847:13;;13671:195::o;15944:470::-;16123:3;16161:6;16155:13;16177:53;16223:6;16218:3;16211:4;16203:6;16199:17;16177:53;:::i;:::-;16293:13;;16252:16;;;;16315:57;16293:13;16252:16;16349:4;16337:17;;16315:57;:::i;:::-;16388:20;;15944:470;-1:-1:-1;;;;15944:470:16:o;19258:112::-;19290:1;19316;19306:35;;19321:18;;:::i;:::-;-1:-1:-1;19355:9:16;;19258:112::o;20093:512::-;20287:4;20316:42;20397:2;20389:6;20385:15;20374:9;20367:34;20449:2;20441:6;20437:15;20432:2;20421:9;20417:18;20410:43;;20489:6;20484:2;20473:9;20469:18;20462:34;20532:3;20527:2;20516:9;20512:18;20505:31;20553:46;20594:3;20583:9;20579:19;20571:6;20553:46;:::i;:::-;20545:54;20093:512;-1:-1:-1;;;;;;20093:512:16:o;20610:249::-;20679:6;20732:2;20720:9;20711:7;20707:23;20703:32;20700:52;;;20748:1;20745;20738:12;20700:52;20780:9;20774:16;20799:30;20823:5;20799:30;:::i

Swarm Source

ipfs://27ad3d49abad64697c60a580e1e8908c88c43cc52ebccb6e7314deae752045c4
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.