ETH Price: $3,087.96 (-3.77%)
Gas: 6 Gwei

RenArt (RENA)
 

Overview

TokenID

1024

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
RenArt

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 50 runs

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

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

File 2 of 17 : PaymentSplitter.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol)

pragma solidity ^0.8.0;

import "../token/ERC20/utils/SafeERC20.sol";
import "../utils/Address.sol";
import "../utils/Context.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.
 *
 * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and
 * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you
 * to run tests before sending real value to this contract.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event ERC20PaymentReleased(IERC20 indexed token, 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;

    mapping(IERC20 => uint256) private _erc20TotalReleased;
    mapping(IERC20 => mapping(address => uint256)) private _erc20Released;

    /**
     * @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 total amount of `token` already released. `token` should be the address of an IERC20
     * contract.
     */
    function totalReleased(IERC20 token) public view returns (uint256) {
        return _erc20TotalReleased[token];
    }

    /**
     * @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 amount of `token` tokens already released to a payee. `token` should be the address of an
     * IERC20 contract.
     */
    function released(IERC20 token, address account) public view returns (uint256) {
        return _erc20Released[token][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 = _pendingPayment(account, totalReceived, released(account));

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

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

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

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

        uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token);
        uint256 payment = _pendingPayment(account, totalReceived, released(token, account));

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

        _erc20Released[token][account] += payment;
        _erc20TotalReleased[token] += payment;

        SafeERC20.safeTransfer(token, account, payment);
        emit ERC20PaymentReleased(token, account, payment);
    }

    /**
     * @dev internal logic for computing the pending payment of an `account` given the token historical balances and
     * already released amounts.
     */
    function _pendingPayment(
        address account,
        uint256 totalReceived,
        uint256 alreadyReleased
    ) private view returns (uint256) {
        return (totalReceived * _shares[account]) / _totalShares - alreadyReleased;
    }

    /**
     * @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 3 of 17 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 4 of 17 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 5 of 17 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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 6 of 17 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 7 of 17 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

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 8 of 17 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

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 10 of 17 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 11 of 17 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 12 of 17 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 13 of 17 : draft-EIP712.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/draft-EIP712.sol)

pragma solidity ^0.8.0;

import "./ECDSA.sol";

/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
 * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
 * they need in their contracts using a combination of `abi.encode` and `keccak256`.
 *
 * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
 * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
 * ({_hashTypedDataV4}).
 *
 * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
 * the chain id to protect against replay attacks on an eventual fork of the chain.
 *
 * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
 * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
 *
 * _Available since v3.4._
 */
abstract contract EIP712 {
    /* solhint-disable var-name-mixedcase */
    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
    uint256 private immutable _CACHED_CHAIN_ID;
    address private immutable _CACHED_THIS;

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;

    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        bytes32 typeHash = keccak256(
            "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
        );
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
        _CACHED_THIS = address(this);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
        }
    }

    function _buildDomainSeparator(
        bytes32 typeHash,
        bytes32 nameHash,
        bytes32 versionHash
    ) private view returns (bytes32) {
        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }
}

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 15 of 17 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 16 of 17 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creators: locationtba.eth, 2pmflow.eth

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

  // Mapping from token ID to ownership details
  // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
  mapping(uint256 => TokenOwnership) private _ownerships;

  // Mapping owner address to address data
  mapping(address => AddressData) private _addressData;

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

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

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_
  ) {
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
  }

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

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

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

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

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

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
      TokenOwnership memory ownership = _ownerships[curr];
      if (ownership.addr != address(0)) {
        return ownership;
      }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

  /**
   * @dev See {IERC721-ownerOf}.
   */
  function ownerOf(uint256 tokenId) public view override returns (address) {
    return ownershipOf(tokenId).addr;
  }

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: transfer to non ERC721Receiver implementer"
    );
  }

  /**
   * @dev Returns whether `tokenId` exists.
   *
   * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
   *
   * Tokens start existing when they are minted (`_mint`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

  function _safeMint(address to, uint256 quantity) internal {
    _safeMint(to, quantity, "");
  }

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

    _beforeTokenTransfers(address(0), to, startTokenId, quantity);

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - `tokenId` token must be owned by `from`.
   *
   * Emits a {Transfer} event.
   */
  function _transfer(
    address from,
    address to,
    uint256 tokenId
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

    bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
      getApproved(tokenId) == _msgSender() ||
      isApprovedForAll(prevOwnership.addr, _msgSender()));

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

    emit Transfer(from, to, tokenId);
    _afterTokenTransfers(from, to, tokenId, 1);
  }

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > currentIndex - 1) {
      endIndex = currentIndex - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

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

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
   * transferred to `to`.
   * - When `from` is zero, `tokenId` will be minted for `to`.
   */
  function _beforeTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}

  /**
   * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
   * minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - when `from` and `to` are both non-zero.
   * - `from` and `to` are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}

File 17 of 17 : RenArt.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
pragma abicoder v2; // required to accept structs as function parameters

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol";
import "@openzeppelin/contracts/finance/PaymentSplitter.sol";
import "./ERC721A.sol";

//////////////////////////////////////////////////////
//                                                  //
// We are Blackchain.                               //
// [email protected]                         //
//                                                  //
//////////////////////////////////////////////////////

/**
 @title Renaissance Art NFT 
 @author Jeffrey Lin, Justa Liang
 */
contract RenArt is ERC721A, Ownable, EIP712, PaymentSplitter {
    using Address for address;

    // Stage info (packed)
    struct StageInfo {
        bool publicStage;
        uint8 stageId;
        uint16 maxSupply;
        uint32 startTime;
        uint32 endTime;
        uint160 mintPrice;
    }
    StageInfo public stageInfo;

    // Maximum limit of tokens that can ever exist
    uint16 constant MAX_SUPPLY = 9500;

    // Maximum reserve
    uint16 constant MAX_RESERVE = 500;

    // Reserved
    uint256 private _reservedCount;

    // Maximum limit of mint amount per time in public stage
    uint8 constant MAX_MINT_PER_TIME = 2;

    // The base link that leads to the image / video of the token
    string private _baseTokenURI;

    struct MinterInfo {
        uint8 nonce;
        uint8 stageId;
        uint240 remain;
    }
    // Stage ID check
    mapping(address => MinterInfo) public whitelistInfo;

    // voucher for user to redeem
    struct NFTVoucher {
        address redeemer; // specify user to redeem this voucher
        uint8 stageId; // ID to check if voucher has been redeemed
        uint8 amount; // max amount to mint in stage
        uint8 nonce; // nonce to make different voucher
        uint72 price; // mint price
    }

    /// @dev Setup ERC721A, EIP712 and first stage info
    constructor(
        StageInfo memory _initStageInfo,
        string memory _initBaseURI,
        address[] memory payees,
        uint256[] memory shares
    )
        ERC721A("RenArt", "RENA", 5)
        EIP712("RenArt-Voucher", "1")
        PaymentSplitter(payees, shares)
    {
        _baseTokenURI = _initBaseURI;
        stageInfo = _initStageInfo;
        _reservedCount = 0;
    }

    /// @notice Whitelist mint using the voucher
    function whitelistMint(
        NFTVoucher calldata voucher,
        bytes calldata signature,
        uint8 amount
    ) external payable {
        MinterInfo storage minterInfo = whitelistInfo[_msgSender()];
        // make sure voucher is valid
        _verify(voucher, signature);
        // if haven't redeemed then redeem first
        if (voucher.nonce > minterInfo.nonce) {
            // update minter info
            minterInfo.stageId = voucher.stageId;
            minterInfo.remain = voucher.amount;
            minterInfo.nonce = voucher.nonce;
        }
        // check stage
        require(voucher.stageId == stageInfo.stageId, "Wrong stage");
        // check time
        require(block.timestamp >= stageInfo.startTime, "Sale not started");
        require(block.timestamp <= stageInfo.endTime, "Sale already ended");
        // check if enough remain
        require(amount <= minterInfo.remain, "Not enough remain");
        // check if exceed
        require(
            totalSupply() + amount <= stageInfo.maxSupply,
            "Exceed stage max supply"
        );
        // check fund
        require(msg.value >= voucher.price * amount, "Not enough fund");
        super._safeMint(_msgSender(), amount);
        minterInfo.remain -= amount;
    }

    /// @notice Public mint
    function publicMint(uint8 amount) external payable {
        // check public mint stage
        require(stageInfo.publicStage, "Public mint not started");
        // check time
        require(block.timestamp >= stageInfo.startTime, "Sale not started");
        require(block.timestamp <= stageInfo.endTime, "Sale already ended");
        // check if exceed max per time
        require(amount <= MAX_MINT_PER_TIME, "Exceed max mint amount");
        // check if exceed total supply
        require(totalSupply() + amount <= MAX_SUPPLY, "Exceed total supply");
        // check fund
        require(msg.value >= stageInfo.mintPrice * amount, "Not enough fund");
        // batch mint
        super._safeMint(_msgSender(), amount);
    }

    /// @dev Verify voucher
    function _verify(NFTVoucher calldata voucher, bytes calldata signature)
        private
        view
    {
        bytes32 digest = _hashTypedDataV4(
            keccak256(
                abi.encode(
                    keccak256(
                        "NFTVoucher(address redeemer,uint8 stageId,uint8 amount,uint8 nonce,uint72 price)"
                    ),
                    _msgSender(),
                    voucher.stageId,
                    voucher.amount,
                    voucher.nonce,
                    voucher.price
                )
            )
        );
        require(
            owner() == ECDSA.recover(digest, signature),
            "invalid or unauthorized"
        );
    }

    /// @dev Reserve NFT
    function reserve(address to, uint256 amount) external onlyOwner {
        require(_reservedCount + amount <= MAX_RESERVE, "Exceed reserve max");
        super._safeMint(to, amount);
        _reservedCount += amount;
    }

    /// @dev Go to next stage
    function nextStage(StageInfo memory _stageInfo) external onlyOwner {
        require(
            _stageInfo.stageId >= stageInfo.stageId,
            "Cannot set to previous stage"
        );
        require(_stageInfo.maxSupply <= MAX_SUPPLY, "Set exceed max supply");
        require(_stageInfo.stageId <= 3, "Can only have three stage");
        stageInfo = _stageInfo;
    }

    /// @dev Set new baseURI
    function setBaseURI(string memory baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

    /// @dev override _baseURI()
    function _baseURI() internal view override returns (string memory) {
        return _baseTokenURI;
    }
}

Settings
{
  "evmVersion": "istanbul",
  "libraries": {},
  "metadata": {
    "bytecodeHash": "ipfs",
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": true,
    "runs": 50
  },
  "remappings": [],
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"components":[{"internalType":"bool","name":"publicStage","type":"bool"},{"internalType":"uint8","name":"stageId","type":"uint8"},{"internalType":"uint16","name":"maxSupply","type":"uint16"},{"internalType":"uint32","name":"startTime","type":"uint32"},{"internalType":"uint32","name":"endTime","type":"uint32"},{"internalType":"uint160","name":"mintPrice","type":"uint160"}],"internalType":"struct RenArt.StageInfo","name":"_initStageInfo","type":"tuple"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"address[]","name":"payees","type":"address[]"},{"internalType":"uint256[]","name":"shares","type":"uint256[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"bool","name":"publicStage","type":"bool"},{"internalType":"uint8","name":"stageId","type":"uint8"},{"internalType":"uint16","name":"maxSupply","type":"uint16"},{"internalType":"uint32","name":"startTime","type":"uint32"},{"internalType":"uint32","name":"endTime","type":"uint32"},{"internalType":"uint160","name":"mintPrice","type":"uint160"}],"internalType":"struct RenArt.StageInfo","name":"_stageInfo","type":"tuple"}],"name":"nextStage","outputs":[],"stateMutability":"nonpayable","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":"uint8","name":"amount","type":"uint8"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","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":[],"name":"stageInfo","outputs":[{"internalType":"bool","name":"publicStage","type":"bool"},{"internalType":"uint8","name":"stageId","type":"uint8"},{"internalType":"uint16","name":"maxSupply","type":"uint16"},{"internalType":"uint32","name":"startTime","type":"uint32"},{"internalType":"uint32","name":"endTime","type":"uint32"},{"internalType":"uint160","name":"mintPrice","type":"uint160"}],"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":"","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":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","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":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistInfo","outputs":[{"internalType":"uint8","name":"nonce","type":"uint8"},{"internalType":"uint8","name":"stageId","type":"uint8"},{"internalType":"uint240","name":"remain","type":"uint240"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"redeemer","type":"address"},{"internalType":"uint8","name":"stageId","type":"uint8"},{"internalType":"uint8","name":"amount","type":"uint8"},{"internalType":"uint8","name":"nonce","type":"uint8"},{"internalType":"uint72","name":"price","type":"uint72"}],"internalType":"struct RenArt.NFTVoucher","name":"voucher","type":"tuple"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6101606040526000805560006007553480156200001b57600080fd5b506040516200492b3803806200492b8339810160408190526200003e916200076d565b81816040518060400160405280600e81526020016d2932b720b93a16ab37bab1b432b960911b815250604051806040016040528060018152602001603160f81b8152506040518060400160405280600681526020016514995b905c9d60d21b8152506040518060400160405280600481526020016352454e4160e01b815250600560008111620000eb5760405162461bcd60e51b8152600401620000e2906200093d565b60405180910390fd5b8251620001009060019060208601906200050a565b508151620001169060029060208501906200050a565b50608052506200013190506200012b62000346565b6200034a565b81516020808401919091208251918301919091206101008290526101208190524660c0527f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f620001838184846200039c565b60a0523060601b60e05261014052505082518451149150620001bb90505760405162461bcd60e51b8152600401620000e29062000984565b6000825111620001df5760405162461bcd60e51b8152600401620000e29062000a21565b60005b825181101562000263576200024e8382815181106200021157634e487b7160e01b600052603260045260246000fd5b60200260200101518383815181106200023a57634e487b7160e01b600052603260045260246000fd5b6020026020010151620003d860201b60201c565b806200025a8162000b39565b915050620001e2565b505083516200027b915060129060208601906200050a565b5050825160108054602086015160408701516060880151608089015160a09099015160ff199094169515159590951761ff00191661010060ff909316929092029190911763ffff000019166201000061ffff909216919091021763ffffffff60201b191664010000000063ffffffff948516021763ffffffff60401b1916680100000000000000009390961692909202949094176001600160601b03166c010000000000000000000000006001600160a01b0390921691909102179092555050600060115562000b9c565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008383834630604051602001620003b9959493929190620008c5565b6040516020818303038152906040528051906020012090509392505050565b6001600160a01b038216620004015760405162461bcd60e51b8152600401620000e290620008f1565b60008111620004245760405162461bcd60e51b8152600401620000e29062000a58565b6001600160a01b0382166000908152600b6020526040902054156200045d5760405162461bcd60e51b8152600401620000e290620009d6565b600d8054600181019091557fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb50180546001600160a01b0319166001600160a01b0384169081179091556000908152600b60205260409020819055600954620004c790829062000ae1565b6009556040517f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac90620004fe9084908490620008ac565b60405180910390a15050565b828054620005189062000afc565b90600052602060002090601f0160209004810192826200053c576000855562000587565b82601f106200055757805160ff191683800117855562000587565b8280016001018555821562000587579182015b82811115620005875782518255916020019190600101906200056a565b506200059592915062000599565b5090565b5b808211156200059557600081556001016200059a565b600082601f830112620005c1578081fd5b81516020620005da620005d48362000abb565b62000a8f565b8281528181019085830183850287018401881015620005f7578586fd5b855b85811015620006225781516200060f8162000b83565b84529284019290840190600101620005f9565b5090979650505050505050565b600082601f83011262000640578081fd5b8151602062000653620005d48362000abb565b828152818101908583018385028701840188101562000670578586fd5b855b85811015620006225781518452928401929084019060010162000672565b600082601f830112620006a1578081fd5b81516001600160401b03811115620006bd57620006bd62000b6d565b6020620006d3601f8301601f1916820162000a8f565b8281528582848701011115620006e7578384fd5b835b8381101562000706578581018301518282018401528201620006e9565b838111156200071757848385840101525b5095945050505050565b80516200072e8162000b83565b919050565b805161ffff811681146200072e57600080fd5b805163ffffffff811681146200072e57600080fd5b805160ff811681146200072e57600080fd5b60008060008084860361012081121562000785578485fd5b60c081121562000793578485fd5b5060405160c081016001600160401b038082118383101715620007ba57620007ba62000b6d565b81604052875191508115158214620007d0578687fd5b818352620007e1602089016200075b565b6020840152620007f46040890162000733565b6040840152620008076060890162000746565b60608401526200081a6080890162000746565b60808401526200082d60a0890162000721565b60a084015260c08801519296508083111562000847578586fd5b6200085589848a0162000690565b955060e08801519250808311156200086b578485fd5b6200087989848a01620005b0565b945061010088015192508083111562000890578384fd5b5050620008a0878288016200062f565b91505092959194509250565b6001600160a01b03929092168252602082015260400190565b9485526020850193909352604084019190915260608301526001600160a01b0316608082015260a00190565b6020808252602c908201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060408201526b7a65726f206164647265737360a01b606082015260800190565b60208082526027908201527f455243373231413a206d61782062617463682073697a65206d757374206265206040820152666e6f6e7a65726f60c81b606082015260800190565b60208082526032908201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726040820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960408201526a206861732073686172657360a81b606082015260800190565b6020808252601a908201527f5061796d656e7453706c69747465723a206e6f20706179656573000000000000604082015260600190565b6020808252601d908201527f5061796d656e7453706c69747465723a20736861726573206172652030000000604082015260600190565b6040518181016001600160401b038111828210171562000ab35762000ab362000b6d565b604052919050565b60006001600160401b0382111562000ad75762000ad762000b6d565b5060209081020190565b6000821982111562000af75762000af762000b57565b500190565b60028104600182168062000b1157607f821691505b6020821081141562000b3357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141562000b505762000b5062000b57565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811462000b9957600080fd5b50565b60805160a05160c05160e05160601c610100516101205161014051613d2362000c08600039600061242d0152600061246f0152600061244e015260006123b0015260006123da01526000612404015260008181611bb801528181611be201526121400152613d236000f3fe6080604052600436106101d35760003560e01c8063858e83b5116100f8578063c87b56dd11610090578063c87b56dd14610585578063cc47a40b146105a5578063ce7c2ac2146105c5578063d7224ba0146105e5578063d79779b2146105fa578063e33b7de31461061a578063e8bdd77f1461062f578063e985e9c514610642578063f2fde38b146106625761021a565b8063858e83b51461047957806386a12b7e1461048c5780638b83209b146104ac5780638da5cb5b146104cc57806395d89b41146104e15780639852595c146104f6578063a22cb46514610516578063b88d4fde14610536578063c06c7d49146105565761021a565b80633a98ef391161016b5780633a98ef391461036f578063406072a91461038457806342842e0e146103a457806348b75044146103c45780634f6ccce7146103e457806355f804b3146104045780636352211e1461042457806370a0823114610444578063715018a6146104645761021a565b806301ffc9a71461021f57806306fdde0314610255578063081812fc14610277578063095ea7b3146102a457806318160ddd146102c657806319165587146102e857806323b872dd146103085780632bf87116146103285780632f745c591461034f5761021a565b3661021a577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770610201610682565b34604051610210929190612e53565b60405180910390a1005b600080fd5b34801561022b57600080fd5b5061023f61023a366004612b71565b610687565b60405161024c9190612ea9565b60405180910390f35b34801561026157600080fd5b5061026a6106ea565b60405161024c9190612f81565b34801561028357600080fd5b50610297610292366004612d3c565b61077c565b60405161024c9190612e3f565b3480156102b057600080fd5b506102c46102bf366004612b2a565b6107c8565b005b3480156102d257600080fd5b506102db610861565b60405161024c9190613a75565b3480156102f457600080fd5b506102c46103033660046129ed565b610867565b34801561031457600080fd5b506102c4610323366004612a41565b610975565b34801561033457600080fd5b5061033d610980565b60405161024c96959493929190612eb4565b34801561035b57600080fd5b506102db61036a366004612b2a565b6109cb565b34801561037b57600080fd5b506102db610ac6565b34801561039057600080fd5b506102db61039f366004612ba9565b610acc565b3480156103b057600080fd5b506102c46103bf366004612a41565b610af7565b3480156103d057600080fd5b506102c46103df366004612ba9565b610b12565b3480156103f057600080fd5b506102db6103ff366004612d3c565b610cc8565b34801561041057600080fd5b506102c461041f366004612bbb565b610cf4565b34801561043057600080fd5b5061029761043f366004612d3c565b610d4a565b34801561045057600080fd5b506102db61045f3660046129ed565b610d5c565b34801561047057600080fd5b506102c4610da9565b6102c4610487366004612d93565b610df4565b34801561049857600080fd5b506102c46104a7366004612c95565b610f2f565b3480156104b857600080fd5b506102976104c7366004612d3c565b6110a5565b3480156104d857600080fd5b506102976110e3565b3480156104ed57600080fd5b5061026a6110f2565b34801561050257600080fd5b506102db6105113660046129ed565b611101565b34801561052257600080fd5b506102c4610531366004612afd565b61111c565b34801561054257600080fd5b506102c4610551366004612a81565b6111ea565b34801561056257600080fd5b506105766105713660046129ed565b611223565b60405161024c93929190613a7e565b34801561059157600080fd5b5061026a6105a0366004612d3c565b611253565b3480156105b157600080fd5b506102c46105c0366004612b2a565b6112d6565b3480156105d157600080fd5b506102db6105e03660046129ed565b61136a565b3480156105f157600080fd5b506102db611385565b34801561060657600080fd5b506102db6106153660046129ed565b61138b565b34801561062657600080fd5b506102db6113a6565b6102c461063d366004612c00565b6113ac565b34801561064e57600080fd5b5061023f61065d366004612a09565b611627565b34801561066e57600080fd5b506102c461067d3660046129ed565b611655565b335b90565b60006001600160e01b031982166380ac58cd60e01b14806106b857506001600160e01b03198216635b5e139f60e01b145b806106d357506001600160e01b0319821663780e9d6360e01b145b806106e257506106e2826116c3565b90505b919050565b6060600180546106f990613c08565b80601f016020809104026020016040519081016040528092919081815260200182805461072590613c08565b80156107725780601f1061074757610100808354040283529160200191610772565b820191906000526020600020905b81548152906001019060200180831161075557829003601f168201915b5050505050905090565b6000610787826116dc565b6107ac5760405162461bcd60e51b81526004016107a3906139ba565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107d382610d4a565b9050806001600160a01b0316836001600160a01b031614156108075760405162461bcd60e51b81526004016107a39061375e565b806001600160a01b0316610819610682565b6001600160a01b0316148061083557506108358161065d610682565b6108515760405162461bcd60e51b81526004016107a39061347b565b61085c8383836116e3565b505050565b60005490565b6001600160a01b0381166000908152600b602052604090205461089c5760405162461bcd60e51b81526004016107a3906131dc565b60006108a66113a6565b6108b09047613ac6565b905060006108c783836108c286611101565b61173f565b9050806108e65760405162461bcd60e51b81526004016107a390613406565b6001600160a01b0383166000908152600c60205260408120805483929061090e908490613ac6565b9250508190555080600a60008282546109279190613ac6565b9091555061093790508382611785565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051610968929190612e53565b60405180910390a1505050565b61085c838383611821565b60105460ff8082169161010081049091169061ffff620100008204169063ffffffff600160201b8204811691600160401b8104909116906001600160a01b03600160601b9091041686565b60006109d683610d5c565b82106109f45760405162461bcd60e51b81526004016107a390612fc6565b60006109fe610861565b905060008060005b83811015610aa7576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610a5857805192505b876001600160a01b0316836001600160a01b03161415610a945786841415610a8657509350610ac092505050565b83610a9081613c43565b9450505b5080610a9f81613c43565b915050610a06565b5060405162461bcd60e51b81526004016107a39061391d565b92915050565b60095490565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b61085c838383604051806020016040528060008152506111ea565b6001600160a01b0381166000908152600b6020526040902054610b475760405162461bcd60e51b81526004016107a3906131dc565b6000610b528361138b565b6040516370a0823160e01b81526001600160a01b038516906370a0823190610b7e903090600401612e3f565b60206040518083038186803b158015610b9657600080fd5b505afa158015610baa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bce9190612d54565b610bd89190613ac6565b90506000610beb83836108c28787610acc565b905080610c0a5760405162461bcd60e51b81526004016107a390613406565b6001600160a01b038085166000908152600f6020908152604080832093871683529290529081208054839290610c41908490613ac6565b90915550506001600160a01b0384166000908152600e602052604081208054839290610c6e908490613ac6565b90915550610c7f9050848483611b31565b836001600160a01b03167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a8483604051610cba929190612e53565b60405180910390a250505050565b6000610cd2610861565b8210610cf05760405162461bcd60e51b81526004016107a390613199565b5090565b610cfc610682565b6001600160a01b0316610d0d6110e3565b6001600160a01b031614610d335760405162461bcd60e51b81526004016107a3906135a7565b8051610d469060129060208401906128a2565b5050565b6000610d5582611b87565b5192915050565b60006001600160a01b038216610d845760405162461bcd60e51b81526004016107a3906134d4565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610db1610682565b6001600160a01b0316610dc26110e3565b6001600160a01b031614610de85760405162461bcd60e51b81526004016107a3906135a7565b610df26000611c99565b565b60105460ff16610e165760405162461bcd60e51b81526004016107a3906132bc565b601054600160201b900463ffffffff16421015610e455760405162461bcd60e51b81526004016107a390613451565b601054600160401b900463ffffffff16421115610e745760405162461bcd60e51b81526004016107a390613290565b600260ff82161115610e985760405162461bcd60e51b81526004016107a390613703565b61251c60ff8216610ea7610861565b610eb19190613ac6565b1115610ecf5760405162461bcd60e51b81526004016107a3906135dc565b601054610ef09060ff831690600160601b90046001600160a01b0316613af2565b6001600160a01b0316341015610f185760405162461bcd60e51b81526004016107a390613267565b610f2c610f23610682565b8260ff16611ceb565b50565b610f37610682565b6001600160a01b0316610f486110e3565b6001600160a01b031614610f6e5760405162461bcd60e51b81526004016107a3906135a7565b601054602082015160ff610100909204821691161015610fa05760405162461bcd60e51b81526004016107a390613162565b61251c61ffff16816040015161ffff161115610fce5760405162461bcd60e51b81526004016107a390613008565b6003816020015160ff161115610ff65760405162461bcd60e51b81526004016107a39061312f565b805160108054602084015160408501516060860151608087015160a09097015160ff199094169515159590951761ff00191661010060ff909316929092029190911763ffff000019166201000061ffff909216919091021767ffffffff000000001916600160201b63ffffffff948516021763ffffffff60401b1916600160401b9390941692909202929092176001600160601b0316600160601b6001600160a01b0390921691909102179055565b6000600d82815481106110c857634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031692915050565b6008546001600160a01b031690565b6060600280546106f990613c08565b6001600160a01b03166000908152600c602052604090205490565b611124610682565b6001600160a01b0316826001600160a01b031614156111555760405162461bcd60e51b81526004016107a39061367d565b8060066000611162610682565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556111a6610682565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111de9190612ea9565b60405180910390a35050565b6111f5848484611821565b61120184848484611d05565b61121d5760405162461bcd60e51b81526004016107a3906137a0565b50505050565b60136020526000908152604090205460ff808216916101008104909116906201000090046001600160f01b031683565b606061125e826116dc565b61127a5760405162461bcd60e51b81526004016107a39061362e565b6000611284611e20565b905060008151116112a457604051806020016040528060008152506112cf565b806112ae84611e2f565b6040516020016112bf929190612df5565b6040516020818303038152906040525b9392505050565b6112de610682565b6001600160a01b03166112ef6110e3565b6001600160a01b0316146113155760405162461bcd60e51b81526004016107a3906135a7565b6011546101f490611327908390613ac6565b11156113455760405162461bcd60e51b81526004016107a390613a07565b61134f8282611ceb565b80601160008282546113619190613ac6565b90915550505050565b6001600160a01b03166000908152600b602052604090205490565b60075481565b6001600160a01b03166000908152600e602052604090205490565b600a5490565b6000601360006113ba610682565b6001600160a01b03166001600160a01b0316815260200190815260200160002090506113e7858585611f49565b805460ff166113fc6080870160608801612d93565b60ff16111561146f576114156040860160208701612d93565b815460ff919091166101000261ff001990911617815561143b6060860160408701612d93565b815461ffff1660ff91909116620100000217815561145f6080860160608701612d93565b815460ff191660ff919091161781555b601054610100900460ff1661148a6040870160208801612d93565b60ff16146114aa5760405162461bcd60e51b81526004016107a390613609565b601054600160201b900463ffffffff164210156114d95760405162461bcd60e51b81526004016107a390613451565b601054600160401b900463ffffffff164211156115085760405162461bcd60e51b81526004016107a390613290565b80546201000090046001600160f01b031660ff8316111561153b5760405162461bcd60e51b81526004016107a390613733565b60105462010000900461ffff1660ff8316611554610861565b61155e9190613ac6565b111561157c5760405162461bcd60e51b81526004016107a3906130b4565b60ff821661159060a0870160808801612d6c565b61159a9190613b40565b6001600160481b03163410156115c25760405162461bcd60e51b81526004016107a390613267565b6115d66115cd610682565b8360ff16611ceb565b805460ff83169082906002906115fc9084906201000090046001600160f01b0316613b8e565b92506101000a8154816001600160f01b0302191690836001600160f01b031602179055505050505050565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b61165d610682565b6001600160a01b031661166e6110e3565b6001600160a01b0316146116945760405162461bcd60e51b81526004016107a3906135a7565b6001600160a01b0381166116ba5760405162461bcd60e51b81526004016107a39061306e565b610f2c81611c99565b6001600160e01b031981166301ffc9a760e01b14919050565b6000541190565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6009546001600160a01b0384166000908152600b6020526040812054909183916117699086613b21565b6117739190613ade565b61177d9190613bae565b949350505050565b804710156117a55760405162461bcd60e51b81526004016107a390613389565b6000826001600160a01b0316826040516117be90610684565b60006040518083038185875af1925050503d80600081146117fb576040519150601f19603f3d011682016040523d82523d6000602084013e611800565b606091505b505090508061085c5760405162461bcd60e51b81526004016107a3906132ed565b600061182c82611b87565b9050600081600001516001600160a01b0316611846610682565b6001600160a01b0316148061187b575061185e610682565b6001600160a01b03166118708461077c565b6001600160a01b0316145b8061188f5750815161188f9061065d610682565b9050806118ae5760405162461bcd60e51b81526004016107a3906136b1565b846001600160a01b031682600001516001600160a01b0316146118e35760405162461bcd60e51b81526004016107a390613561565b6001600160a01b0384166119095760405162461bcd60e51b81526004016107a390613222565b611916858585600161121d565b61192660008484600001516116e3565b6001600160a01b03851660009081526004602052604081208054600192906119589084906001600160801b0316613b66565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926119a491859116613aa4565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526003909152948520935184549151909216600160a01b02600160a01b600160e01b0319929093166001600160a01b03199091161716179055611a38846001613ac6565b6000818152600360205260409020549091506001600160a01b0316611adb57611a60816116dc565b15611adb5760408051808201825284516001600160a01b0390811682526020808701516001600160401b0390811682850190815260008781526003909352949091209251835494516001600160a01b0319909516921691909117600160a01b600160e01b031916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b29868686600161121d565b505050505050565b61085c8363a9059cbb60e01b8484604051602401611b50929190612e53565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152612060565b611b8f612922565b611b98826116dc565b611bb45760405162461bcd60e51b81526004016107a3906130e5565b60007f00000000000000000000000000000000000000000000000000000000000000008310611c1557611c077f000000000000000000000000000000000000000000000000000000000000000084613bae565b611c12906001613ac6565b90505b825b818110611c80576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611c6d5792506106e5915050565b5080611c7881613bf1565b915050611c17565b5060405162461bcd60e51b81526004016107a39061396b565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610d468282604051806020016040528060008152506120ef565b6000611d19846001600160a01b0316612357565b15611e1557836001600160a01b031663150b7a02611d35610682565b8786866040518563ffffffff1660e01b8152600401611d579493929190612e6c565b602060405180830381600087803b158015611d7157600080fd5b505af1925050508015611da1575060408051601f3d908101601f19168201909252611d9e91810190612b8d565b60015b611dfb573d808015611dcf576040519150601f19603f3d011682016040523d82523d6000602084013e611dd4565b606091505b508051611df35760405162461bcd60e51b81526004016107a3906137a0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061177d565b506001949350505050565b6060601280546106f990613c08565b606081611e5457506040805180820190915260018152600360fc1b60208201526106e5565b8160005b8115611e7e5780611e6881613c43565b9150611e779050600a83613ade565b9150611e58565b6000816001600160401b03811115611ea657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ed0576020820181803683370190505b5090505b841561177d57611ee5600183613bae565b9150611ef2600a86613c5e565b611efd906030613ac6565b60f81b818381518110611f2057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611f42600a86613ade565b9450611ed4565b6000611fe77f964079ff810f3974716fc1b475847f7786345dd9917ffeaf5b7d6bbc38786003611f77610682565b611f876040880160208901612d93565b611f976060890160408a01612d93565b611fa760808a0160608b01612d93565b611fb760a08b0160808c01612d6c565b604051602001611fcc96959493929190612ef7565b6040516020818303038152906040528051906020012061235d565b90506120298184848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061237092505050565b6001600160a01b031661203a6110e3565b6001600160a01b03161461121d5760405162461bcd60e51b81526004016107a390613861565b60006120b5826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166123949092919063ffffffff16565b80519091501561085c57808060200190518101906120d39190612b55565b61085c5760405162461bcd60e51b81526004016107a3906138d3565b6000546001600160a01b0384166121185760405162461bcd60e51b81526004016107a390613892565b612121816116dc565b1561213e5760405162461bcd60e51b81526004016107a3906137f3565b7f000000000000000000000000000000000000000000000000000000000000000083111561217e5760405162461bcd60e51b81526004016107a390613a33565b61218b600085838661121d565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906121e7908790613aa4565b6001600160801b031681526020018583602001516122059190613aa4565b6001600160801b039081169091526001600160a01b03808816600081815260046020908152604080832087518154988401518816600160801b029088166001600160801b03199099169890981790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b02600160a01b600160e01b0319959093166001600160a01b031990941693909317939093161790915582905b858110156123455760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46123096000888488611d05565b6123255760405162461bcd60e51b81526004016107a3906137a0565b8161232f81613c43565b925050808061233d90613c43565b9150506122bc565b506000818155611b299087858861121d565b3b151590565b60006106e261236a6123a3565b8361249a565b600080600061237f85856124cd565b9150915061238c8161253d565b509392505050565b606061177d848460008561266a565b6000306001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161480156123fc57507f000000000000000000000000000000000000000000000000000000000000000046145b1561242857507f0000000000000000000000000000000000000000000000000000000000000000610684565b6124937f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000061272a565b9050610684565b600082826040516020016124af929190612e24565b60405160208183030381529060405280519060200120905092915050565b6000808251604114156125045760208301516040840151606085015160001a6124f887828585612764565b94509450505050612536565b82516040141561252e576020830151604084015161252386838361283a565b935093505050612536565b506000905060025b9250929050565b600081600481111561255f57634e487b7160e01b600052602160045260246000fd5b141561256a57610f2c565b600181600481111561258c57634e487b7160e01b600052602160045260246000fd5b14156125aa5760405162461bcd60e51b81526004016107a390612f94565b60028160048111156125cc57634e487b7160e01b600052602160045260246000fd5b14156125ea5760405162461bcd60e51b81526004016107a390613037565b600381600481111561260c57634e487b7160e01b600052602160045260246000fd5b141561262a5760405162461bcd60e51b81526004016107a390613347565b600481600481111561264c57634e487b7160e01b600052602160045260246000fd5b1415610f2c5760405162461bcd60e51b81526004016107a39061351f565b60608247101561268c5760405162461bcd60e51b81526004016107a3906133c0565b61269585612357565b6126b15760405162461bcd60e51b81526004016107a39061382a565b600080866001600160a01b031685876040516126cd9190612dd9565b60006040518083038185875af1925050503d806000811461270a576040519150601f19603f3d011682016040523d82523d6000602084013e61270f565b606091505b509150915061271f828286612869565b979650505050505050565b60008383834630604051602001612745959493929190612f37565b6040516020818303038152906040528051906020012090509392505050565b6000806fa2a8918ca85bafe22016d0b997e4df60600160ff1b038311156127915750600090506003612831565b8460ff16601b141580156127a957508460ff16601c14155b156127ba5750600090506004612831565b6000600187878787604051600081526020016040526040516127df9493929190612f63565b6020604051602081039080840390855afa158015612801573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661282a57600060019250925050612831565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b0161285b87828885612764565b935093505050935093915050565b606083156128785750816112cf565b8251156128885782518084602001fd5b8160405162461bcd60e51b81526004016107a39190612f81565b8280546128ae90613c08565b90600052602060002090601f0160209004810192826128d05760008555612916565b82601f106128e957805160ff1916838001178555612916565b82800160010185558215612916579182015b828111156129165782518255916020019190600101906128fb565b50610cf0929150612939565b604080518082019091526000808252602082015290565b5b80821115610cf0576000815560010161293a565b60006001600160401b038084111561296857612968613c9e565b604051601f8501601f19168101602001828111828210171561298c5761298c613c9e565b6040528481529150818385018610156129a457600080fd5b8484602083013760006020868301015250509392505050565b80356106e581613cb4565b803563ffffffff811681146106e557600080fd5b803560ff811681146106e557600080fd5b6000602082840312156129fe578081fd5b81356112cf81613cb4565b60008060408385031215612a1b578081fd5b8235612a2681613cb4565b91506020830135612a3681613cb4565b809150509250929050565b600080600060608486031215612a55578081fd5b8335612a6081613cb4565b92506020840135612a7081613cb4565b929592945050506040919091013590565b60008060008060808587031215612a96578081fd5b8435612aa181613cb4565b93506020850135612ab181613cb4565b92506040850135915060608501356001600160401b03811115612ad2578182fd5b8501601f81018713612ae2578182fd5b612af18782356020840161294e565b91505092959194509250565b60008060408385031215612b0f578182fd5b8235612b1a81613cb4565b91506020830135612a3681613cc9565b60008060408385031215612b3c578182fd5b8235612b4781613cb4565b946020939093013593505050565b600060208284031215612b66578081fd5b81516112cf81613cc9565b600060208284031215612b82578081fd5b81356112cf81613cd7565b600060208284031215612b9e578081fd5b81516112cf81613cd7565b60008060408385031215612a1b578182fd5b600060208284031215612bcc578081fd5b81356001600160401b03811115612be1578182fd5b8201601f81018413612bf1578182fd5b61177d8482356020840161294e565b60008060008084860360e0811215612c16578283fd5b60a0811215612c23578283fd5b5084935060a08501356001600160401b0380821115612c40578384fd5b818701915087601f830112612c53578384fd5b813581811115612c61578485fd5b886020828501011115612c72578485fd5b602083019550809450505050612c8a60c086016129dc565b905092959194509250565b600060c08284031215612ca6578081fd5b60405160c081018181106001600160401b0382111715612cc857612cc8613c9e565b6040528235612cd681613cc9565b8152612ce4602084016129dc565b6020820152604083013561ffff81168114612cfd578283fd5b6040820152612d0e606084016129c8565b6060820152612d1f608084016129c8565b6080820152612d3060a084016129bd565b60a08201529392505050565b600060208284031215612d4d578081fd5b5035919050565b600060208284031215612d65578081fd5b5051919050565b600060208284031215612d7d578081fd5b81356001600160481b03811681146112cf578182fd5b600060208284031215612da4578081fd5b6112cf826129dc565b60008151808452612dc5816020860160208601613bc5565b601f01601f19169290920160200192915050565b60008251612deb818460208701613bc5565b9190910192915050565b60008351612e07818460208801613bc5565b835190830190612e1b818360208801613bc5565b01949350505050565b61190160f01b81526002810192909252602282015260420190565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612e9f90830184612dad565b9695505050505050565b901515815260200190565b951515865260ff94909416602086015261ffff92909216604085015263ffffffff90811660608501521660808301526001600160a01b031660a082015260c00190565b9586526001600160a01b0394909416602086015260ff928316604086015290821660608501521660808301526001600160481b031660a082015260c00190565b9485526020850193909352604084019190915260608301526001600160a01b0316608082015260a00190565b93845260ff9290921660208401526040830152606082015260800190565b6000602082526112cf6020830184612dad565b60208082526018908201527745434453413a20696e76616c6964207369676e617475726560401b604082015260600190565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526015908201527453657420657863656564206d617820737570706c7960581b604082015260600190565b6020808252601f908201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b602080825260179082015276457863656564207374616765206d617820737570706c7960481b604082015260600190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526019908201527843616e206f6e6c79206861766520746872656520737461676560381b604082015260600190565b6020808252601c908201527f43616e6e6f742073657420746f2070726576696f757320737461676500000000604082015260600190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252600f908201526e139bdd08195b9bdd59da08199d5b99608a1b604082015260600190565b60208082526012908201527114d85b1948185b1c9958591e48195b99195960721b604082015260600190565b602080825260179082015276141d589b1a58c81b5a5b9d081b9bdd081cdd185c9d1959604a1b604082015260600190565b6020808252603a908201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c20726040820152791958da5c1a595b9d081b585e481a185d99481c995d995c9d195960321b606082015260800190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604082015261756560f01b606082015260800190565b6020808252601d908201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604082015260600190565b60208082526026908201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6040820152651c8818d85b1b60d21b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b60208082526010908201526f14d85b19481b9bdd081cdd185c9d195960821b604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f6040820152781ddb995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b603a1b606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604082015261756560f01b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526013908201527245786365656420746f74616c20737570706c7960681b604082015260600190565b6020808252600b908201526a57726f6e6720737461676560a81b604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527922a9219b9918a09d1030b8383937bb32903a379031b0b63632b960311b604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b602080825260169082015275115e18d95959081b585e081b5a5b9d08185b5bdd5b9d60521b604082015260600190565b6020808252601190820152702737ba1032b737bab3b4103932b6b0b4b760791b604082015260600190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b6020808252601790820152761a5b9d985b1a59081bdc881d5b985d5d1a1bdc9a5e9959604a1b604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6040820152691bdd081cdd58d8d9595960b21b606082015260800190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526012908201527108af0c6cacac840e4cae6cae4ecca40dac2f60731b604082015260600190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b90815260200190565b60ff93841681529190921660208201526001600160f01b03909116604082015260600190565b60006001600160801b03828116848216808303821115612e1b57612e1b613c72565b60008219821115613ad957613ad9613c72565b500190565b600082613aed57613aed613c88565b500490565b60006001600160a01b0382811684821681151582840482111615613b1857613b18613c72565b02949350505050565b6000816000190483118215151615613b3b57613b3b613c72565b500290565b60006001600160481b0380831681851681830481118215151615613b1857613b18613c72565b60006001600160801b0383811690831681811015613b8657613b86613c72565b039392505050565b60006001600160f01b0383811690831681811015613b8657613b86613c72565b600082821015613bc057613bc0613c72565b500390565b60005b83811015613be0578181015183820152602001613bc8565b8381111561121d5750506000910152565b600081613c0057613c00613c72565b506000190190565b600281046001821680613c1c57607f821691505b60208210811415613c3d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613c5757613c57613c72565b5060010190565b600082613c6d57613c6d613c88565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610f2c57600080fd5b8015158114610f2c57600080fd5b6001600160e01b031981168114610f2c57600080fdfea2646970667358221220565996fcf850e60a7890308d198f7f960ed2a8ef4d1027a4beb714b2648b532964736f6c634300080000330000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000007d00000000000000000000000000000000000000000000000000000000062065dd000000000000000000000000000000000000000000000000000000000620a5250000000000000000000000000000000000000000000000000016345785d8a00000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d575252694d38597668436a514e3467396f6f42714b5875624157755744354e473946754c48596e7a6f4850682f000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000e80bc4710feee46766cef8de5a0447d002dd6a0200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001

Deployed Bytecode

0x6080604052600436106101d35760003560e01c8063858e83b5116100f8578063c87b56dd11610090578063c87b56dd14610585578063cc47a40b146105a5578063ce7c2ac2146105c5578063d7224ba0146105e5578063d79779b2146105fa578063e33b7de31461061a578063e8bdd77f1461062f578063e985e9c514610642578063f2fde38b146106625761021a565b8063858e83b51461047957806386a12b7e1461048c5780638b83209b146104ac5780638da5cb5b146104cc57806395d89b41146104e15780639852595c146104f6578063a22cb46514610516578063b88d4fde14610536578063c06c7d49146105565761021a565b80633a98ef391161016b5780633a98ef391461036f578063406072a91461038457806342842e0e146103a457806348b75044146103c45780634f6ccce7146103e457806355f804b3146104045780636352211e1461042457806370a0823114610444578063715018a6146104645761021a565b806301ffc9a71461021f57806306fdde0314610255578063081812fc14610277578063095ea7b3146102a457806318160ddd146102c657806319165587146102e857806323b872dd146103085780632bf87116146103285780632f745c591461034f5761021a565b3661021a577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770610201610682565b34604051610210929190612e53565b60405180910390a1005b600080fd5b34801561022b57600080fd5b5061023f61023a366004612b71565b610687565b60405161024c9190612ea9565b60405180910390f35b34801561026157600080fd5b5061026a6106ea565b60405161024c9190612f81565b34801561028357600080fd5b50610297610292366004612d3c565b61077c565b60405161024c9190612e3f565b3480156102b057600080fd5b506102c46102bf366004612b2a565b6107c8565b005b3480156102d257600080fd5b506102db610861565b60405161024c9190613a75565b3480156102f457600080fd5b506102c46103033660046129ed565b610867565b34801561031457600080fd5b506102c4610323366004612a41565b610975565b34801561033457600080fd5b5061033d610980565b60405161024c96959493929190612eb4565b34801561035b57600080fd5b506102db61036a366004612b2a565b6109cb565b34801561037b57600080fd5b506102db610ac6565b34801561039057600080fd5b506102db61039f366004612ba9565b610acc565b3480156103b057600080fd5b506102c46103bf366004612a41565b610af7565b3480156103d057600080fd5b506102c46103df366004612ba9565b610b12565b3480156103f057600080fd5b506102db6103ff366004612d3c565b610cc8565b34801561041057600080fd5b506102c461041f366004612bbb565b610cf4565b34801561043057600080fd5b5061029761043f366004612d3c565b610d4a565b34801561045057600080fd5b506102db61045f3660046129ed565b610d5c565b34801561047057600080fd5b506102c4610da9565b6102c4610487366004612d93565b610df4565b34801561049857600080fd5b506102c46104a7366004612c95565b610f2f565b3480156104b857600080fd5b506102976104c7366004612d3c565b6110a5565b3480156104d857600080fd5b506102976110e3565b3480156104ed57600080fd5b5061026a6110f2565b34801561050257600080fd5b506102db6105113660046129ed565b611101565b34801561052257600080fd5b506102c4610531366004612afd565b61111c565b34801561054257600080fd5b506102c4610551366004612a81565b6111ea565b34801561056257600080fd5b506105766105713660046129ed565b611223565b60405161024c93929190613a7e565b34801561059157600080fd5b5061026a6105a0366004612d3c565b611253565b3480156105b157600080fd5b506102c46105c0366004612b2a565b6112d6565b3480156105d157600080fd5b506102db6105e03660046129ed565b61136a565b3480156105f157600080fd5b506102db611385565b34801561060657600080fd5b506102db6106153660046129ed565b61138b565b34801561062657600080fd5b506102db6113a6565b6102c461063d366004612c00565b6113ac565b34801561064e57600080fd5b5061023f61065d366004612a09565b611627565b34801561066e57600080fd5b506102c461067d3660046129ed565b611655565b335b90565b60006001600160e01b031982166380ac58cd60e01b14806106b857506001600160e01b03198216635b5e139f60e01b145b806106d357506001600160e01b0319821663780e9d6360e01b145b806106e257506106e2826116c3565b90505b919050565b6060600180546106f990613c08565b80601f016020809104026020016040519081016040528092919081815260200182805461072590613c08565b80156107725780601f1061074757610100808354040283529160200191610772565b820191906000526020600020905b81548152906001019060200180831161075557829003601f168201915b5050505050905090565b6000610787826116dc565b6107ac5760405162461bcd60e51b81526004016107a3906139ba565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107d382610d4a565b9050806001600160a01b0316836001600160a01b031614156108075760405162461bcd60e51b81526004016107a39061375e565b806001600160a01b0316610819610682565b6001600160a01b0316148061083557506108358161065d610682565b6108515760405162461bcd60e51b81526004016107a39061347b565b61085c8383836116e3565b505050565b60005490565b6001600160a01b0381166000908152600b602052604090205461089c5760405162461bcd60e51b81526004016107a3906131dc565b60006108a66113a6565b6108b09047613ac6565b905060006108c783836108c286611101565b61173f565b9050806108e65760405162461bcd60e51b81526004016107a390613406565b6001600160a01b0383166000908152600c60205260408120805483929061090e908490613ac6565b9250508190555080600a60008282546109279190613ac6565b9091555061093790508382611785565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051610968929190612e53565b60405180910390a1505050565b61085c838383611821565b60105460ff8082169161010081049091169061ffff620100008204169063ffffffff600160201b8204811691600160401b8104909116906001600160a01b03600160601b9091041686565b60006109d683610d5c565b82106109f45760405162461bcd60e51b81526004016107a390612fc6565b60006109fe610861565b905060008060005b83811015610aa7576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610a5857805192505b876001600160a01b0316836001600160a01b03161415610a945786841415610a8657509350610ac092505050565b83610a9081613c43565b9450505b5080610a9f81613c43565b915050610a06565b5060405162461bcd60e51b81526004016107a39061391d565b92915050565b60095490565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b61085c838383604051806020016040528060008152506111ea565b6001600160a01b0381166000908152600b6020526040902054610b475760405162461bcd60e51b81526004016107a3906131dc565b6000610b528361138b565b6040516370a0823160e01b81526001600160a01b038516906370a0823190610b7e903090600401612e3f565b60206040518083038186803b158015610b9657600080fd5b505afa158015610baa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bce9190612d54565b610bd89190613ac6565b90506000610beb83836108c28787610acc565b905080610c0a5760405162461bcd60e51b81526004016107a390613406565b6001600160a01b038085166000908152600f6020908152604080832093871683529290529081208054839290610c41908490613ac6565b90915550506001600160a01b0384166000908152600e602052604081208054839290610c6e908490613ac6565b90915550610c7f9050848483611b31565b836001600160a01b03167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a8483604051610cba929190612e53565b60405180910390a250505050565b6000610cd2610861565b8210610cf05760405162461bcd60e51b81526004016107a390613199565b5090565b610cfc610682565b6001600160a01b0316610d0d6110e3565b6001600160a01b031614610d335760405162461bcd60e51b81526004016107a3906135a7565b8051610d469060129060208401906128a2565b5050565b6000610d5582611b87565b5192915050565b60006001600160a01b038216610d845760405162461bcd60e51b81526004016107a3906134d4565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610db1610682565b6001600160a01b0316610dc26110e3565b6001600160a01b031614610de85760405162461bcd60e51b81526004016107a3906135a7565b610df26000611c99565b565b60105460ff16610e165760405162461bcd60e51b81526004016107a3906132bc565b601054600160201b900463ffffffff16421015610e455760405162461bcd60e51b81526004016107a390613451565b601054600160401b900463ffffffff16421115610e745760405162461bcd60e51b81526004016107a390613290565b600260ff82161115610e985760405162461bcd60e51b81526004016107a390613703565b61251c60ff8216610ea7610861565b610eb19190613ac6565b1115610ecf5760405162461bcd60e51b81526004016107a3906135dc565b601054610ef09060ff831690600160601b90046001600160a01b0316613af2565b6001600160a01b0316341015610f185760405162461bcd60e51b81526004016107a390613267565b610f2c610f23610682565b8260ff16611ceb565b50565b610f37610682565b6001600160a01b0316610f486110e3565b6001600160a01b031614610f6e5760405162461bcd60e51b81526004016107a3906135a7565b601054602082015160ff610100909204821691161015610fa05760405162461bcd60e51b81526004016107a390613162565b61251c61ffff16816040015161ffff161115610fce5760405162461bcd60e51b81526004016107a390613008565b6003816020015160ff161115610ff65760405162461bcd60e51b81526004016107a39061312f565b805160108054602084015160408501516060860151608087015160a09097015160ff199094169515159590951761ff00191661010060ff909316929092029190911763ffff000019166201000061ffff909216919091021767ffffffff000000001916600160201b63ffffffff948516021763ffffffff60401b1916600160401b9390941692909202929092176001600160601b0316600160601b6001600160a01b0390921691909102179055565b6000600d82815481106110c857634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031692915050565b6008546001600160a01b031690565b6060600280546106f990613c08565b6001600160a01b03166000908152600c602052604090205490565b611124610682565b6001600160a01b0316826001600160a01b031614156111555760405162461bcd60e51b81526004016107a39061367d565b8060066000611162610682565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556111a6610682565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111de9190612ea9565b60405180910390a35050565b6111f5848484611821565b61120184848484611d05565b61121d5760405162461bcd60e51b81526004016107a3906137a0565b50505050565b60136020526000908152604090205460ff808216916101008104909116906201000090046001600160f01b031683565b606061125e826116dc565b61127a5760405162461bcd60e51b81526004016107a39061362e565b6000611284611e20565b905060008151116112a457604051806020016040528060008152506112cf565b806112ae84611e2f565b6040516020016112bf929190612df5565b6040516020818303038152906040525b9392505050565b6112de610682565b6001600160a01b03166112ef6110e3565b6001600160a01b0316146113155760405162461bcd60e51b81526004016107a3906135a7565b6011546101f490611327908390613ac6565b11156113455760405162461bcd60e51b81526004016107a390613a07565b61134f8282611ceb565b80601160008282546113619190613ac6565b90915550505050565b6001600160a01b03166000908152600b602052604090205490565b60075481565b6001600160a01b03166000908152600e602052604090205490565b600a5490565b6000601360006113ba610682565b6001600160a01b03166001600160a01b0316815260200190815260200160002090506113e7858585611f49565b805460ff166113fc6080870160608801612d93565b60ff16111561146f576114156040860160208701612d93565b815460ff919091166101000261ff001990911617815561143b6060860160408701612d93565b815461ffff1660ff91909116620100000217815561145f6080860160608701612d93565b815460ff191660ff919091161781555b601054610100900460ff1661148a6040870160208801612d93565b60ff16146114aa5760405162461bcd60e51b81526004016107a390613609565b601054600160201b900463ffffffff164210156114d95760405162461bcd60e51b81526004016107a390613451565b601054600160401b900463ffffffff164211156115085760405162461bcd60e51b81526004016107a390613290565b80546201000090046001600160f01b031660ff8316111561153b5760405162461bcd60e51b81526004016107a390613733565b60105462010000900461ffff1660ff8316611554610861565b61155e9190613ac6565b111561157c5760405162461bcd60e51b81526004016107a3906130b4565b60ff821661159060a0870160808801612d6c565b61159a9190613b40565b6001600160481b03163410156115c25760405162461bcd60e51b81526004016107a390613267565b6115d66115cd610682565b8360ff16611ceb565b805460ff83169082906002906115fc9084906201000090046001600160f01b0316613b8e565b92506101000a8154816001600160f01b0302191690836001600160f01b031602179055505050505050565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b61165d610682565b6001600160a01b031661166e6110e3565b6001600160a01b0316146116945760405162461bcd60e51b81526004016107a3906135a7565b6001600160a01b0381166116ba5760405162461bcd60e51b81526004016107a39061306e565b610f2c81611c99565b6001600160e01b031981166301ffc9a760e01b14919050565b6000541190565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6009546001600160a01b0384166000908152600b6020526040812054909183916117699086613b21565b6117739190613ade565b61177d9190613bae565b949350505050565b804710156117a55760405162461bcd60e51b81526004016107a390613389565b6000826001600160a01b0316826040516117be90610684565b60006040518083038185875af1925050503d80600081146117fb576040519150601f19603f3d011682016040523d82523d6000602084013e611800565b606091505b505090508061085c5760405162461bcd60e51b81526004016107a3906132ed565b600061182c82611b87565b9050600081600001516001600160a01b0316611846610682565b6001600160a01b0316148061187b575061185e610682565b6001600160a01b03166118708461077c565b6001600160a01b0316145b8061188f5750815161188f9061065d610682565b9050806118ae5760405162461bcd60e51b81526004016107a3906136b1565b846001600160a01b031682600001516001600160a01b0316146118e35760405162461bcd60e51b81526004016107a390613561565b6001600160a01b0384166119095760405162461bcd60e51b81526004016107a390613222565b611916858585600161121d565b61192660008484600001516116e3565b6001600160a01b03851660009081526004602052604081208054600192906119589084906001600160801b0316613b66565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926119a491859116613aa4565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526003909152948520935184549151909216600160a01b02600160a01b600160e01b0319929093166001600160a01b03199091161716179055611a38846001613ac6565b6000818152600360205260409020549091506001600160a01b0316611adb57611a60816116dc565b15611adb5760408051808201825284516001600160a01b0390811682526020808701516001600160401b0390811682850190815260008781526003909352949091209251835494516001600160a01b0319909516921691909117600160a01b600160e01b031916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b29868686600161121d565b505050505050565b61085c8363a9059cbb60e01b8484604051602401611b50929190612e53565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152612060565b611b8f612922565b611b98826116dc565b611bb45760405162461bcd60e51b81526004016107a3906130e5565b60007f00000000000000000000000000000000000000000000000000000000000000058310611c1557611c077f000000000000000000000000000000000000000000000000000000000000000584613bae565b611c12906001613ac6565b90505b825b818110611c80576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611c6d5792506106e5915050565b5080611c7881613bf1565b915050611c17565b5060405162461bcd60e51b81526004016107a39061396b565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610d468282604051806020016040528060008152506120ef565b6000611d19846001600160a01b0316612357565b15611e1557836001600160a01b031663150b7a02611d35610682565b8786866040518563ffffffff1660e01b8152600401611d579493929190612e6c565b602060405180830381600087803b158015611d7157600080fd5b505af1925050508015611da1575060408051601f3d908101601f19168201909252611d9e91810190612b8d565b60015b611dfb573d808015611dcf576040519150601f19603f3d011682016040523d82523d6000602084013e611dd4565b606091505b508051611df35760405162461bcd60e51b81526004016107a3906137a0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061177d565b506001949350505050565b6060601280546106f990613c08565b606081611e5457506040805180820190915260018152600360fc1b60208201526106e5565b8160005b8115611e7e5780611e6881613c43565b9150611e779050600a83613ade565b9150611e58565b6000816001600160401b03811115611ea657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ed0576020820181803683370190505b5090505b841561177d57611ee5600183613bae565b9150611ef2600a86613c5e565b611efd906030613ac6565b60f81b818381518110611f2057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611f42600a86613ade565b9450611ed4565b6000611fe77f964079ff810f3974716fc1b475847f7786345dd9917ffeaf5b7d6bbc38786003611f77610682565b611f876040880160208901612d93565b611f976060890160408a01612d93565b611fa760808a0160608b01612d93565b611fb760a08b0160808c01612d6c565b604051602001611fcc96959493929190612ef7565b6040516020818303038152906040528051906020012061235d565b90506120298184848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061237092505050565b6001600160a01b031661203a6110e3565b6001600160a01b03161461121d5760405162461bcd60e51b81526004016107a390613861565b60006120b5826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166123949092919063ffffffff16565b80519091501561085c57808060200190518101906120d39190612b55565b61085c5760405162461bcd60e51b81526004016107a3906138d3565b6000546001600160a01b0384166121185760405162461bcd60e51b81526004016107a390613892565b612121816116dc565b1561213e5760405162461bcd60e51b81526004016107a3906137f3565b7f000000000000000000000000000000000000000000000000000000000000000583111561217e5760405162461bcd60e51b81526004016107a390613a33565b61218b600085838661121d565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906121e7908790613aa4565b6001600160801b031681526020018583602001516122059190613aa4565b6001600160801b039081169091526001600160a01b03808816600081815260046020908152604080832087518154988401518816600160801b029088166001600160801b03199099169890981790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b02600160a01b600160e01b0319959093166001600160a01b031990941693909317939093161790915582905b858110156123455760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46123096000888488611d05565b6123255760405162461bcd60e51b81526004016107a3906137a0565b8161232f81613c43565b925050808061233d90613c43565b9150506122bc565b506000818155611b299087858861121d565b3b151590565b60006106e261236a6123a3565b8361249a565b600080600061237f85856124cd565b9150915061238c8161253d565b509392505050565b606061177d848460008561266a565b6000306001600160a01b037f000000000000000000000000970aad14d99ab8ff4dc699458a2183f44c1a6507161480156123fc57507f000000000000000000000000000000000000000000000000000000000000000146145b1561242857507fab3cb28fc5cb34d7028d1fa0d79597407aa5ca89c82b1f5cee0f348900e272fd610684565b6124937f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f1baaba520eebafada901f4be77d3847c5840dc7eacda299e1b62f66ab4b9434a7fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc661272a565b9050610684565b600082826040516020016124af929190612e24565b60405160208183030381529060405280519060200120905092915050565b6000808251604114156125045760208301516040840151606085015160001a6124f887828585612764565b94509450505050612536565b82516040141561252e576020830151604084015161252386838361283a565b935093505050612536565b506000905060025b9250929050565b600081600481111561255f57634e487b7160e01b600052602160045260246000fd5b141561256a57610f2c565b600181600481111561258c57634e487b7160e01b600052602160045260246000fd5b14156125aa5760405162461bcd60e51b81526004016107a390612f94565b60028160048111156125cc57634e487b7160e01b600052602160045260246000fd5b14156125ea5760405162461bcd60e51b81526004016107a390613037565b600381600481111561260c57634e487b7160e01b600052602160045260246000fd5b141561262a5760405162461bcd60e51b81526004016107a390613347565b600481600481111561264c57634e487b7160e01b600052602160045260246000fd5b1415610f2c5760405162461bcd60e51b81526004016107a39061351f565b60608247101561268c5760405162461bcd60e51b81526004016107a3906133c0565b61269585612357565b6126b15760405162461bcd60e51b81526004016107a39061382a565b600080866001600160a01b031685876040516126cd9190612dd9565b60006040518083038185875af1925050503d806000811461270a576040519150601f19603f3d011682016040523d82523d6000602084013e61270f565b606091505b509150915061271f828286612869565b979650505050505050565b60008383834630604051602001612745959493929190612f37565b6040516020818303038152906040528051906020012090509392505050565b6000806fa2a8918ca85bafe22016d0b997e4df60600160ff1b038311156127915750600090506003612831565b8460ff16601b141580156127a957508460ff16601c14155b156127ba5750600090506004612831565b6000600187878787604051600081526020016040526040516127df9493929190612f63565b6020604051602081039080840390855afa158015612801573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661282a57600060019250925050612831565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b0161285b87828885612764565b935093505050935093915050565b606083156128785750816112cf565b8251156128885782518084602001fd5b8160405162461bcd60e51b81526004016107a39190612f81565b8280546128ae90613c08565b90600052602060002090601f0160209004810192826128d05760008555612916565b82601f106128e957805160ff1916838001178555612916565b82800160010185558215612916579182015b828111156129165782518255916020019190600101906128fb565b50610cf0929150612939565b604080518082019091526000808252602082015290565b5b80821115610cf0576000815560010161293a565b60006001600160401b038084111561296857612968613c9e565b604051601f8501601f19168101602001828111828210171561298c5761298c613c9e565b6040528481529150818385018610156129a457600080fd5b8484602083013760006020868301015250509392505050565b80356106e581613cb4565b803563ffffffff811681146106e557600080fd5b803560ff811681146106e557600080fd5b6000602082840312156129fe578081fd5b81356112cf81613cb4565b60008060408385031215612a1b578081fd5b8235612a2681613cb4565b91506020830135612a3681613cb4565b809150509250929050565b600080600060608486031215612a55578081fd5b8335612a6081613cb4565b92506020840135612a7081613cb4565b929592945050506040919091013590565b60008060008060808587031215612a96578081fd5b8435612aa181613cb4565b93506020850135612ab181613cb4565b92506040850135915060608501356001600160401b03811115612ad2578182fd5b8501601f81018713612ae2578182fd5b612af18782356020840161294e565b91505092959194509250565b60008060408385031215612b0f578182fd5b8235612b1a81613cb4565b91506020830135612a3681613cc9565b60008060408385031215612b3c578182fd5b8235612b4781613cb4565b946020939093013593505050565b600060208284031215612b66578081fd5b81516112cf81613cc9565b600060208284031215612b82578081fd5b81356112cf81613cd7565b600060208284031215612b9e578081fd5b81516112cf81613cd7565b60008060408385031215612a1b578182fd5b600060208284031215612bcc578081fd5b81356001600160401b03811115612be1578182fd5b8201601f81018413612bf1578182fd5b61177d8482356020840161294e565b60008060008084860360e0811215612c16578283fd5b60a0811215612c23578283fd5b5084935060a08501356001600160401b0380821115612c40578384fd5b818701915087601f830112612c53578384fd5b813581811115612c61578485fd5b886020828501011115612c72578485fd5b602083019550809450505050612c8a60c086016129dc565b905092959194509250565b600060c08284031215612ca6578081fd5b60405160c081018181106001600160401b0382111715612cc857612cc8613c9e565b6040528235612cd681613cc9565b8152612ce4602084016129dc565b6020820152604083013561ffff81168114612cfd578283fd5b6040820152612d0e606084016129c8565b6060820152612d1f608084016129c8565b6080820152612d3060a084016129bd565b60a08201529392505050565b600060208284031215612d4d578081fd5b5035919050565b600060208284031215612d65578081fd5b5051919050565b600060208284031215612d7d578081fd5b81356001600160481b03811681146112cf578182fd5b600060208284031215612da4578081fd5b6112cf826129dc565b60008151808452612dc5816020860160208601613bc5565b601f01601f19169290920160200192915050565b60008251612deb818460208701613bc5565b9190910192915050565b60008351612e07818460208801613bc5565b835190830190612e1b818360208801613bc5565b01949350505050565b61190160f01b81526002810192909252602282015260420190565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612e9f90830184612dad565b9695505050505050565b901515815260200190565b951515865260ff94909416602086015261ffff92909216604085015263ffffffff90811660608501521660808301526001600160a01b031660a082015260c00190565b9586526001600160a01b0394909416602086015260ff928316604086015290821660608501521660808301526001600160481b031660a082015260c00190565b9485526020850193909352604084019190915260608301526001600160a01b0316608082015260a00190565b93845260ff9290921660208401526040830152606082015260800190565b6000602082526112cf6020830184612dad565b60208082526018908201527745434453413a20696e76616c6964207369676e617475726560401b604082015260600190565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526015908201527453657420657863656564206d617820737570706c7960581b604082015260600190565b6020808252601f908201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b602080825260179082015276457863656564207374616765206d617820737570706c7960481b604082015260600190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526019908201527843616e206f6e6c79206861766520746872656520737461676560381b604082015260600190565b6020808252601c908201527f43616e6e6f742073657420746f2070726576696f757320737461676500000000604082015260600190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252600f908201526e139bdd08195b9bdd59da08199d5b99608a1b604082015260600190565b60208082526012908201527114d85b1948185b1c9958591e48195b99195960721b604082015260600190565b602080825260179082015276141d589b1a58c81b5a5b9d081b9bdd081cdd185c9d1959604a1b604082015260600190565b6020808252603a908201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c20726040820152791958da5c1a595b9d081b585e481a185d99481c995d995c9d195960321b606082015260800190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604082015261756560f01b606082015260800190565b6020808252601d908201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604082015260600190565b60208082526026908201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6040820152651c8818d85b1b60d21b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b60208082526010908201526f14d85b19481b9bdd081cdd185c9d195960821b604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f6040820152781ddb995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b603a1b606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604082015261756560f01b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526013908201527245786365656420746f74616c20737570706c7960681b604082015260600190565b6020808252600b908201526a57726f6e6720737461676560a81b604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527922a9219b9918a09d1030b8383937bb32903a379031b0b63632b960311b604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b602080825260169082015275115e18d95959081b585e081b5a5b9d08185b5bdd5b9d60521b604082015260600190565b6020808252601190820152702737ba1032b737bab3b4103932b6b0b4b760791b604082015260600190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b6020808252601790820152761a5b9d985b1a59081bdc881d5b985d5d1a1bdc9a5e9959604a1b604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6040820152691bdd081cdd58d8d9595960b21b606082015260800190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526012908201527108af0c6cacac840e4cae6cae4ecca40dac2f60731b604082015260600190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b90815260200190565b60ff93841681529190921660208201526001600160f01b03909116604082015260600190565b60006001600160801b03828116848216808303821115612e1b57612e1b613c72565b60008219821115613ad957613ad9613c72565b500190565b600082613aed57613aed613c88565b500490565b60006001600160a01b0382811684821681151582840482111615613b1857613b18613c72565b02949350505050565b6000816000190483118215151615613b3b57613b3b613c72565b500290565b60006001600160481b0380831681851681830481118215151615613b1857613b18613c72565b60006001600160801b0383811690831681811015613b8657613b86613c72565b039392505050565b60006001600160f01b0383811690831681811015613b8657613b86613c72565b600082821015613bc057613bc0613c72565b500390565b60005b83811015613be0578181015183820152602001613bc8565b8381111561121d5750506000910152565b600081613c0057613c00613c72565b506000190190565b600281046001821680613c1c57607f821691505b60208210811415613c3d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613c5757613c57613c72565b5060010190565b600082613c6d57613c6d613c88565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610f2c57600080fd5b8015158114610f2c57600080fd5b6001600160e01b031981168114610f2c57600080fdfea2646970667358221220565996fcf850e60a7890308d198f7f960ed2a8ef4d1027a4beb714b2648b532964736f6c63430008000033

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

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000007d00000000000000000000000000000000000000000000000000000000062065dd000000000000000000000000000000000000000000000000000000000620a5250000000000000000000000000000000000000000000000000016345785d8a00000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d575252694d38597668436a514e3467396f6f42714b5875624157755744354e473946754c48596e7a6f4850682f000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000e80bc4710feee46766cef8de5a0447d002dd6a0200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001

-----Decoded View---------------
Arg [0] : _initStageInfo (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [1] : _initBaseURI (string): ipfs://QmWRRiM8YvhCjQN4g9ooBqKXubAWuWD5NG9FuLHYnzoHPh/
Arg [2] : payees (address[]): 0xe80Bc4710FEee46766cEf8De5A0447d002DD6a02
Arg [3] : shares (uint256[]): 1

-----Encoded View---------------
16 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [2] : 00000000000000000000000000000000000000000000000000000000000007d0
Arg [3] : 0000000000000000000000000000000000000000000000000000000062065dd0
Arg [4] : 00000000000000000000000000000000000000000000000000000000620a5250
Arg [5] : 000000000000000000000000000000000000000000000000016345785d8a0000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [8] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [10] : 697066733a2f2f516d575252694d38597668436a514e3467396f6f42714b5875
Arg [11] : 624157755744354e473946754c48596e7a6f4850682f00000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [13] : 000000000000000000000000e80bc4710feee46766cef8de5a0447d002dd6a02
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000001


Loading...
Loading
Loading...
Loading
[ 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.