ETH Price: $3,394.80 (+1.09%)
Gas: 6 Gwei

Token

RIP Pele (RIPPELE)
 

Overview

Max Total Supply

3,341 RIPPELE

Holders

2,653

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 RIPPELE
0xFf1E20b152578dF3672B33279Ac44404c3E61Fe6
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:
RIPPele

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-29
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @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,
        bytes calldata data
    ) external;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

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

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

interface IERC20 {
    /**
     * @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);

    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

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));
        }
    }

    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @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");
        }
    }
}

library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // 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);
    }

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

abstract contract Ownable is Context {
    address private _owner;

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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 Getter for the amount of payee's releasable Ether.
     */
    function releasable(address account) public view returns (uint256) {
        uint256 totalReceived = address(this).balance + totalReleased();
        return _pendingPayment(account, totalReceived, released(account));
    }

    /**
     * @dev Getter for the amount of payee's releasable `token` tokens. `token` should be the address of an
     * IERC20 contract.
     */
    function releasable(IERC20 token, address account) public view returns (uint256) {
        uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token);
        return _pendingPayment(account, totalReceived, released(token, account));
    }

    /**
     * @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 payment = releasable(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 payment = releasable(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_);
    }
}

/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Reference type for token approval.
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // 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 {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 1;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view virtual returns (uint256) {
        // Counter underflow is impossible as `_currentIndex` does not decrement,
        // and it is initialized to `_startTokenId()`.
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

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

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public virtual override {
        address owner = ownerOf(tokenId);

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token IDs
     * are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * `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`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    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.
     * And also called after one token has been burned.
     *
     * `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` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

contract RIPPele is Ownable, ERC721A, PaymentSplitter {

    using Strings for uint;

    enum Step {
        Before,
        PublicSale,
        SoldOut,
        Reveal
    }

    string public baseURI;

    Step public sellingStep;

    uint private constant MAX_SUPPLY = 5555;

    uint public publicPrice = 0.0025 ether;

    mapping(address => uint) public mintedAmountNFTsperWallet;

    uint public maxAmountPerTxnPublic = 10; 

    uint private teamLength;

    constructor(address[] memory _team, uint[] memory _teamShares, string memory _baseURI) ERC721A("RIP Pele", "RIPPELE")
    PaymentSplitter(_team, _teamShares) {
        baseURI = _baseURI;
        teamLength = _team.length;
    }

    function mintForOpensea() external onlyOwner{
        if(totalSupply() != 0) revert("Only one mint for deployer");
        _mint(msg.sender, 1);
    }
    
    function freeMint() external {
        if(sellingStep != Step.PublicSale) revert("Public Mint not live.");
        if(_numberMinted(msg.sender) > 0) revert("Only 1 free");
        if(totalSupply() + 1 > MAX_SUPPLY) revert("Max supply exceeded");
        _mint(msg.sender, 1);
    }

    function publicSaleMint(uint _quantity) external payable {
        if(publicPrice <= 0) revert("Price is 0");
        if(msg.value < publicPrice * _quantity) revert("Not enough funds");
        if(_quantity > maxAmountPerTxnPublic) revert("Over max amount per txn");
        if(sellingStep != Step.PublicSale) revert("Public Mint not live.");
        if(totalSupply() + _quantity > MAX_SUPPLY) revert("Max supply exceeded");
        _mint(msg.sender, _quantity);
    }

    function currentState() external view returns (Step, uint, uint) {
        return (sellingStep, publicPrice, maxAmountPerTxnPublic);
    }

    function changePublicSalePrice(uint256 new_price) external onlyOwner{
        publicPrice = new_price;
    }

    function setBaseUri(string memory _baseURI) external onlyOwner {
        baseURI = _baseURI;
    }

    function setStep(uint _step) external onlyOwner {
        sellingStep = Step(_step);
    }

    function setMaxTxnPublic(uint amount) external onlyOwner{
        maxAmountPerTxnPublic = amount;
    }

    function getNumberMinted(address account) external view returns (uint256) {
        return _numberMinted(account);
    }

    function tokenURI(uint _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId), "URI query for nonexistent token");
        return string(abi.encodePacked(baseURI, _toString(_tokenId), ".json"));
    }

    function releaseAll() external {
        for(uint i = 0 ; i < teamLength ; i++) {
            release(payable(payee(i)));
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address[]","name":"_team","type":"address[]"},{"internalType":"uint256[]","name":"_teamShares","type":"uint256[]"},{"internalType":"string","name":"_baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"new_price","type":"uint256"}],"name":"changePublicSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentState","outputs":[{"internalType":"enum RIPPele.Step","name":"","type":"uint8"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","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":"account","type":"address"}],"name":"getNumberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxAmountPerTxnPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintForOpensea","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedAmountNFTsperWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"releaseAll","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":"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":[],"name":"sellingStep","outputs":[{"internalType":"enum RIPPele.Step","name":"","type":"uint8"}],"stateMutability":"view","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":"uint256","name":"amount","type":"uint256"}],"name":"setMaxTxnPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_step","type":"uint256"}],"name":"setStep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_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"},{"stateMutability":"payable","type":"receive"}]

60806040526608e1bc9bf04000601255600a6014553480156200002157600080fd5b5060405162002d6b38038062002d6b8339810160408190526200004491620005c8565b8282604051806040016040528060088152602001675249502050656c6560c01b8152506040518060400160405280600781526020016652495050454c4560c81b815250620000a16200009b6200021760201b60201c565b6200021b565b6003620000af83826200075c565b506004620000be82826200075c565b506001805550508051825114620001375760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b60008251116200018a5760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f2070617965657300000000000060448201526064016200012e565b60005b8251811015620001f657620001e1838281518110620001b057620001b062000828565b6020026020010151838381518110620001cd57620001cd62000828565b60200260200101516200026b60201b60201c565b80620001ed8162000854565b9150506200018d565b506010915062000209905082826200075c565b50509051601555506200088c565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620002d85760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b60648201526084016200012e565b600081116200032a5760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a2073686172657320617265203000000060448201526064016200012e565b6001600160a01b0382166000908152600b602052604090205415620003a65760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b60648201526084016200012e565b600d8054600181019091557fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb50180546001600160a01b0319166001600160a01b0384169081179091556000908152600b602052604090208190556009546200041090829062000870565b600955604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156200049a576200049a62000459565b604052919050565b60006001600160401b03821115620004be57620004be62000459565b5060051b60200190565b600082601f830112620004da57600080fd5b81516020620004f3620004ed83620004a2565b6200046f565b82815260059290921b840181019181810190868411156200051357600080fd5b8286015b8481101562000530578051835291830191830162000517565b509695505050505050565b600082601f8301126200054d57600080fd5b81516001600160401b0381111562000569576200056962000459565b60206200057f601f8301601f191682016200046f565b82815285828487010111156200059457600080fd5b60005b83811015620005b457858101830151828201840152820162000597565b506000928101909101919091529392505050565b600080600060608486031215620005de57600080fd5b83516001600160401b0380821115620005f657600080fd5b818601915086601f8301126200060b57600080fd5b815160206200061e620004ed83620004a2565b82815260059290921b8401810191818101908a8411156200063e57600080fd5b948201945b83861015620006755785516001600160a01b0381168114620006655760008081fd5b8252948201949082019062000643565b918901519197509093505050808211156200068f57600080fd5b6200069d87838801620004c8565b93506040860151915080821115620006b457600080fd5b50620006c3868287016200053b565b9150509250925092565b600181811c90821680620006e257607f821691505b6020821081036200070357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200075757600081815260208120601f850160051c81016020861015620007325750805b601f850160051c820191505b8181101562000753578281556001016200073e565b5050505b505050565b81516001600160401b0381111562000778576200077862000459565b6200079081620007898454620006cd565b8462000709565b602080601f831160018114620007c85760008415620007af5750858301515b600019600386901b1c1916600185901b17855562000753565b600085815260208120601f198616915b82811015620007f957888601518255948401946001909101908401620007d8565b5085821015620008185787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016200086957620008696200083e565b5060010190565b808201808211156200088657620008866200083e565b92915050565b6124cf806200089c6000396000f3fe6080604052600436106102605760003560e01c80638b83209b11610144578063c87b56dd116100b6578063d79779b21161007a578063d79779b214610793578063e33b7de3146107c9578063e985e9c5146107de578063ee70c7cb14610827578063f2fde38b1461083d578063f8dcbddb1461085d57600080fd5b8063c87b56dd146106d4578063c893575a146106f4578063c94623db14610709578063cbccefb214610736578063ce7c2ac21461075d57600080fd5b8063a22cb46511610108578063a22cb4651461062b578063a3f8eace1461064b578063a945bf801461066b578063b3ab66b014610681578063b88d4fde14610694578063c45ac050146106b457600080fd5b80638b83209b146105825780638da5cb5b146105a257806395d89b41146105c05780639852595c146105d5578063a0bcfc7f1461060b57600080fd5b806342842e0e116101dd5780636352211e116101a15780636352211e146104d85780636c0360eb146104f857806370a082311461050d578063715018a61461052d5780638a02e3b9146105425780638a59a7fd1461056257600080fd5b806342842e0e1461044e57806348b750441461046e5780634fda72851461048e5780635b70ea9f146104ae5780635be7fde8146104c357600080fd5b806318160ddd1161022457806318160ddd1461038757806319165587146103b357806323b872dd146103d35780633a98ef39146103f3578063406072a91461040857600080fd5b806301ffc9a7146102ae57806306fdde03146102e3578063081812fc14610305578063095ea7b31461033d5780630c3f6acf1461035f57600080fd5b366102a9577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156102ba57600080fd5b506102ce6102c9366004611d7a565b61087d565b60405190151581526020015b60405180910390f35b3480156102ef57600080fd5b506102f86108cf565b6040516102da9190611de7565b34801561031157600080fd5b50610325610320366004611dfa565b610961565b6040516001600160a01b0390911681526020016102da565b34801561034957600080fd5b5061035d610358366004611e28565b6109a5565b005b34801561036b57600080fd5b506011546012546014546040516102da9360ff16929190611e8c565b34801561039357600080fd5b506103a5600254600154036000190190565b6040519081526020016102da565b3480156103bf57600080fd5b5061035d6103ce366004611eab565b610a45565b3480156103df57600080fd5b5061035d6103ee366004611ec8565b610b47565b3480156103ff57600080fd5b506009546103a5565b34801561041457600080fd5b506103a5610423366004611f09565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b34801561045a57600080fd5b5061035d610469366004611ec8565b610ce0565b34801561047a57600080fd5b5061035d610489366004611f09565b610d00565b34801561049a57600080fd5b5061035d6104a9366004611dfa565b610e23565b3480156104ba57600080fd5b5061035d610e30565b3480156104cf57600080fd5b5061035d610f57565b3480156104e457600080fd5b506103256104f3366004611dfa565b610f85565b34801561050457600080fd5b506102f8610f90565b34801561051957600080fd5b506103a5610528366004611eab565b61101e565b34801561053957600080fd5b5061035d61106d565b34801561054e57600080fd5b5061035d61055d366004611dfa565b61107f565b34801561056e57600080fd5b506103a561057d366004611eab565b61108c565b34801561058e57600080fd5b5061032561059d366004611dfa565b6110b7565b3480156105ae57600080fd5b506000546001600160a01b0316610325565b3480156105cc57600080fd5b506102f86110e7565b3480156105e157600080fd5b506103a56105f0366004611eab565b6001600160a01b03166000908152600c602052604090205490565b34801561061757600080fd5b5061035d610626366004611fce565b6110f6565b34801561063757600080fd5b5061035d610646366004612025565b61110e565b34801561065757600080fd5b506103a5610666366004611eab565b6111a3565b34801561067757600080fd5b506103a560125481565b61035d61068f366004611dfa565b6111eb565b3480156106a057600080fd5b5061035d6106af366004612053565b611397565b3480156106c057600080fd5b506103a56106cf366004611f09565b6113e1565b3480156106e057600080fd5b506102f86106ef366004611dfa565b6114ac565b34801561070057600080fd5b5061035d611535565b34801561071557600080fd5b506103a5610724366004611eab565b60136020526000908152604090205481565b34801561074257600080fd5b506011546107509060ff1681565b6040516102da91906120d3565b34801561076957600080fd5b506103a5610778366004611eab565b6001600160a01b03166000908152600b602052604090205490565b34801561079f57600080fd5b506103a56107ae366004611eab565b6001600160a01b03166000908152600e602052604090205490565b3480156107d557600080fd5b50600a546103a5565b3480156107ea57600080fd5b506102ce6107f9366004611f09565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561083357600080fd5b506103a560145481565b34801561084957600080fd5b5061035d610858366004611eab565b61159b565b34801561086957600080fd5b5061035d610878366004611dfa565b611611565b60006301ffc9a760e01b6001600160e01b0319831614806108ae57506380ac58cd60e01b6001600160e01b03198316145b806108c95750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546108de906120e1565b80601f016020809104026020016040519081016040528092919081815260200182805461090a906120e1565b80156109575780601f1061092c57610100808354040283529160200191610957565b820191906000526020600020905b81548152906001019060200180831161093a57829003601f168201915b5050505050905090565b600061096c8261164f565b610989576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006109b082610f85565b9050336001600160a01b038216146109e9576109cc81336107f9565b6109e9576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6001600160a01b0381166000908152600b6020526040902054610a835760405162461bcd60e51b8152600401610a7a9061211b565b60405180910390fd5b6000610a8e826111a3565b905080600003610ab05760405162461bcd60e51b8152600401610a7a90612161565b6001600160a01b0382166000908152600c602052604081208054839290610ad89084906121c2565b9250508190555080600a6000828254610af191906121c2565b90915550610b0190508282611684565b604080516001600160a01b0384168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a15050565b6000610b528261179d565b9050836001600160a01b0316816001600160a01b031614610b855760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b03881690911417610bd257610bb586336107f9565b610bd257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610bf957604051633a954ecd60e21b815260040160405180910390fd5b8015610c0457600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b84169003610c9657600184016000818152600560205260408120549003610c94576001548114610c945760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610cfb83838360405180602001604052806000815250611397565b505050565b6001600160a01b0381166000908152600b6020526040902054610d355760405162461bcd60e51b8152600401610a7a9061211b565b6000610d4183836113e1565b905080600003610d635760405162461bcd60e51b8152600401610a7a90612161565b6001600160a01b038084166000908152600f6020908152604080832093861683529290529081208054839290610d9a9084906121c2565b90915550506001600160a01b0383166000908152600e602052604081208054839290610dc79084906121c2565b90915550610dd8905083838361180c565b604080516001600160a01b038481168252602082018490528516917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a2505050565b610e2b61185e565b601255565b600160115460ff166003811115610e4957610e49611e54565b14610e8e5760405162461bcd60e51b8152602060048201526015602482015274283ab13634b19026b4b73a103737ba103634bb329760591b6044820152606401610a7a565b336000908152600660205260408082205467ffffffffffffffff911c161115610ee75760405162461bcd60e51b815260206004820152600b60248201526a4f6e6c792031206672656560a81b6044820152606401610a7a565b6115b3610efb600254600154036000190190565b610f069060016121c2565b1115610f4a5760405162461bcd60e51b815260206004820152601360248201527213585e081cdd5c1c1b1e48195e18d959591959606a1b6044820152606401610a7a565b610f553360016118b8565b565b60005b601554811015610f8257610f706103ce826110b7565b80610f7a816121d5565b915050610f5a565b50565b60006108c98261179d565b60108054610f9d906120e1565b80601f0160208091040260200160405190810160405280929190818152602001828054610fc9906120e1565b80156110165780601f10610feb57610100808354040283529160200191611016565b820191906000526020600020905b815481529060010190602001808311610ff957829003601f168201915b505050505081565b60006001600160a01b038216611047576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b61107561185e565b610f5560006119b6565b61108761185e565b601455565b6001600160a01b0381166000908152600660205260408082205467ffffffffffffffff911c166108c9565b6000600d82815481106110cc576110cc6121ee565b6000918252602090912001546001600160a01b031692915050565b6060600480546108de906120e1565b6110fe61185e565b601061110a828261224a565b5050565b336001600160a01b038316036111375760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000806111af600a5490565b6111b990476121c2565b90506111e483826111df866001600160a01b03166000908152600c602052604090205490565b611a06565b9392505050565b60006012541161122a5760405162461bcd60e51b815260206004820152600a6024820152690507269636520697320360b41b6044820152606401610a7a565b80601254611238919061230a565b34101561127a5760405162461bcd60e51b815260206004820152601060248201526f4e6f7420656e6f7567682066756e647360801b6044820152606401610a7a565b6014548111156112cc5760405162461bcd60e51b815260206004820152601760248201527f4f766572206d617820616d6f756e74207065722074786e0000000000000000006044820152606401610a7a565b600160115460ff1660038111156112e5576112e5611e54565b1461132a5760405162461bcd60e51b8152602060048201526015602482015274283ab13634b19026b4b73a103737ba103634bb329760591b6044820152606401610a7a565b6115b38161133f600254600154036000190190565b61134991906121c2565b111561138d5760405162461bcd60e51b815260206004820152601360248201527213585e081cdd5c1c1b1e48195e18d959591959606a1b6044820152606401610a7a565b610f8233826118b8565b6113a2848484610b47565b6001600160a01b0383163b156113db576113be84848484611a44565b6113db576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6001600160a01b0382166000908152600e602052604081205481906040516370a0823160e01b81523060048201526001600160a01b038616906370a0823190602401602060405180830381865afa158015611440573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114649190612321565b61146e91906121c2565b6001600160a01b038086166000908152600f60209081526040808320938816835292905220549091506114a49084908390611a06565b949350505050565b60606114b78261164f565b6115035760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610a7a565b601061150e83611b2f565b60405160200161151f92919061233a565b6040516020818303038152906040529050919050565b61153d61185e565b61154e600254600154036000190190565b15610f4a5760405162461bcd60e51b815260206004820152601a60248201527f4f6e6c79206f6e65206d696e7420666f72206465706c6f7965720000000000006044820152606401610a7a565b6115a361185e565b6001600160a01b0381166116085760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a7a565b610f82816119b6565b61161961185e565b80600381111561162b5761162b611e54565b6011805460ff1916600183600381111561164757611647611e54565b021790555050565b600081600111158015611663575060015482105b80156108c9575050600090815260056020526040902054600160e01b161590565b804710156116d45760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a7a565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611721576040519150601f19603f3d011682016040523d82523d6000602084013e611726565b606091505b5050905080610cfb5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610a7a565b600081806001116117f3576001548110156117f35760008181526005602052604081205490600160e01b821690036117f1575b806000036111e45750600019016000818152600560205260409020546117d0565b505b604051636f96cda160e11b815260040160405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610cfb908490611b7e565b6000546001600160a01b03163314610f555760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a7a565b60015460008290036118dd5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526006602090815260408083208054680100000000000000018802019055848352600590915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461198c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611954565b50816000036119ad57604051622e076360e81b815260040160405180910390fd5b60015550505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6009546001600160a01b0384166000908152600b602052604081205490918391611a30908661230a565b611a3a91906123d1565b6114a491906123f3565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a79903390899088908890600401612406565b6020604051808303816000875af1925050508015611ab4575060408051601f3d908101601f19168201909252611ab191810190612443565b60015b611b12573d808015611ae2576040519150601f19603f3d011682016040523d82523d6000602084013e611ae7565b606091505b508051600003611b0a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b604080516080810191829052607f0190826030600a8206018353600a90045b8015611b6c57600183039250600a81066030018353600a9004611b4e565b50819003601f19909101908152919050565b6000611bd3826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611c509092919063ffffffff16565b805190915015610cfb5780806020019051810190611bf19190612460565b610cfb5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610a7a565b60606114a48484600085856001600160a01b0385163b611cb25760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610a7a565b600080866001600160a01b03168587604051611cce919061247d565b60006040518083038185875af1925050503d8060008114611d0b576040519150601f19603f3d011682016040523d82523d6000602084013e611d10565b606091505b5091509150611d20828286611d2b565b979650505050505050565b60608315611d3a5750816111e4565b825115611d4a5782518084602001fd5b8160405162461bcd60e51b8152600401610a7a9190611de7565b6001600160e01b031981168114610f8257600080fd5b600060208284031215611d8c57600080fd5b81356111e481611d64565b60005b83811015611db2578181015183820152602001611d9a565b50506000910152565b60008151808452611dd3816020860160208601611d97565b601f01601f19169290920160200192915050565b6020815260006111e46020830184611dbb565b600060208284031215611e0c57600080fd5b5035919050565b6001600160a01b0381168114610f8257600080fd5b60008060408385031215611e3b57600080fd5b8235611e4681611e13565b946020939093013593505050565b634e487b7160e01b600052602160045260246000fd5b60048110611e8857634e487b7160e01b600052602160045260246000fd5b9052565b60608101611e9a8286611e6a565b602082019390935260400152919050565b600060208284031215611ebd57600080fd5b81356111e481611e13565b600080600060608486031215611edd57600080fd5b8335611ee881611e13565b92506020840135611ef881611e13565b929592945050506040919091013590565b60008060408385031215611f1c57600080fd5b8235611f2781611e13565b91506020830135611f3781611e13565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611f7357611f73611f42565b604051601f8501601f19908116603f01168101908282118183101715611f9b57611f9b611f42565b81604052809350858152868686011115611fb457600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611fe057600080fd5b813567ffffffffffffffff811115611ff757600080fd5b8201601f8101841361200857600080fd5b6114a484823560208401611f58565b8015158114610f8257600080fd5b6000806040838503121561203857600080fd5b823561204381611e13565b91506020830135611f3781612017565b6000806000806080858703121561206957600080fd5b843561207481611e13565b9350602085013561208481611e13565b925060408501359150606085013567ffffffffffffffff8111156120a757600080fd5b8501601f810187136120b857600080fd5b6120c787823560208401611f58565b91505092959194509250565b602081016108c98284611e6a565b600181811c908216806120f557607f821691505b60208210810361211557634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b808201808211156108c9576108c96121ac565b6000600182016121e7576121e76121ac565b5060010190565b634e487b7160e01b600052603260045260246000fd5b601f821115610cfb57600081815260208120601f850160051c8101602086101561222b5750805b601f850160051c820191505b81811015610cd857828155600101612237565b815167ffffffffffffffff81111561226457612264611f42565b6122788161227284546120e1565b84612204565b602080601f8311600181146122ad57600084156122955750858301515b600019600386901b1c1916600185901b178555610cd8565b600085815260208120601f198616915b828110156122dc578886015182559484019460019091019084016122bd565b50858210156122fa5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820281158282048414176108c9576108c96121ac565b60006020828403121561233357600080fd5b5051919050565b6000808454612348816120e1565b600182811680156123605760018114612375576123a4565b60ff19841687528215158302870194506123a4565b8860005260208060002060005b8581101561239b5781548a820152908401908201612382565b50505082870194505b5050505083516123b8818360208801611d97565b64173539b7b760d91b9101908152600501949350505050565b6000826123ee57634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156108c9576108c96121ac565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061243990830184611dbb565b9695505050505050565b60006020828403121561245557600080fd5b81516111e481611d64565b60006020828403121561247257600080fd5b81516111e481612017565b6000825161248f818460208701611d97565b919091019291505056fea2646970667358221220e866663482265de1a190540d6e2f6ec64e9903428f025b07d72ff819d9df147164736f6c63430008110033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000466e688bd0ac1f3b0acf504b034efea74843622c000000000000000000000000e298b6cd30aaee8705f350e91d247e2e91f154020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000009600000000000000000000000000000000000000000000000000000000000003520000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656964676f73716f786937616b626b6737633662337332767a336e716d61736a326776326c35753265737377376336337561366178792f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102605760003560e01c80638b83209b11610144578063c87b56dd116100b6578063d79779b21161007a578063d79779b214610793578063e33b7de3146107c9578063e985e9c5146107de578063ee70c7cb14610827578063f2fde38b1461083d578063f8dcbddb1461085d57600080fd5b8063c87b56dd146106d4578063c893575a146106f4578063c94623db14610709578063cbccefb214610736578063ce7c2ac21461075d57600080fd5b8063a22cb46511610108578063a22cb4651461062b578063a3f8eace1461064b578063a945bf801461066b578063b3ab66b014610681578063b88d4fde14610694578063c45ac050146106b457600080fd5b80638b83209b146105825780638da5cb5b146105a257806395d89b41146105c05780639852595c146105d5578063a0bcfc7f1461060b57600080fd5b806342842e0e116101dd5780636352211e116101a15780636352211e146104d85780636c0360eb146104f857806370a082311461050d578063715018a61461052d5780638a02e3b9146105425780638a59a7fd1461056257600080fd5b806342842e0e1461044e57806348b750441461046e5780634fda72851461048e5780635b70ea9f146104ae5780635be7fde8146104c357600080fd5b806318160ddd1161022457806318160ddd1461038757806319165587146103b357806323b872dd146103d35780633a98ef39146103f3578063406072a91461040857600080fd5b806301ffc9a7146102ae57806306fdde03146102e3578063081812fc14610305578063095ea7b31461033d5780630c3f6acf1461035f57600080fd5b366102a9577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156102ba57600080fd5b506102ce6102c9366004611d7a565b61087d565b60405190151581526020015b60405180910390f35b3480156102ef57600080fd5b506102f86108cf565b6040516102da9190611de7565b34801561031157600080fd5b50610325610320366004611dfa565b610961565b6040516001600160a01b0390911681526020016102da565b34801561034957600080fd5b5061035d610358366004611e28565b6109a5565b005b34801561036b57600080fd5b506011546012546014546040516102da9360ff16929190611e8c565b34801561039357600080fd5b506103a5600254600154036000190190565b6040519081526020016102da565b3480156103bf57600080fd5b5061035d6103ce366004611eab565b610a45565b3480156103df57600080fd5b5061035d6103ee366004611ec8565b610b47565b3480156103ff57600080fd5b506009546103a5565b34801561041457600080fd5b506103a5610423366004611f09565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b34801561045a57600080fd5b5061035d610469366004611ec8565b610ce0565b34801561047a57600080fd5b5061035d610489366004611f09565b610d00565b34801561049a57600080fd5b5061035d6104a9366004611dfa565b610e23565b3480156104ba57600080fd5b5061035d610e30565b3480156104cf57600080fd5b5061035d610f57565b3480156104e457600080fd5b506103256104f3366004611dfa565b610f85565b34801561050457600080fd5b506102f8610f90565b34801561051957600080fd5b506103a5610528366004611eab565b61101e565b34801561053957600080fd5b5061035d61106d565b34801561054e57600080fd5b5061035d61055d366004611dfa565b61107f565b34801561056e57600080fd5b506103a561057d366004611eab565b61108c565b34801561058e57600080fd5b5061032561059d366004611dfa565b6110b7565b3480156105ae57600080fd5b506000546001600160a01b0316610325565b3480156105cc57600080fd5b506102f86110e7565b3480156105e157600080fd5b506103a56105f0366004611eab565b6001600160a01b03166000908152600c602052604090205490565b34801561061757600080fd5b5061035d610626366004611fce565b6110f6565b34801561063757600080fd5b5061035d610646366004612025565b61110e565b34801561065757600080fd5b506103a5610666366004611eab565b6111a3565b34801561067757600080fd5b506103a560125481565b61035d61068f366004611dfa565b6111eb565b3480156106a057600080fd5b5061035d6106af366004612053565b611397565b3480156106c057600080fd5b506103a56106cf366004611f09565b6113e1565b3480156106e057600080fd5b506102f86106ef366004611dfa565b6114ac565b34801561070057600080fd5b5061035d611535565b34801561071557600080fd5b506103a5610724366004611eab565b60136020526000908152604090205481565b34801561074257600080fd5b506011546107509060ff1681565b6040516102da91906120d3565b34801561076957600080fd5b506103a5610778366004611eab565b6001600160a01b03166000908152600b602052604090205490565b34801561079f57600080fd5b506103a56107ae366004611eab565b6001600160a01b03166000908152600e602052604090205490565b3480156107d557600080fd5b50600a546103a5565b3480156107ea57600080fd5b506102ce6107f9366004611f09565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561083357600080fd5b506103a560145481565b34801561084957600080fd5b5061035d610858366004611eab565b61159b565b34801561086957600080fd5b5061035d610878366004611dfa565b611611565b60006301ffc9a760e01b6001600160e01b0319831614806108ae57506380ac58cd60e01b6001600160e01b03198316145b806108c95750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546108de906120e1565b80601f016020809104026020016040519081016040528092919081815260200182805461090a906120e1565b80156109575780601f1061092c57610100808354040283529160200191610957565b820191906000526020600020905b81548152906001019060200180831161093a57829003601f168201915b5050505050905090565b600061096c8261164f565b610989576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006109b082610f85565b9050336001600160a01b038216146109e9576109cc81336107f9565b6109e9576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6001600160a01b0381166000908152600b6020526040902054610a835760405162461bcd60e51b8152600401610a7a9061211b565b60405180910390fd5b6000610a8e826111a3565b905080600003610ab05760405162461bcd60e51b8152600401610a7a90612161565b6001600160a01b0382166000908152600c602052604081208054839290610ad89084906121c2565b9250508190555080600a6000828254610af191906121c2565b90915550610b0190508282611684565b604080516001600160a01b0384168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a15050565b6000610b528261179d565b9050836001600160a01b0316816001600160a01b031614610b855760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b03881690911417610bd257610bb586336107f9565b610bd257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610bf957604051633a954ecd60e21b815260040160405180910390fd5b8015610c0457600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b84169003610c9657600184016000818152600560205260408120549003610c94576001548114610c945760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610cfb83838360405180602001604052806000815250611397565b505050565b6001600160a01b0381166000908152600b6020526040902054610d355760405162461bcd60e51b8152600401610a7a9061211b565b6000610d4183836113e1565b905080600003610d635760405162461bcd60e51b8152600401610a7a90612161565b6001600160a01b038084166000908152600f6020908152604080832093861683529290529081208054839290610d9a9084906121c2565b90915550506001600160a01b0383166000908152600e602052604081208054839290610dc79084906121c2565b90915550610dd8905083838361180c565b604080516001600160a01b038481168252602082018490528516917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a2505050565b610e2b61185e565b601255565b600160115460ff166003811115610e4957610e49611e54565b14610e8e5760405162461bcd60e51b8152602060048201526015602482015274283ab13634b19026b4b73a103737ba103634bb329760591b6044820152606401610a7a565b336000908152600660205260408082205467ffffffffffffffff911c161115610ee75760405162461bcd60e51b815260206004820152600b60248201526a4f6e6c792031206672656560a81b6044820152606401610a7a565b6115b3610efb600254600154036000190190565b610f069060016121c2565b1115610f4a5760405162461bcd60e51b815260206004820152601360248201527213585e081cdd5c1c1b1e48195e18d959591959606a1b6044820152606401610a7a565b610f553360016118b8565b565b60005b601554811015610f8257610f706103ce826110b7565b80610f7a816121d5565b915050610f5a565b50565b60006108c98261179d565b60108054610f9d906120e1565b80601f0160208091040260200160405190810160405280929190818152602001828054610fc9906120e1565b80156110165780601f10610feb57610100808354040283529160200191611016565b820191906000526020600020905b815481529060010190602001808311610ff957829003601f168201915b505050505081565b60006001600160a01b038216611047576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b61107561185e565b610f5560006119b6565b61108761185e565b601455565b6001600160a01b0381166000908152600660205260408082205467ffffffffffffffff911c166108c9565b6000600d82815481106110cc576110cc6121ee565b6000918252602090912001546001600160a01b031692915050565b6060600480546108de906120e1565b6110fe61185e565b601061110a828261224a565b5050565b336001600160a01b038316036111375760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000806111af600a5490565b6111b990476121c2565b90506111e483826111df866001600160a01b03166000908152600c602052604090205490565b611a06565b9392505050565b60006012541161122a5760405162461bcd60e51b815260206004820152600a6024820152690507269636520697320360b41b6044820152606401610a7a565b80601254611238919061230a565b34101561127a5760405162461bcd60e51b815260206004820152601060248201526f4e6f7420656e6f7567682066756e647360801b6044820152606401610a7a565b6014548111156112cc5760405162461bcd60e51b815260206004820152601760248201527f4f766572206d617820616d6f756e74207065722074786e0000000000000000006044820152606401610a7a565b600160115460ff1660038111156112e5576112e5611e54565b1461132a5760405162461bcd60e51b8152602060048201526015602482015274283ab13634b19026b4b73a103737ba103634bb329760591b6044820152606401610a7a565b6115b38161133f600254600154036000190190565b61134991906121c2565b111561138d5760405162461bcd60e51b815260206004820152601360248201527213585e081cdd5c1c1b1e48195e18d959591959606a1b6044820152606401610a7a565b610f8233826118b8565b6113a2848484610b47565b6001600160a01b0383163b156113db576113be84848484611a44565b6113db576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6001600160a01b0382166000908152600e602052604081205481906040516370a0823160e01b81523060048201526001600160a01b038616906370a0823190602401602060405180830381865afa158015611440573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114649190612321565b61146e91906121c2565b6001600160a01b038086166000908152600f60209081526040808320938816835292905220549091506114a49084908390611a06565b949350505050565b60606114b78261164f565b6115035760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610a7a565b601061150e83611b2f565b60405160200161151f92919061233a565b6040516020818303038152906040529050919050565b61153d61185e565b61154e600254600154036000190190565b15610f4a5760405162461bcd60e51b815260206004820152601a60248201527f4f6e6c79206f6e65206d696e7420666f72206465706c6f7965720000000000006044820152606401610a7a565b6115a361185e565b6001600160a01b0381166116085760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a7a565b610f82816119b6565b61161961185e565b80600381111561162b5761162b611e54565b6011805460ff1916600183600381111561164757611647611e54565b021790555050565b600081600111158015611663575060015482105b80156108c9575050600090815260056020526040902054600160e01b161590565b804710156116d45760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a7a565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611721576040519150601f19603f3d011682016040523d82523d6000602084013e611726565b606091505b5050905080610cfb5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610a7a565b600081806001116117f3576001548110156117f35760008181526005602052604081205490600160e01b821690036117f1575b806000036111e45750600019016000818152600560205260409020546117d0565b505b604051636f96cda160e11b815260040160405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610cfb908490611b7e565b6000546001600160a01b03163314610f555760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a7a565b60015460008290036118dd5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526006602090815260408083208054680100000000000000018802019055848352600590915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461198c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611954565b50816000036119ad57604051622e076360e81b815260040160405180910390fd5b60015550505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6009546001600160a01b0384166000908152600b602052604081205490918391611a30908661230a565b611a3a91906123d1565b6114a491906123f3565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a79903390899088908890600401612406565b6020604051808303816000875af1925050508015611ab4575060408051601f3d908101601f19168201909252611ab191810190612443565b60015b611b12573d808015611ae2576040519150601f19603f3d011682016040523d82523d6000602084013e611ae7565b606091505b508051600003611b0a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b604080516080810191829052607f0190826030600a8206018353600a90045b8015611b6c57600183039250600a81066030018353600a9004611b4e565b50819003601f19909101908152919050565b6000611bd3826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611c509092919063ffffffff16565b805190915015610cfb5780806020019051810190611bf19190612460565b610cfb5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610a7a565b60606114a48484600085856001600160a01b0385163b611cb25760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610a7a565b600080866001600160a01b03168587604051611cce919061247d565b60006040518083038185875af1925050503d8060008114611d0b576040519150601f19603f3d011682016040523d82523d6000602084013e611d10565b606091505b5091509150611d20828286611d2b565b979650505050505050565b60608315611d3a5750816111e4565b825115611d4a5782518084602001fd5b8160405162461bcd60e51b8152600401610a7a9190611de7565b6001600160e01b031981168114610f8257600080fd5b600060208284031215611d8c57600080fd5b81356111e481611d64565b60005b83811015611db2578181015183820152602001611d9a565b50506000910152565b60008151808452611dd3816020860160208601611d97565b601f01601f19169290920160200192915050565b6020815260006111e46020830184611dbb565b600060208284031215611e0c57600080fd5b5035919050565b6001600160a01b0381168114610f8257600080fd5b60008060408385031215611e3b57600080fd5b8235611e4681611e13565b946020939093013593505050565b634e487b7160e01b600052602160045260246000fd5b60048110611e8857634e487b7160e01b600052602160045260246000fd5b9052565b60608101611e9a8286611e6a565b602082019390935260400152919050565b600060208284031215611ebd57600080fd5b81356111e481611e13565b600080600060608486031215611edd57600080fd5b8335611ee881611e13565b92506020840135611ef881611e13565b929592945050506040919091013590565b60008060408385031215611f1c57600080fd5b8235611f2781611e13565b91506020830135611f3781611e13565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611f7357611f73611f42565b604051601f8501601f19908116603f01168101908282118183101715611f9b57611f9b611f42565b81604052809350858152868686011115611fb457600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611fe057600080fd5b813567ffffffffffffffff811115611ff757600080fd5b8201601f8101841361200857600080fd5b6114a484823560208401611f58565b8015158114610f8257600080fd5b6000806040838503121561203857600080fd5b823561204381611e13565b91506020830135611f3781612017565b6000806000806080858703121561206957600080fd5b843561207481611e13565b9350602085013561208481611e13565b925060408501359150606085013567ffffffffffffffff8111156120a757600080fd5b8501601f810187136120b857600080fd5b6120c787823560208401611f58565b91505092959194509250565b602081016108c98284611e6a565b600181811c908216806120f557607f821691505b60208210810361211557634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b808201808211156108c9576108c96121ac565b6000600182016121e7576121e76121ac565b5060010190565b634e487b7160e01b600052603260045260246000fd5b601f821115610cfb57600081815260208120601f850160051c8101602086101561222b5750805b601f850160051c820191505b81811015610cd857828155600101612237565b815167ffffffffffffffff81111561226457612264611f42565b6122788161227284546120e1565b84612204565b602080601f8311600181146122ad57600084156122955750858301515b600019600386901b1c1916600185901b178555610cd8565b600085815260208120601f198616915b828110156122dc578886015182559484019460019091019084016122bd565b50858210156122fa5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820281158282048414176108c9576108c96121ac565b60006020828403121561233357600080fd5b5051919050565b6000808454612348816120e1565b600182811680156123605760018114612375576123a4565b60ff19841687528215158302870194506123a4565b8860005260208060002060005b8581101561239b5781548a820152908401908201612382565b50505082870194505b5050505083516123b8818360208801611d97565b64173539b7b760d91b9101908152600501949350505050565b6000826123ee57634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156108c9576108c96121ac565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061243990830184611dbb565b9695505050505050565b60006020828403121561245557600080fd5b81516111e481611d64565b60006020828403121561247257600080fd5b81516111e481612017565b6000825161248f818460208701611d97565b919091019291505056fea2646970667358221220e866663482265de1a190540d6e2f6ec64e9903428f025b07d72ff819d9df147164736f6c63430008110033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000466e688bd0ac1f3b0acf504b034efea74843622c000000000000000000000000e298b6cd30aaee8705f350e91d247e2e91f154020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000009600000000000000000000000000000000000000000000000000000000000003520000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656964676f73716f786937616b626b6737633662337332767a336e716d61736a326776326c35753265737377376336337561366178792f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _team (address[]): 0x466E688bD0Ac1f3B0acf504B034efea74843622C,0xE298b6Cd30Aaee8705f350E91D247E2e91F15402
Arg [1] : _teamShares (uint256[]): 150,850
Arg [2] : _baseURI (string): ipfs://bafybeidgosqoxi7akbkg7c6b3s2vz3nqmasj2gv2l5u2essw7c63ua6axy/

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [4] : 000000000000000000000000466e688bd0ac1f3b0acf504b034efea74843622c
Arg [5] : 000000000000000000000000e298b6cd30aaee8705f350e91d247e2e91f15402
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000096
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000352
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [10] : 697066733a2f2f6261667962656964676f73716f786937616b626b6737633662
Arg [11] : 337332767a336e716d61736a326776326c357532657373773763363375613661
Arg [12] : 78792f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

79001:2793:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32111:40;8611:10;32111:40;;;-1:-1:-1;;;;;206:32:1;;;188:51;;32141:9:0;270:2:1;255:18;;248:34;161:18;32111:40:0;;;;;;;79001:2793;;;;;46189:639;;;;;;;;;;-1:-1:-1;46189:639:0;;;;;:::i;:::-;;:::i;:::-;;;844:14:1;;837:22;819:41;;807:2;792:18;46189:639:0;;;;;;;;47091:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;53574:218::-;;;;;;;;;;-1:-1:-1;53574:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1976:32:1;;;1958:51;;1946:2;1931:18;53574:218:0;1812:203:1;53015:400:0;;;;;;;;;;-1:-1:-1;53015:400:0;;;;;:::i;:::-;;:::i;:::-;;80678:140;;;;;;;;;;-1:-1:-1;80762:11:0;;80775;;80788:21;;80678:140;;;;80762:11;;;80775;80788:21;80678:140;:::i;42842:323::-;;;;;;;;;;;;43116:12;;42441:1;43100:13;:28;-1:-1:-1;;43100:46:0;;42842:323;;;;3336:25:1;;;3324:2;3309:18;42842:323:0;3190:177:1;34632:453:0;;;;;;;;;;-1:-1:-1;34632:453:0;;;;;:::i;:::-;;:::i;57281:2817::-;;;;;;;;;;-1:-1:-1;57281:2817:0;;;;;:::i;:::-;;:::i;32242:91::-;;;;;;;;;;-1:-1:-1;32313:12:0;;32242:91;;33371:135;;;;;;;;;;-1:-1:-1;33371:135:0;;;;;:::i;:::-;-1:-1:-1;;;;;33468:21:0;;;33441:7;33468:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;33371:135;60194:185;;;;;;;;;;-1:-1:-1;60194:185:0;;;;;:::i;:::-;;:::i;35353:514::-;;;;;;;;;;-1:-1:-1;35353:514:0;;;;;:::i;:::-;;:::i;80826:110::-;;;;;;;;;;-1:-1:-1;80826:110:0;;;;;:::i;:::-;;:::i;79901:286::-;;;;;;;;;;;;;:::i;81650:141::-;;;;;;;;;;;;;:::i;48484:152::-;;;;;;;;;;-1:-1:-1;48484:152:0;;;;;:::i;:::-;;:::i;79193:21::-;;;;;;;;;;;;;:::i;44026:233::-;;;;;;;;;;-1:-1:-1;44026:233:0;;;;;:::i;:::-;;:::i;29354:103::-;;;;;;;;;;;;;:::i;81152:105::-;;;;;;;;;;-1:-1:-1;81152:105:0;;;;;:::i;:::-;;:::i;81265:122::-;;;;;;;;;;-1:-1:-1;81265:122:0;;;;;:::i;:::-;;:::i;33597:100::-;;;;;;;;;;-1:-1:-1;33597:100:0;;;;;:::i;:::-;;:::i;28706:87::-;;;;;;;;;;-1:-1:-1;28752:7:0;28779:6;-1:-1:-1;;;;;28779:6:0;28706:87;;47267:104;;;;;;;;;;;;;:::i;33093:109::-;;;;;;;;;;-1:-1:-1;33093:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;33176:18:0;33149:7;33176:18;;;:9;:18;;;;;;;33093:109;80944:100;;;;;;;;;;-1:-1:-1;80944:100:0;;;;;:::i;:::-;;:::i;54132:308::-;;;;;;;;;;-1:-1:-1;54132:308:0;;;;;:::i;:::-;;:::i;33787:225::-;;;;;;;;;;-1:-1:-1;33787:225:0;;;;;:::i;:::-;;:::i;79303:38::-;;;;;;;;;;;;;;;;80195:475;;;;;;:::i;:::-;;:::i;60977:399::-;;;;;;;;;;-1:-1:-1;60977:399:0;;;;;:::i;:::-;;:::i;34172:260::-;;;;;;;;;;-1:-1:-1;34172:260:0;;;;;:::i;:::-;;:::i;81395:247::-;;;;;;;;;;-1:-1:-1;81395:247:0;;;;;:::i;:::-;;:::i;79736:153::-;;;;;;;;;;;;;:::i;79350:57::-;;;;;;;;;;-1:-1:-1;79350:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;79223:23;;;;;;;;;;-1:-1:-1;79223:23:0;;;;;;;;;;;;;;;:::i;32889:105::-;;;;;;;;;;-1:-1:-1;32889:105:0;;;;;:::i;:::-;-1:-1:-1;;;;;32970:16:0;32943:7;32970:16;;;:7;:16;;;;;;;32889:105;32679:119;;;;;;;;;;-1:-1:-1;32679:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;32764:26:0;32737:7;32764:26;;;:19;:26;;;;;;;32679:119;32427:95;;;;;;;;;;-1:-1:-1;32500:14:0;;32427:95;;54597:164;;;;;;;;;;-1:-1:-1;54597:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;54718:25:0;;;54694:4;54718:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;54597:164;79416:38;;;;;;;;;;;;;;;;29612:201;;;;;;;;;;-1:-1:-1;29612:201:0;;;;;:::i;:::-;;:::i;81052:92::-;;;;;;;;;;-1:-1:-1;81052:92:0;;;;;:::i;:::-;;:::i;46189:639::-;46274:4;-1:-1:-1;;;;;;;;;46598:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;46675:25:0;;;46598:102;:179;;;-1:-1:-1;;;;;;;;;;46752:25:0;;;46598:179;46578:199;46189:639;-1:-1:-1;;46189:639:0:o;47091:100::-;47145:13;47178:5;47171:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47091:100;:::o;53574:218::-;53650:7;53675:16;53683:7;53675;:16::i;:::-;53670:64;;53700:34;;-1:-1:-1;;;53700:34:0;;;;;;;;;;;53670:64;-1:-1:-1;53754:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;53754:30:0;;53574:218::o;53015:400::-;53096:13;53112:16;53120:7;53112;:16::i;:::-;53096:32;-1:-1:-1;8611:10:0;-1:-1:-1;;;;;53145:28:0;;;53141:175;;53193:44;53210:5;8611:10;54597:164;:::i;53193:44::-;53188:128;;53265:35;;-1:-1:-1;;;53265:35:0;;;;;;;;;;;53188:128;53328:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;53328:35:0;-1:-1:-1;;;;;53328:35:0;;;;;;;;;53379:28;;53328:24;;53379:28;;;;;;;53085:330;53015:400;;:::o;34632:453::-;-1:-1:-1;;;;;34708:16:0;;34727:1;34708:16;;;:7;:16;;;;;;34700:71;;;;-1:-1:-1;;;34700:71:0;;;;;;;:::i;:::-;;;;;;;;;34784:15;34802:19;34813:7;34802:10;:19::i;:::-;34784:37;;34842:7;34853:1;34842:12;34834:68;;;;-1:-1:-1;;;34834:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34915:18:0;;;;;;:9;:18;;;;;:29;;34937:7;;34915:18;:29;;34937:7;;34915:29;:::i;:::-;;;;;;;;34973:7;34955:14;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;34993:35:0;;-1:-1:-1;35011:7:0;35020;34993:17;:35::i;:::-;35044:33;;;-1:-1:-1;;;;;206:32:1;;188:51;;270:2;255:18;;248:34;;;35044:33:0;;161:18:1;35044:33:0;;;;;;;34689:396;34632:453;:::o;57281:2817::-;57415:27;57445;57464:7;57445:18;:27::i;:::-;57415:57;;57530:4;-1:-1:-1;;;;;57489:45:0;57505:19;-1:-1:-1;;;;;57489:45:0;;57485:86;;57543:28;;-1:-1:-1;;;57543:28:0;;;;;;;;;;;57485:86;57585:27;56395:24;;;:15;:24;;;;;56617:26;;8611:10;56020:30;;;-1:-1:-1;;;;;55713:28:0;;55998:20;;;55995:56;57771:180;;57864:43;57881:4;8611:10;54597:164;:::i;57864:43::-;57859:92;;57916:35;;-1:-1:-1;;;57916:35:0;;;;;;;;;;;57859:92;-1:-1:-1;;;;;57968:16:0;;57964:52;;57993:23;;-1:-1:-1;;;57993:23:0;;;;;;;;;;;57964:52;58165:15;58162:160;;;58305:1;58284:19;58277:30;58162:160;-1:-1:-1;;;;;58702:24:0;;;;;;;:18;:24;;;;;;58700:26;;-1:-1:-1;;58700:26:0;;;58771:22;;;;;;;;;58769:24;;-1:-1:-1;58769:24:0;;;51873:11;51848:23;51844:41;51831:63;-1:-1:-1;;;51831:63:0;59064:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;59359:47:0;;:52;;59355:627;;59464:1;59454:11;;59432:19;59587:30;;;:17;:30;;;;;;:35;;59583:384;;59725:13;;59710:11;:28;59706:242;;59872:30;;;;:17;:30;;;;;:52;;;59706:242;59413:569;59355:627;60029:7;60025:2;-1:-1:-1;;;;;60010:27:0;60019:4;-1:-1:-1;;;;;60010:27:0;;;;;;;;;;;60048:42;57404:2694;;;57281:2817;;;:::o;60194:185::-;60332:39;60349:4;60355:2;60359:7;60332:39;;;;;;;;;;;;:16;:39::i;:::-;60194:185;;;:::o;35353:514::-;-1:-1:-1;;;;;35435:16:0;;35454:1;35435:16;;;:7;:16;;;;;;35427:71;;;;-1:-1:-1;;;35427:71:0;;;;;;;:::i;:::-;35511:15;35529:26;35540:5;35547:7;35529:10;:26::i;:::-;35511:44;;35576:7;35587:1;35576:12;35568:68;;;;-1:-1:-1;;;35568:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35649:21:0;;;;;;;:14;:21;;;;;;;;:30;;;;;;;;;;;:41;;35683:7;;35649:21;:41;;35683:7;;35649:41;:::i;:::-;;;;-1:-1:-1;;;;;;;35701:26:0;;;;;;:19;:26;;;;;:37;;35731:7;;35701:26;:37;;35731:7;;35701:37;:::i;:::-;;;;-1:-1:-1;35751:47:0;;-1:-1:-1;35774:5:0;35781:7;35790;35751:22;:47::i;:::-;35814:45;;;-1:-1:-1;;;;;206:32:1;;;188:51;;270:2;255:18;;248:34;;;35814:45:0;;;;;161:18:1;35814:45:0;;;;;;;35416:451;35353:514;;:::o;80826:110::-;28592:13;:11;:13::i;:::-;80905:11:::1;:23:::0;80826:110::o;79901:286::-;79959:15;79944:11;;;;:30;;;;;;;;:::i;:::-;;79941:66;;79976:31;;-1:-1:-1;;;79976:31:0;;10104:2:1;79976:31:0;;;10086:21:1;10143:2;10123:18;;;10116:30;-1:-1:-1;;;10162:18:1;;;10155:51;10223:18;;79976:31:0;9902:345:1;79941:66:0;80035:10;80049:1;44430:25;;;:18;:25;;38323:2;44430:25;;;;38185:13;44430:50;;44429:82;80021:29;80018:55;;;80052:21;;-1:-1:-1;;;80052:21:0;;10454:2:1;80052:21:0;;;10436::1;10493:2;10473:18;;;10466:30;-1:-1:-1;;;10512:18:1;;;10505:41;10563:18;;80052:21:0;10252:335:1;80018:55:0;79290:4;80087:13;43116:12;;42441:1;43100:13;:28;-1:-1:-1;;43100:46:0;;42842:323;80087:13;:17;;80103:1;80087:17;:::i;:::-;:30;80084:64;;;80119:29;;-1:-1:-1;;;80119:29:0;;10794:2:1;80119:29:0;;;10776:21:1;10833:2;10813:18;;;10806:30;-1:-1:-1;;;10852:18:1;;;10845:49;10911:18;;80119:29:0;10592:343:1;80084:64:0;80159:20;80165:10;80177:1;80159:5;:20::i;:::-;79901:286::o;81650:141::-;81696:6;81692:92;81713:10;;81709:1;:14;81692:92;;;81746:26;81762:8;81768:1;81762:5;:8::i;81746:26::-;81726:3;;;;:::i;:::-;;;;81692:92;;;;81650:141::o;48484:152::-;48556:7;48599:27;48618:7;48599:18;:27::i;79193:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44026:233::-;44098:7;-1:-1:-1;;;;;44122:19:0;;44118:60;;44150:28;;-1:-1:-1;;;44150:28:0;;;;;;;;;;;44118:60;-1:-1:-1;;;;;;44196:25:0;;;;;:18;:25;;;;;;38185:13;44196:55;;44026:233::o;29354:103::-;28592:13;:11;:13::i;:::-;29419:30:::1;29446:1;29419:18;:30::i;81152:105::-:0;28592:13;:11;:13::i;:::-;81219:21:::1;:30:::0;81152:105::o;81265:122::-;-1:-1:-1;;;;;44430:25:0;;81330:7;44430:25;;;:18;:25;;38323:2;44430:25;;;;38185:13;44430:50;;44429:82;81357:22;44341:178;33597:100;33648:7;33675;33683:5;33675:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;33675:14:0;;33597:100;-1:-1:-1;;33597:100:0:o;47267:104::-;47323:13;47356:7;47349:14;;;;;:::i;80944:100::-;28592:13;:11;:13::i;:::-;81018:7:::1;:18;81028:8:::0;81018:7;:18:::1;:::i;:::-;;80944:100:::0;:::o;54132:308::-;8611:10;-1:-1:-1;;;;;54231:31:0;;;54227:61;;54271:17;;-1:-1:-1;;;54271:17:0;;;;;;;;;;;54227:61;8611:10;54301:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;54301:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;54301:60:0;;;;;;;;;;54377:55;;819:41:1;;;54301:49:0;;8611:10;54377:55;;792:18:1;54377:55:0;;;;;;;54132:308;;:::o;33787:225::-;33845:7;33865:21;33913:15;32500:14;;;32427:95;33913:15;33889:39;;:21;:39;:::i;:::-;33865:63;;33946:58;33962:7;33971:13;33986:17;33995:7;-1:-1:-1;;;;;33176:18:0;33149:7;33176:18;;;:9;:18;;;;;;;33093:109;33986:17;33946:15;:58::i;:::-;33939:65;33787:225;-1:-1:-1;;;33787:225:0:o;80195:475::-;80281:1;80266:11;;:16;80263:41;;80284:20;;-1:-1:-1;;;80284:20:0;;13618:2:1;80284:20:0;;;13600:21:1;13657:2;13637:18;;;13630:30;-1:-1:-1;;;13676:18:1;;;13669:40;13726:18;;80284:20:0;13416:334:1;80263:41:0;80344:9;80330:11;;:23;;;;:::i;:::-;80318:9;:35;80315:66;;;80355:26;;-1:-1:-1;;;80355:26:0;;14130:2:1;80355:26:0;;;14112:21:1;14169:2;14149:18;;;14142:30;-1:-1:-1;;;14188:18:1;;;14181:46;14244:18;;80355:26:0;13928:340:1;80315:66:0;80407:21;;80395:9;:33;80392:71;;;80430:33;;-1:-1:-1;;;80430:33:0;;14475:2:1;80430:33:0;;;14457:21:1;14514:2;14494:18;;;14487:30;14553:25;14533:18;;;14526:53;14596:18;;80430:33:0;14273:347:1;80392:71:0;80492:15;80477:11;;;;:30;;;;;;;;:::i;:::-;;80474:66;;80509:31;;-1:-1:-1;;;80509:31:0;;10104:2:1;80509:31:0;;;10086:21:1;10143:2;10123:18;;;10116:30;-1:-1:-1;;;10162:18:1;;;10155:51;10223:18;;80509:31:0;9902:345:1;80474:66:0;79290:4;80570:9;80554:13;43116:12;;42441:1;43100:13;:28;-1:-1:-1;;43100:46:0;;42842:323;80554:13;:25;;;;:::i;:::-;:38;80551:72;;;80594:29;;-1:-1:-1;;;80594:29:0;;10794:2:1;80594:29:0;;;10776:21:1;10833:2;10813:18;;;10806:30;-1:-1:-1;;;10852:18:1;;;10845:49;10911:18;;80594:29:0;10592:343:1;80551:72:0;80634:28;80640:10;80652:9;80634:5;:28::i;60977:399::-;61144:31;61157:4;61163:2;61167:7;61144:12;:31::i;:::-;-1:-1:-1;;;;;61190:14:0;;;:19;61186:183;;61229:56;61260:4;61266:2;61270:7;61279:5;61229:30;:56::i;:::-;61224:145;;61313:40;;-1:-1:-1;;;61313:40:0;;;;;;;;;;;61224:145;60977:399;;;;:::o;34172:260::-;-1:-1:-1;;;;;32764:26:0;;34244:7;32764:26;;;:19;:26;;;;;;34244:7;;34288:30;;-1:-1:-1;;;34288:30:0;;34312:4;34288:30;;;1958:51:1;-1:-1:-1;;;;;34288:15:0;;;;;1931:18:1;;34288:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;-1:-1:-1;;;;;33468:21:0;;;33441:7;33468:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;34264:77;;-1:-1:-1;34359:65:0;;34375:7;;34264:77;;33946:15;:58::i;34359:65::-;34352:72;34172:260;-1:-1:-1;;;;34172:260:0:o;81395:247::-;81466:13;81500:17;81508:8;81500:7;:17::i;:::-;81492:61;;;;-1:-1:-1;;;81492:61:0;;15016:2:1;81492:61:0;;;14998:21:1;15055:2;15035:18;;;15028:30;15094:33;15074:18;;;15067:61;15145:18;;81492:61:0;14814:355:1;81492:61:0;81595:7;81604:19;81614:8;81604:9;:19::i;:::-;81578:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;81564:70;;81395:247;;;:::o;79736:153::-;28592:13;:11;:13::i;:::-;79794::::1;43116:12:::0;;42441:1;43100:13;:28;-1:-1:-1;;43100:46:0;;42842:323;79794:13:::1;:18:::0;79791:59:::1;;79814:36;::::0;-1:-1:-1;;;79814:36:0;;16568:2:1;79814:36:0::1;::::0;::::1;16550:21:1::0;16607:2;16587:18;;;16580:30;16646:28;16626:18;;;16619:56;16692:18;;79814:36:0::1;16366:350:1::0;29612:201:0;28592:13;:11;:13::i;:::-;-1:-1:-1;;;;;29701:22:0;::::1;29693:73;;;::::0;-1:-1:-1;;;29693:73:0;;16923:2:1;29693:73:0::1;::::0;::::1;16905:21:1::0;16962:2;16942:18;;;16935:30;17001:34;16981:18;;;16974:62;-1:-1:-1;;;17052:18:1;;;17045:36;17098:19;;29693:73:0::1;16721:402:1::0;29693:73:0::1;29777:28;29796:8;29777:18;:28::i;81052:92::-:0;28592:13;:11;:13::i;:::-;81130:5:::1;81125:11;;;;;;;;:::i;:::-;81111;:25:::0;;-1:-1:-1;;81111:25:0::1;::::0;;::::1;::::0;::::1;;;;;;:::i;:::-;;;;;;81052:92:::0;:::o;55019:282::-;55084:4;55140:7;42441:1;55121:26;;:66;;;;;55174:13;;55164:7;:23;55121:66;:153;;;;-1:-1:-1;;55225:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;55225:44:0;:49;;55019:282::o;2439:317::-;2554:6;2529:21;:31;;2521:73;;;;-1:-1:-1;;;2521:73:0;;17330:2:1;2521:73:0;;;17312:21:1;17369:2;17349:18;;;17342:30;17408:31;17388:18;;;17381:59;17457:18;;2521:73:0;17128:353:1;2521:73:0;2608:12;2626:9;-1:-1:-1;;;;;2626:14:0;2648:6;2626:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2607:52;;;2678:7;2670:78;;;;-1:-1:-1;;;2670:78:0;;17898:2:1;2670:78:0;;;17880:21:1;17937:2;17917:18;;;17910:30;17976:34;17956:18;;;17949:62;18047:28;18027:18;;;18020:56;18093:19;;2670:78:0;17696:422:1;49639:1275:0;49706:7;49741;;42441:1;49790:23;49786:1061;;49843:13;;49836:4;:20;49832:1015;;;49881:14;49898:23;;;:17;:23;;;;;;;-1:-1:-1;;;49987:24:0;;:29;;49983:845;;50652:113;50659:6;50669:1;50659:11;50652:113;;-1:-1:-1;;;50730:6:0;50712:25;;;;:17;:25;;;;;;50652:113;;49983:845;49858:989;49832:1015;50875:31;;-1:-1:-1;;;50875:31:0;;;;;;;;;;;22041:211;22185:58;;;-1:-1:-1;;;;;206:32:1;;22185:58:0;;;188:51:1;255:18;;;;248:34;;;22185:58:0;;;;;;;;;;161:18:1;;;;22185:58:0;;;;;;;;-1:-1:-1;;;;;22185:58:0;-1:-1:-1;;;22185:58:0;;;22158:86;;22178:5;;22158:19;:86::i;28871:132::-;28752:7;28779:6;-1:-1:-1;;;;;28779:6:0;8611:10;28935:23;28927:68;;;;-1:-1:-1;;;28927:68:0;;18325:2:1;28927:68:0;;;18307:21:1;;;18344:18;;;18337:30;18403:34;18383:18;;;18376:62;18455:18;;28927:68:0;18123:356:1;64638:2454:0;64734:13;;64711:20;64762:13;;;64758:44;;64784:18;;-1:-1:-1;;;64784:18:0;;;;;;;;;;;64758:44;-1:-1:-1;;;;;65290:22:0;;;;;;:18;:22;;;;38323:2;65290:22;;;:71;;65328:32;65316:45;;65290:71;;;65604:31;;;:17;:31;;;;;-1:-1:-1;52304:15:0;;52278:24;52274:46;51873:11;51848:23;51844:41;51841:52;51831:63;;65604:173;;65839:23;;;;65604:31;;65290:22;;66338:25;65290:22;;66191:335;66606:1;66592:12;66588:20;66546:346;66647:3;66638:7;66635:16;66546:346;;66865:7;66855:8;66852:1;66825:25;66822:1;66819;66814:59;66700:1;66687:15;66546:346;;;66550:77;66925:8;66937:1;66925:13;66921:45;;66947:19;;-1:-1:-1;;;66947:19:0;;;;;;;;;;;66921:45;66983:13;:19;-1:-1:-1;60194:185:0;;;:::o;29973:191::-;30047:16;30066:6;;-1:-1:-1;;;;;30083:17:0;;;-1:-1:-1;;;;;;30083:17:0;;;;;;30116:40;;30066:6;;;;;;;30116:40;;30047:16;30116:40;30036:128;29973:191;:::o;36045:248::-;36255:12;;-1:-1:-1;;;;;36235:16:0;;36191:7;36235:16;;;:7;:16;;;;;;36191:7;;36270:15;;36219:32;;:13;:32;:::i;:::-;36218:49;;;;:::i;:::-;:67;;;;:::i;63460:716::-;63644:88;;-1:-1:-1;;;63644:88:0;;63623:4;;-1:-1:-1;;;;;63644:45:0;;;;;:88;;8611:10;;63711:4;;63717:7;;63726:5;;63644:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63644:88:0;;;;;;;;-1:-1:-1;;63644:88:0;;;;;;;;;;;;:::i;:::-;;;63640:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63927:6;:13;63944:1;63927:18;63923:235;;63973:40;;-1:-1:-1;;;63973:40:0;;;;;;;;;;;63923:235;64116:6;64110:13;64101:6;64097:2;64093:15;64086:38;63640:529;-1:-1:-1;;;;;;63803:64:0;-1:-1:-1;;;63803:64:0;;-1:-1:-1;63460:716:0;;;;;;:::o;76992:2002::-;77469:4;77463:11;;77476:3;77459:21;;77554:17;;;;78250:11;;;78129:5;78416:2;78430;78420:13;;78412:22;78250:11;78399:36;78471:2;78461:13;;78021:731;78490:4;78021:731;;;78681:1;78676:3;78672:11;78665:18;;78732:2;78726:4;78722:13;78718:2;78714:22;78709:3;78701:36;78585:2;78575:13;;78021:731;;;-1:-1:-1;78782:13:0;;;-1:-1:-1;;78897:12:0;;;78957:19;;;78897:12;76992:2002;-1:-1:-1;76992:2002:0:o;25108:716::-;25532:23;25558:69;25586:4;25558:69;;;;;;;;;;;;;;;;;25566:5;-1:-1:-1;;;;;25558:27:0;;;:69;;;;;:::i;:::-;25642:17;;25532:95;;-1:-1:-1;25642:21:0;25638:179;;25739:10;25728:30;;;;;;;;;;;;:::i;:::-;25720:85;;;;-1:-1:-1;;;25720:85:0;;20039:2:1;25720:85:0;;;20021:21:1;20078:2;20058:18;;;20051:30;20117:34;20097:18;;;20090:62;-1:-1:-1;;;20168:18:1;;;20161:40;20218:19;;25720:85:0;19837:406:1;3923:229:0;4060:12;4092:52;4114:6;4122:4;4128:1;4131:12;4060;-1:-1:-1;;;;;1473:19:0;;;5330:60;;;;-1:-1:-1;;;5330:60:0;;20857:2:1;5330:60:0;;;20839:21:1;20896:2;20876:18;;;20869:30;20935:31;20915:18;;;20908:59;20984:18;;5330:60:0;20655:353:1;5330:60:0;5404:12;5418:23;5445:6;-1:-1:-1;;;;;5445:11:0;5464:5;5471:4;5445:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5403:73;;;;5494:51;5511:7;5520:10;5532:12;5494:16;:51::i;:::-;5487:58;5043:510;-1:-1:-1;;;;;;;5043:510:0:o;7729:762::-;7879:12;7908:7;7904:580;;;-1:-1:-1;7939:10:0;7932:17;;7904:580;8053:17;;:21;8049:424;;8301:10;8295:17;8362:15;8349:10;8345:2;8341:19;8334:44;8049:424;8444:12;8437:20;;-1:-1:-1;;;8437:20:0;;;;;;;;:::i;293:131:1:-;-1:-1:-1;;;;;;367:32:1;;357:43;;347:71;;414:1;411;404:12;429:245;487:6;540:2;528:9;519:7;515:23;511:32;508:52;;;556:1;553;546:12;508:52;595:9;582:23;614:30;638:5;614:30;:::i;871:250::-;956:1;966:113;980:6;977:1;974:13;966:113;;;1056:11;;;1050:18;1037:11;;;1030:39;1002:2;995:10;966:113;;;-1:-1:-1;;1113:1:1;1095:16;;1088:27;871:250::o;1126:271::-;1168:3;1206:5;1200:12;1233:6;1228:3;1221:19;1249:76;1318:6;1311:4;1306:3;1302:14;1295:4;1288:5;1284:16;1249:76;:::i;:::-;1379:2;1358:15;-1:-1:-1;;1354:29:1;1345:39;;;;1386:4;1341:50;;1126:271;-1:-1:-1;;1126:271:1:o;1402:220::-;1551:2;1540:9;1533:21;1514:4;1571:45;1612:2;1601:9;1597:18;1589:6;1571:45;:::i;1627:180::-;1686:6;1739:2;1727:9;1718:7;1714:23;1710:32;1707:52;;;1755:1;1752;1745:12;1707:52;-1:-1:-1;1778:23:1;;1627:180;-1:-1:-1;1627:180:1:o;2020:131::-;-1:-1:-1;;;;;2095:31:1;;2085:42;;2075:70;;2141:1;2138;2131:12;2156:315;2224:6;2232;2285:2;2273:9;2264:7;2260:23;2256:32;2253:52;;;2301:1;2298;2291:12;2253:52;2340:9;2327:23;2359:31;2384:5;2359:31;:::i;:::-;2409:5;2461:2;2446:18;;;;2433:32;;-1:-1:-1;;;2156:315:1:o;2476:127::-;2537:10;2532:3;2528:20;2525:1;2518:31;2568:4;2565:1;2558:15;2592:4;2589:1;2582:15;2608:232;2684:1;2677:5;2674:12;2664:143;;2729:10;2724:3;2720:20;2717:1;2710:31;2764:4;2761:1;2754:15;2792:4;2789:1;2782:15;2664:143;2816:18;;2608:232::o;2845:340::-;3042:2;3027:18;;3054:39;3031:9;3075:6;3054:39;:::i;:::-;3124:2;3109:18;;3102:34;;;;3167:2;3152:18;3145:34;2845:340;;-1:-1:-1;2845:340:1:o;3372:255::-;3439:6;3492:2;3480:9;3471:7;3467:23;3463:32;3460:52;;;3508:1;3505;3498:12;3460:52;3547:9;3534:23;3566:31;3591:5;3566:31;:::i;3632:456::-;3709:6;3717;3725;3778:2;3766:9;3757:7;3753:23;3749:32;3746:52;;;3794:1;3791;3784:12;3746:52;3833:9;3820:23;3852:31;3877:5;3852:31;:::i;:::-;3902:5;-1:-1:-1;3959:2:1;3944:18;;3931:32;3972:33;3931:32;3972:33;:::i;:::-;3632:456;;4024:7;;-1:-1:-1;;;4078:2:1;4063:18;;;;4050:32;;3632:456::o;4093:402::-;4175:6;4183;4236:2;4224:9;4215:7;4211:23;4207:32;4204:52;;;4252:1;4249;4242:12;4204:52;4291:9;4278:23;4310:31;4335:5;4310:31;:::i;:::-;4360:5;-1:-1:-1;4417:2:1;4402:18;;4389:32;4430:33;4389:32;4430:33;:::i;:::-;4482:7;4472:17;;;4093:402;;;;;:::o;4752:127::-;4813:10;4808:3;4804:20;4801:1;4794:31;4844:4;4841:1;4834:15;4868:4;4865:1;4858:15;4884:632;4949:5;4979:18;5020:2;5012:6;5009:14;5006:40;;;5026:18;;:::i;:::-;5101:2;5095:9;5069:2;5155:15;;-1:-1:-1;;5151:24:1;;;5177:2;5147:33;5143:42;5131:55;;;5201:18;;;5221:22;;;5198:46;5195:72;;;5247:18;;:::i;:::-;5287:10;5283:2;5276:22;5316:6;5307:15;;5346:6;5338;5331:22;5386:3;5377:6;5372:3;5368:16;5365:25;5362:45;;;5403:1;5400;5393:12;5362:45;5453:6;5448:3;5441:4;5433:6;5429:17;5416:44;5508:1;5501:4;5492:6;5484;5480:19;5476:30;5469:41;;;;4884:632;;;;;:::o;5521:451::-;5590:6;5643:2;5631:9;5622:7;5618:23;5614:32;5611:52;;;5659:1;5656;5649:12;5611:52;5699:9;5686:23;5732:18;5724:6;5721:30;5718:50;;;5764:1;5761;5754:12;5718:50;5787:22;;5840:4;5832:13;;5828:27;-1:-1:-1;5818:55:1;;5869:1;5866;5859:12;5818:55;5892:74;5958:7;5953:2;5940:16;5935:2;5931;5927:11;5892:74;:::i;5977:118::-;6063:5;6056:13;6049:21;6042:5;6039:32;6029:60;;6085:1;6082;6075:12;6100:382;6165:6;6173;6226:2;6214:9;6205:7;6201:23;6197:32;6194:52;;;6242:1;6239;6232:12;6194:52;6281:9;6268:23;6300:31;6325:5;6300:31;:::i;:::-;6350:5;-1:-1:-1;6407:2:1;6392:18;;6379:32;6420:30;6379:32;6420:30;:::i;6487:795::-;6582:6;6590;6598;6606;6659:3;6647:9;6638:7;6634:23;6630:33;6627:53;;;6676:1;6673;6666:12;6627:53;6715:9;6702:23;6734:31;6759:5;6734:31;:::i;:::-;6784:5;-1:-1:-1;6841:2:1;6826:18;;6813:32;6854:33;6813:32;6854:33;:::i;:::-;6906:7;-1:-1:-1;6960:2:1;6945:18;;6932:32;;-1:-1:-1;7015:2:1;7000:18;;6987:32;7042:18;7031:30;;7028:50;;;7074:1;7071;7064:12;7028:50;7097:22;;7150:4;7142:13;;7138:27;-1:-1:-1;7128:55:1;;7179:1;7176;7169:12;7128:55;7202:74;7268:7;7263:2;7250:16;7245:2;7241;7237:11;7202:74;:::i;:::-;7192:84;;;6487:795;;;;;;;:::o;7287:198::-;7428:2;7413:18;;7440:39;7417:9;7461:6;7440:39;:::i;8149:380::-;8228:1;8224:12;;;;8271;;;8292:61;;8346:4;8338:6;8334:17;8324:27;;8292:61;8399:2;8391:6;8388:14;8368:18;8365:38;8362:161;;8445:10;8440:3;8436:20;8433:1;8426:31;8480:4;8477:1;8470:15;8508:4;8505:1;8498:15;8362:161;;8149:380;;;:::o;8534:402::-;8736:2;8718:21;;;8775:2;8755:18;;;8748:30;8814:34;8809:2;8794:18;;8787:62;-1:-1:-1;;;8880:2:1;8865:18;;8858:36;8926:3;8911:19;;8534:402::o;8941:407::-;9143:2;9125:21;;;9182:2;9162:18;;;9155:30;9221:34;9216:2;9201:18;;9194:62;-1:-1:-1;;;9287:2:1;9272:18;;9265:41;9338:3;9323:19;;8941:407::o;9353:127::-;9414:10;9409:3;9405:20;9402:1;9395:31;9445:4;9442:1;9435:15;9469:4;9466:1;9459:15;9485:125;9550:9;;;9571:10;;;9568:36;;;9584:18;;:::i;10940:135::-;10979:3;11000:17;;;10997:43;;11020:18;;:::i;:::-;-1:-1:-1;11067:1:1;11056:13;;10940:135::o;11080:127::-;11141:10;11136:3;11132:20;11129:1;11122:31;11172:4;11169:1;11162:15;11196:4;11193:1;11186:15;11338:545;11440:2;11435:3;11432:11;11429:448;;;11476:1;11501:5;11497:2;11490:17;11546:4;11542:2;11532:19;11616:2;11604:10;11600:19;11597:1;11593:27;11587:4;11583:38;11652:4;11640:10;11637:20;11634:47;;;-1:-1:-1;11675:4:1;11634:47;11730:2;11725:3;11721:12;11718:1;11714:20;11708:4;11704:31;11694:41;;11785:82;11803:2;11796:5;11793:13;11785:82;;;11848:17;;;11829:1;11818:13;11785:82;;12059:1352;12185:3;12179:10;12212:18;12204:6;12201:30;12198:56;;;12234:18;;:::i;:::-;12263:97;12353:6;12313:38;12345:4;12339:11;12313:38;:::i;:::-;12307:4;12263:97;:::i;:::-;12415:4;;12479:2;12468:14;;12496:1;12491:663;;;;13198:1;13215:6;13212:89;;;-1:-1:-1;13267:19:1;;;13261:26;13212:89;-1:-1:-1;;12016:1:1;12012:11;;;12008:24;12004:29;11994:40;12040:1;12036:11;;;11991:57;13314:81;;12461:944;;12491:663;11285:1;11278:14;;;11322:4;11309:18;;-1:-1:-1;;12527:20:1;;;12645:236;12659:7;12656:1;12653:14;12645:236;;;12748:19;;;12742:26;12727:42;;12840:27;;;;12808:1;12796:14;;;;12675:19;;12645:236;;;12649:3;12909:6;12900:7;12897:19;12894:201;;;12970:19;;;12964:26;-1:-1:-1;;13053:1:1;13049:14;;;13065:3;13045:24;13041:37;13037:42;13022:58;13007:74;;12894:201;-1:-1:-1;;;;;13141:1:1;13125:14;;;13121:22;13108:36;;-1:-1:-1;12059:1352:1:o;13755:168::-;13828:9;;;13859;;13876:15;;;13870:22;;13856:37;13846:71;;13897:18;;:::i;14625:184::-;14695:6;14748:2;14736:9;14727:7;14723:23;14719:32;14716:52;;;14764:1;14761;14754:12;14716:52;-1:-1:-1;14787:16:1;;14625:184;-1:-1:-1;14625:184:1:o;15174:1187::-;15451:3;15480:1;15513:6;15507:13;15543:36;15569:9;15543:36;:::i;:::-;15598:1;15615:18;;;15642:133;;;;15789:1;15784:356;;;;15608:532;;15642:133;-1:-1:-1;;15675:24:1;;15663:37;;15748:14;;15741:22;15729:35;;15720:45;;;-1:-1:-1;15642:133:1;;15784:356;15815:6;15812:1;15805:17;15845:4;15890:2;15887:1;15877:16;15915:1;15929:165;15943:6;15940:1;15937:13;15929:165;;;16021:14;;16008:11;;;16001:35;16064:16;;;;15958:10;;15929:165;;;15933:3;;;16123:6;16118:3;16114:16;16107:23;;15608:532;;;;;16171:6;16165:13;16187:68;16246:8;16241:3;16234:4;16226:6;16222:17;16187:68;:::i;:::-;-1:-1:-1;;;16277:18:1;;16304:22;;;16353:1;16342:13;;15174:1187;-1:-1:-1;;;;15174:1187:1:o;18484:217::-;18524:1;18550;18540:132;;18594:10;18589:3;18585:20;18582:1;18575:31;18629:4;18626:1;18619:15;18657:4;18654:1;18647:15;18540:132;-1:-1:-1;18686:9:1;;18484:217::o;18706:128::-;18773:9;;;18794:11;;;18791:37;;;18808:18;;:::i;18839:489::-;-1:-1:-1;;;;;19108:15:1;;;19090:34;;19160:15;;19155:2;19140:18;;19133:43;19207:2;19192:18;;19185:34;;;19255:3;19250:2;19235:18;;19228:31;;;19033:4;;19276:46;;19302:19;;19294:6;19276:46;:::i;:::-;19268:54;18839:489;-1:-1:-1;;;;;;18839:489:1:o;19333:249::-;19402:6;19455:2;19443:9;19434:7;19430:23;19426:32;19423:52;;;19471:1;19468;19461:12;19423:52;19503:9;19497:16;19522:30;19546:5;19522:30;:::i;19587:245::-;19654:6;19707:2;19695:9;19686:7;19682:23;19678:32;19675:52;;;19723:1;19720;19713:12;19675:52;19755:9;19749:16;19774:28;19796:5;19774:28;:::i;21013:287::-;21142:3;21180:6;21174:13;21196:66;21255:6;21250:3;21243:4;21235:6;21231:17;21196:66;:::i;:::-;21278:16;;;;;21013:287;-1:-1:-1;;21013:287:1:o

Swarm Source

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

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