ETH Price: $2,494.87 (+3.30%)
Gas: 5.41 Gwei

Token

Vacabee Travel Club (VACABEE)
 

Overview

Max Total Supply

0 VACABEE

Holders

4

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
0 VACABEE
0xf012576bbcfab8d7580315a0f006594987f06bfc
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:
Vacabee

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 23 : Vacabee.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./BaseNFT.sol";
import "./INftTokenUri.sol";

contract Vacabee is BaseNFT {
    constructor(
        uint256 collectionLimit_,
        string memory baseUri_,
        uint256[] memory _tierPrices,
        uint256[] memory _membershipActivationPrices,
        uint256[] memory _tierLimits
    )
        BaseNFT(
            "Vacabee Travel Club",
            "VACABEE",
            collectionLimit_,
            baseUri_,
            _tierPrices,
            _membershipActivationPrices,
            _tierLimits
        )
    {}
}

File 2 of 23 : AccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;

import "./IAccessControl.sol";
import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/introspection/ERC165.sol";

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(account),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleGranted} event.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleRevoked} event.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     *
     * May emit a {RoleRevoked} event.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * May emit a {RoleGranted} event.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleGranted} event.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

File 3 of 23 : IAccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

File 4 of 23 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

File 5 of 23 : draft-IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
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);
}

File 6 of 23 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 7 of 23 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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);
}

File 8 of 23 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../extensions/draft-IERC20Permit.sol";
import "../../../utils/Address.sol";

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

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

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

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

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

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

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

File 9 of 23 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _ownerOf(tokenId) != address(0);
    }

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

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

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

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

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

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

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

        _owners[tokenId] = to;

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

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

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

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

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

        // Clear approvals
        delete _tokenApprovals[tokenId];

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId, 1);

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

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

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

        emit Transfer(from, to, tokenId);

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

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

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

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

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

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

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

File 10 of 23 : ERC721Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Burnable.sol)

pragma solidity ^0.8.0;

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

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
        _burn(tokenId);
    }
}

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 12 of 23 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./math/Math.sol";

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

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

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

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

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

File 21 of 23 : BaseNFT.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";

import "@openzeppelin/contracts/utils/Counters.sol";

import "./Erc20Gateway.sol";

/// @notice "Premature optimization is the root of all evil." - Sir Tony Hoare
contract BaseNFT is ERC721Burnable, AccessControl {
    enum NftTier {
        ONE,
        TWO,
        THREE
    }

    // using Strings for uint256;
    using Counters for Counters.Counter;
    using SafeERC20 for IERC20;

    event MembershipActivated(
        address indexed owner,
        address indexed payer,
        uint256 indexed tokenId
    );

    event NftTierUpgraded(
        uint256 indexed tokenId,
        NftTier indexed oldTier,
        NftTier indexed newTier
    );

    event PublicMintToggle(bool indexed isMintPublic);

    event CustodialContractSet(
        address indexed oldCustodialContract,
        address indexed newCustodialContract
    );

    event Erc20GatewaySet(
        address indexed oldErc20Gateway,
        address indexed newErc20Gateway
    );

    event NftPricesSet(uint256[] oldPrices, uint256[] newPrices);

    event AllowedMintTiersSet(bool[] oldTiers, bool[] newTiers);

    event TierLimitsSet(uint256[] oldTierLimits, uint256[] newTierLimits);

    event MembershipActivationPricesSet(
        uint256[] oldPrices,
        uint256[] newPrices
    );

    event BaseUriUpdateDisabled();

    Counters.Counter private _tokenIds;

    bool public publicMint = false;

    /// @notice has the address already minted
    mapping(address => bool) public alreadyMinted;
    /// @notice Membership activation status
    mapping(uint256 => bool) public isMembershipActivated;
    /// @notice Tier of the said NFT
    mapping(uint256 => NftTier) public nftTiers;
    /// @notice Price for tiers
    mapping(NftTier => uint256) public tierPrices;
    /// @notice Price for membership activation
    mapping(NftTier => uint256) public membershipActivationPrices;
    /// @notice Tiers allowed to be minted
    mapping(NftTier => bool) public mintTierAllowed;
    /// @notice Individual tier mint counters
    mapping(NftTier => Counters.Counter) public tierMintCounter;
    /// @notice Individual tier limits
    mapping(NftTier => uint256) public tierLimits;

    uint256 public collectionLimit;

    string public baseUri;

    bool public baseUriUpdateEnabled = true;

    /// @notice Refunded token Ids (no need to have gaps in the collection)
    uint256[] refundedTokens;

    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant BURNER_ROLE = keccak256("BURNER_ROLE");
    bytes32 public constant EXTRACTOR_ROLE = keccak256("EXTRACTOR_ROLE");

    IERC721Receiver public custodialContract;

    Erc20Gateway public erc20Gateway;

    error CollectionCompleted();
    error AlreadyMinted();
    error MintNotPublic();
    error TokenNotSupported(string paymentSymbol);
    error InadequateAllowence(string paymentSymbol, uint256 requiredAllowence);
    error TokenDoesntExist(uint256 tokenId);
    error AddressZero();
    error MembershipAlreadyActive(uint256 tokenId);
    error TierOutOfBonds();
    error EqualTier();
    error InadequateTierPrice();
    error MintTierNotAllowed(NftTier tier);
    error TierSoldOut(NftTier tier);

    constructor(
        string memory name_,
        string memory symbol_,
        uint256 collectionLimit_,
        string memory baseUri_,
        uint256[] memory _tierPrices,
        uint256[] memory _membershipActivationPrices,
        uint256[] memory _tierLimits
    ) ERC721(name_, symbol_) {
        if (
            _tierPrices.length != 3 || 
            _membershipActivationPrices.length != 3 || 
            _tierLimits.length != 3
        ) {
            revert TierOutOfBonds();
        }

        collectionLimit = collectionLimit_;
        baseUri = baseUri_;

        for (uint256 i = 0; i < 3; i++) {
            NftTier tier = NftTier(i);
            tierPrices[tier] = _tierPrices[i];
            membershipActivationPrices[tier] = _membershipActivationPrices[i];
            tierLimits[tier] = _tierLimits[i];
        }

        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
    }

    function setNftPrices(
        uint256[] calldata _newTierPrices
    ) external onlyRole(DEFAULT_ADMIN_ROLE) {
        if (_newTierPrices.length != 3) {
            revert TierOutOfBonds();
        }

        uint256[] memory oldPrices = new uint256[](3);
        for (uint256 i = 0; i < 3; i++) {
            NftTier tier = NftTier(i);
            oldPrices[i] = tierPrices[tier];
            tierPrices[tier] = _newTierPrices[i];
        }

        emit NftPricesSet(oldPrices, _newTierPrices);
    }

    function setAllowedMintTiers(
        bool[] calldata _newAllowedMintTiers
    ) external onlyRole(DEFAULT_ADMIN_ROLE) {
                if (_newAllowedMintTiers.length != 3) {
            revert TierOutOfBonds();
        }

        bool[] memory oldAllowedTiers = new bool[](3);
        for (uint256 i = 0; i < 3; i++) {
            NftTier tier = NftTier(i);
            oldAllowedTiers[i] = mintTierAllowed[tier];
            mintTierAllowed[tier] = _newAllowedMintTiers[i];
        }

        emit AllowedMintTiersSet(oldAllowedTiers, _newAllowedMintTiers);
    }

    function setIndividualTierLimits(
        uint256[] calldata _newTierLimits
    ) external onlyRole(DEFAULT_ADMIN_ROLE) {
        if (_newTierLimits.length != 3) {
            revert TierOutOfBonds();
        }

        uint256[] memory oldTierLimits = new uint256[](3);
        for (uint256 i = 0; i < 3; i++) {
            NftTier tier = NftTier(i);
            oldTierLimits[i] = tierLimits[tier];
            tierLimits[tier] = _newTierLimits[i];
        }

        emit TierLimitsSet(oldTierLimits, _newTierLimits);
    }

    function setMembershipActivationPrices(
        uint256[] calldata _newMembershipActivationPrices
    ) external onlyRole(DEFAULT_ADMIN_ROLE) {
        if (_newMembershipActivationPrices.length != 3) {
            revert TierOutOfBonds();
        }

        uint256[] memory oldPrices = new uint256[](3);
        for (uint256 i = 0; i < 3; i++) {
            NftTier tier = NftTier(i);
            oldPrices[i] = membershipActivationPrices[tier];
            membershipActivationPrices[tier] = _newMembershipActivationPrices[
                i
            ];
        }

        emit MembershipActivationPricesSet(
            oldPrices,
            _newMembershipActivationPrices
        );
    }

    function setCustodialContract(
        address _custodialContract
    ) external onlyRole(DEFAULT_ADMIN_ROLE) {
        IERC721Receiver _oldCustodialContract = custodialContract;
        custodialContract = IERC721Receiver(_custodialContract);
        emit CustodialContractSet(
            address(_oldCustodialContract),
            address(custodialContract)
        );
    }

    function setErc20Gateway(
        address _erc20Gateway
    ) external onlyRole(DEFAULT_ADMIN_ROLE) {
        Erc20Gateway oldErc20Gateway = erc20Gateway;
        erc20Gateway = Erc20Gateway(_erc20Gateway);
        emit Erc20GatewaySet(address(oldErc20Gateway), address(erc20Gateway));
    }

    function supportsInterface(
        bytes4 interfaceId
    ) public view virtual override(AccessControl, ERC721) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    function togglePublicMint() external onlyRole(DEFAULT_ADMIN_ROLE) {
        publicMint = !publicMint;
        emit PublicMintToggle(publicMint);
    }

    modifier mintConditions() {
        if (!publicMint) {
            revert MintNotPublic();
        }
        if (
            _tokenIds.current() >= collectionLimit && refundedTokens.length == 0
        ) {
            revert CollectionCompleted();
        }
        _;
    }

    function peekNextTokenId() external view returns (uint256) {
        if (refundedTokens.length > 0) {
            return refundedTokens[refundedTokens.length - 1];
        }
        if (_tokenIds.current() >= collectionLimit) {
            revert CollectionCompleted();
        }
        return _tokenIds.current() + 1;
    }

    function _getNextTokenId() internal returns (uint256) {
        // Make sure to fill the gaps from refunded tokens
        if (refundedTokens.length > 0) {
            uint256 result = refundedTokens[refundedTokens.length - 1];
            refundedTokens.pop();
            return result;
        }
        if (_tokenIds.current() >= collectionLimit) {
            revert CollectionCompleted();
        }

        _tokenIds.increment();
        return _tokenIds.current();
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId,
        uint256 batchSize
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId, batchSize);

        // If the token is not freshly minted or transferred from the custodial contract
        // deactivate the membership upon transfer
        if (from != address(0) || from != address(custodialContract)) {
            isMembershipActivated[tokenId] = false;
        }
    }

    function checkAllowence(
        address customer,
        uint256 normalizedPrice,
        IERC20 paymentToken
    ) public view returns (bool) {
        return paymentToken.allowance(customer, address(this)) >= normalizedPrice;
    }

    function normalizePrice(
        uint256 weiPrice,
        IERC20 paymentToken
    ) public view returns (uint256) {
        if (weiPrice < 1 ether) {
            revert InadequateTierPrice();
        }

        /**
         * All prices are set in 1 whole ETH denominations.
         * It is safe to assume, even with current inflation rate
         * that ETH will be more expensive than stablecoins (USD).
         */
        return (weiPrice / 1 ether) * 10 ** IERC20Metadata(address(paymentToken)).decimals();
    }

    function getErc20(
        string calldata paymentSymbol
    ) internal view returns (IERC20) {
        address paymentTokenAddress = erc20Gateway.symbolToAddress(
            paymentSymbol
        );

        if (paymentTokenAddress == address(0)) {
            revert TokenNotSupported(paymentSymbol);
        }

        return IERC20(paymentTokenAddress);
    }

    function _basicMint(
        address minter,
        NftTier tier
    ) internal mintConditions returns (uint256 newItemId) {
        if (minter == address(0)) {
            revert AddressZero();
        }

        if (alreadyMinted[minter] && minter != address(custodialContract)) {
            revert AlreadyMinted();
        }

        if (!mintTierAllowed[tier]) {
            revert MintTierNotAllowed(tier);
        }

        if (tierMintCounter[tier].current() >= tierLimits[tier]) {
            revert TierSoldOut(tier);
        }

        alreadyMinted[minter] = true;

        newItemId = _getNextTokenId(); // Sets the result

        _safeMint(minter, newItemId);

        nftTiers[newItemId] = tier;
        isMembershipActivated[newItemId] = true;

        tierMintCounter[tier].increment();

        if (minter == address(custodialContract)) {
            custodialContract.onERC721Received(
                _msgSender(),
                address(this),
                newItemId,
                ""
            );
        }

        emit MembershipActivated(minter, _msgSender(), newItemId);
    }

    function mint(
        address minter,
        NftTier tier,
        string calldata paymentSymbol
    ) external payable {
        IERC20 paymentToken = getErc20(paymentSymbol);

        uint256 normalizedPrice = normalizePrice(
            tierPrices[tier],
            paymentToken
        );

        if (!checkAllowence(_msgSender(), normalizedPrice, paymentToken)) {
            revert InadequateAllowence(paymentSymbol, normalizedPrice);
        }

        paymentToken.safeTransferFrom(_msgSender(), address(this), normalizedPrice);

        _basicMint(minter, tier);
    }

    function ownerMint(
        address minter,
        NftTier tier
    ) external onlyRole(MINTER_ROLE) {
        _basicMint(minter, tier);
    }

    function refund(uint256 _tokenId) external payable onlyRole(BURNER_ROLE) {
        // Performs the ownership checks
        ERC721Burnable.burn(_tokenId);

        NftTier tier = nftTiers[_tokenId];

        delete isMembershipActivated[_tokenId];
        delete nftTiers[_tokenId];
        tierMintCounter[tier].decrement();

        refundedTokens.push(_tokenId);
    }

    function extractTokens(
        string calldata paymentTokenSymbol,
        uint256 value
    ) external payable onlyRole(EXTRACTOR_ROLE) {
        getErc20(paymentTokenSymbol).transfer(_msgSender(), value);
    }

    function _membershipActivation(uint256 tokenId) internal {
        if (!_exists(tokenId)) {
            revert TokenDoesntExist(tokenId);
        }
        if (isMembershipActivated[tokenId]) {
            revert MembershipAlreadyActive(tokenId);
        }

        isMembershipActivated[tokenId] = true;

        emit MembershipActivated(ownerOf(tokenId), _msgSender(), tokenId);
    }

    function activateMembership(
        uint256 tokenId,
        string calldata paymentSymbol
    ) external payable {
        IERC20 paymentToken = getErc20(paymentSymbol);

        uint256 normalizedTierActivationPrice = normalizePrice(
            membershipActivationPrices[ // tier activation price
                nftTiers[tokenId] // current token tier
            ],
            paymentToken
        );

        if (
            !checkAllowence(
                _msgSender(),
                normalizedTierActivationPrice,
                paymentToken
            )
        ) {
            revert InadequateAllowence(
                paymentSymbol,
                normalizedTierActivationPrice
            );
        }

        paymentToken.safeTransferFrom(
            _msgSender(),
            address(this),
            normalizedTierActivationPrice
        );

        _membershipActivation(tokenId);
    }

    function grantMembership(uint256 tokenId) external onlyRole(MINTER_ROLE) {
        _membershipActivation(tokenId);
    }

    function upgradeTier(uint256 nftId, NftTier tier) external onlyRole(MINTER_ROLE) {
        if (!_exists(nftId)) {
            revert TokenDoesntExist(nftId);
        }

        NftTier oldTier = nftTiers[nftId];
        
        if (tier == oldTier) {
            revert EqualTier();
        }
        
        nftTiers[nftId] = tier;
        
        emit NftTierUpgraded(nftId, oldTier, tier);
    }

    function updateBaseUri(string memory _baseUri) external onlyRole(DEFAULT_ADMIN_ROLE) {
        require(baseUriUpdateEnabled);
        baseUri = _baseUri;
    }

    function disableBaseUriUpdate() external onlyRole(DEFAULT_ADMIN_ROLE) {
        require(baseUriUpdateEnabled);
        baseUriUpdateEnabled = false;
        emit BaseUriUpdateDisabled();
    }

    function tokenURI(
        uint256 tokenId
    ) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) {
            revert TokenDoesntExist(tokenId);
        }

        return string(abi.encodePacked(baseUri, uint8((48 + uint256(nftTiers[tokenId])) & 0xFF), ".json")); 
    }
}

File 22 of 23 : Erc20Gateway.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";

contract Erc20Gateway is Ownable {
  mapping(string => address) public symbolToAddress;
  mapping(address => string) public addressToSymbol;

  function addToken(string calldata symbol, address tokenAddress) onlyOwner external {
    require(symbolToAddress[symbol] == address(0));

    symbolToAddress[symbol] = tokenAddress;
    addressToSymbol[tokenAddress] = symbol;
  }

  function removeToken(string calldata symbol, address tokenAddress) onlyOwner external {
    require(symbolToAddress[symbol] != address(0), "Token not added");
    delete symbolToAddress[symbol];
    delete addressToSymbol[tokenAddress];
  }
}

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

interface INftTokenUri {
  function generateTokenUri(uint256 tokenId, bool membershipActivated, uint8 tier) external pure returns (string memory);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"collectionLimit_","type":"uint256"},{"internalType":"string","name":"baseUri_","type":"string"},{"internalType":"uint256[]","name":"_tierPrices","type":"uint256[]"},{"internalType":"uint256[]","name":"_membershipActivationPrices","type":"uint256[]"},{"internalType":"uint256[]","name":"_tierLimits","type":"uint256[]"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AddressZero","type":"error"},{"inputs":[],"name":"AlreadyMinted","type":"error"},{"inputs":[],"name":"CollectionCompleted","type":"error"},{"inputs":[],"name":"EqualTier","type":"error"},{"inputs":[{"internalType":"string","name":"paymentSymbol","type":"string"},{"internalType":"uint256","name":"requiredAllowence","type":"uint256"}],"name":"InadequateAllowence","type":"error"},{"inputs":[],"name":"InadequateTierPrice","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"MembershipAlreadyActive","type":"error"},{"inputs":[],"name":"MintNotPublic","type":"error"},{"inputs":[{"internalType":"enum BaseNFT.NftTier","name":"tier","type":"uint8"}],"name":"MintTierNotAllowed","type":"error"},{"inputs":[],"name":"TierOutOfBonds","type":"error"},{"inputs":[{"internalType":"enum BaseNFT.NftTier","name":"tier","type":"uint8"}],"name":"TierSoldOut","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"TokenDoesntExist","type":"error"},{"inputs":[{"internalType":"string","name":"paymentSymbol","type":"string"}],"name":"TokenNotSupported","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool[]","name":"oldTiers","type":"bool[]"},{"indexed":false,"internalType":"bool[]","name":"newTiers","type":"bool[]"}],"name":"AllowedMintTiersSet","type":"event"},{"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":[],"name":"BaseUriUpdateDisabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldCustodialContract","type":"address"},{"indexed":true,"internalType":"address","name":"newCustodialContract","type":"address"}],"name":"CustodialContractSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldErc20Gateway","type":"address"},{"indexed":true,"internalType":"address","name":"newErc20Gateway","type":"address"}],"name":"Erc20GatewaySet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"payer","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"MembershipActivated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256[]","name":"oldPrices","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"newPrices","type":"uint256[]"}],"name":"MembershipActivationPricesSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256[]","name":"oldPrices","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"newPrices","type":"uint256[]"}],"name":"NftPricesSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"enum BaseNFT.NftTier","name":"oldTier","type":"uint8"},{"indexed":true,"internalType":"enum BaseNFT.NftTier","name":"newTier","type":"uint8"}],"name":"NftTierUpgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bool","name":"isMintPublic","type":"bool"}],"name":"PublicMintToggle","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256[]","name":"oldTierLimits","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"newTierLimits","type":"uint256[]"}],"name":"TierLimitsSet","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":[],"name":"BURNER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EXTRACTOR_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"paymentSymbol","type":"string"}],"name":"activateMembership","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"alreadyMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUriUpdateEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"customer","type":"address"},{"internalType":"uint256","name":"normalizedPrice","type":"uint256"},{"internalType":"contract IERC20","name":"paymentToken","type":"address"}],"name":"checkAllowence","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectionLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"custodialContract","outputs":[{"internalType":"contract IERC721Receiver","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableBaseUriUpdate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"erc20Gateway","outputs":[{"internalType":"contract Erc20Gateway","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"paymentTokenSymbol","type":"string"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"extractTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"grantMembership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"isMembershipActivated","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum BaseNFT.NftTier","name":"","type":"uint8"}],"name":"membershipActivationPrices","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"},{"internalType":"enum BaseNFT.NftTier","name":"tier","type":"uint8"},{"internalType":"string","name":"paymentSymbol","type":"string"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"enum BaseNFT.NftTier","name":"","type":"uint8"}],"name":"mintTierAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"nftTiers","outputs":[{"internalType":"enum BaseNFT.NftTier","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"weiPrice","type":"uint256"},{"internalType":"contract IERC20","name":"paymentToken","type":"address"}],"name":"normalizePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"},{"internalType":"enum BaseNFT.NftTier","name":"tier","type":"uint8"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"peekNextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"refund","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool[]","name":"_newAllowedMintTiers","type":"bool[]"}],"name":"setAllowedMintTiers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_custodialContract","type":"address"}],"name":"setCustodialContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_erc20Gateway","type":"address"}],"name":"setErc20Gateway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_newTierLimits","type":"uint256[]"}],"name":"setIndividualTierLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_newMembershipActivationPrices","type":"uint256[]"}],"name":"setMembershipActivationPrices","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_newTierPrices","type":"uint256[]"}],"name":"setNftPrices","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum BaseNFT.NftTier","name":"","type":"uint8"}],"name":"tierLimits","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum BaseNFT.NftTier","name":"","type":"uint8"}],"name":"tierMintCounter","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum BaseNFT.NftTier","name":"","type":"uint8"}],"name":"tierPrices","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"updateBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"nftId","type":"uint256"},{"internalType":"enum BaseNFT.NftTier","name":"tier","type":"uint8"}],"name":"upgradeTier","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526008805460ff199081169091556013805490911660011790553480156200002a57600080fd5b506040516200466f3803806200466f8339810160408190526200004d9162000416565b6040518060400160405280601381526020017f566163616265652054726176656c20436c756200000000000000000000000000815250604051806040016040528060078152602001665641434142454560c81b815250868686868686868160009081620000bb9190620005da565b506001620000ca8282620005da565b50505082516003141580620000e157508151600314155b80620000ef57508051600314155b156200010e57604051634fef66cb60e11b815260040160405180910390fd5b60118590556012620001218582620005da565b5060005b600381101562000271576000816002811115620001465762000146620006a6565b90508482815181106200015d576200015d620006bc565b6020026020010151600c60008360028111156200017e576200017e620006a6565b6002811115620001925762000192620006a6565b815260200190815260200160002081905550838281518110620001b957620001b9620006bc565b6020026020010151600d6000836002811115620001da57620001da620006a6565b6002811115620001ee57620001ee620006a6565b815260200190815260200160002081905550828281518110620002155762000215620006bc565b602002602001015160106000836002811115620002365762000236620006a6565b60028111156200024a576200024a620006a6565b815260208101919091526040016000205550806200026881620006d2565b91505062000125565b506200027f60003362000291565b505050505050505050505050620006fa565b6200029d8282620002a1565b5050565b60008281526006602090815260408083206001600160a01b038516845290915290205460ff166200029d5760008281526006602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620003013390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171562000386576200038662000345565b604052919050565b600082601f830112620003a057600080fd5b815160206001600160401b03821115620003be57620003be62000345565b8160051b620003cf8282016200035b565b9283528481018201928281019087851115620003ea57600080fd5b83870192505b848310156200040b57825182529183019190830190620003f0565b979650505050505050565b600080600080600060a086880312156200042f57600080fd5b8551602080880151919650906001600160401b03808211156200045157600080fd5b818901915089601f8301126200046657600080fd5b8151818111156200047b576200047b62000345565b6200048f601f8201601f191685016200035b565b8181528b85838601011115620004a457600080fd5b60005b82811015620004c4578481018601518282018701528501620004a7565b50600091810190940152604089015192965080831115620004e457600080fd5b620004f28a848b016200038e565b955060608901519250808311156200050957600080fd5b620005178a848b016200038e565b945060808901519250808311156200052e57600080fd5b50506200053e888289016200038e565b9150509295509295909350565b600181811c908216806200056057607f821691505b6020821081036200058157634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005d557600081815260208120601f850160051c81016020861015620005b05750805b601f850160051c820191505b81811015620005d157828155600101620005bc565b5050505b505050565b81516001600160401b03811115620005f657620005f662000345565b6200060e816200060784546200054b565b8462000587565b602080601f8311600181146200064657600084156200062d5750858301515b600019600386901b1c1916600185901b178555620005d1565b600085815260208120601f198616915b82811015620006775788860151825594840194600190910190840162000656565b5085821015620006965787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b600060018201620006f357634e487b7160e01b600052601160045260246000fd5b5060010190565b613f65806200070a6000396000f3fe60806040526004361061036b5760003560e01c80635d599ee5116101c6578063ac31e231116100f7578063d539139311610095578063e051476e1161006f578063e051476e14610a78578063e985e9c514610a98578063f5b3669f14610ae1578063fc1cc1d114610af457600080fd5b8063d539139314610a06578063d547741f14610a28578063d75f0ac114610a4857600080fd5b8063b95eeffe116100d1578063b95eeffe14610986578063c87b56dd146109a6578063ce6dd918146109c6578063d0cc9971146109f357600080fd5b8063ac31e23114610919578063b4fad6f814610939578063b88d4fde1461096657600080fd5b80638525ab221161016457806395d89b411161013e57806395d89b41146108ba5780639abc8320146108cf578063a217fddf146108e4578063a22cb465146108f957600080fd5b80638525ab221461084a57806389cb148a1461087a57806391d148541461089a57600080fd5b806369647658116101a057806369647658146107e057806370a08231146107f55780637358fbd51461081557806377f1a0861461083557600080fd5b80635d599ee51461076c5780636352211e146107a05780636841925d146107c057600080fd5b80632874a238116102a05780633855c60d1161023e57806340241b691161021857806340241b69146106da5780634047638d1461071757806342842e0e1461072c57806342966c681461074c57600080fd5b80633855c60d1461067a57806339f7e37f1461069a5780633dea50e8146106ba57600080fd5b8063319fcb3b1161027a578063319fcb3b146106045780633499efa51461062457806336568abe1461063a57806336f005aa1461065a57600080fd5b80632874a238146105975780632b01acc4146105b75780632f2ff15d146105e457600080fd5b80631ee7b18b1161030d578063248a9ca3116102e7578063248a9ca31461050657806326092b8314610536578063278ecde114610550578063282c51f31461056357600080fd5b80631ee7b18b146104a657806320a9f5bd146104c657806323b872dd146104e657600080fd5b8063095ea7b311610349578063095ea7b3146103ff5780630a398b88146104215780630b6392d1146104515780630e617bf61461046b57600080fd5b806301ffc9a71461037057806306fdde03146103a5578063081812fc146103c7575b600080fd5b34801561037c57600080fd5b5061039061038b3660046131bd565b610b07565b60405190151581526020015b60405180910390f35b3480156103b157600080fd5b506103ba610b18565b60405161039c919061322a565b3480156103d357600080fd5b506103e76103e236600461323d565b610baa565b6040516001600160a01b03909116815260200161039c565b34801561040b57600080fd5b5061041f61041a36600461326b565b610bd1565b005b34801561042d57600080fd5b5061039061043c366004613297565b60096020526000908152604090205460ff1681565b34801561045d57600080fd5b506013546103909060ff1681565b34801561047757600080fd5b506104986104863660046132c8565b600d6020526000908152604090205481565b60405190815260200161039c565b3480156104b257600080fd5b506104986104c13660046132e3565b610ceb565b3480156104d257600080fd5b5061041f6104e136600461335f565b610da6565b3480156104f257600080fd5b5061041f6105013660046133a1565b610f3e565b34801561051257600080fd5b5061049861052136600461323d565b60009081526006602052604090206001015490565b34801561054257600080fd5b506008546103909060ff1681565b61041f61055e36600461323d565b610f70565b34801561056f57600080fd5b506104987f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b3480156105a357600080fd5b5061041f6105b236600461335f565b61104b565b3480156105c357600080fd5b506104986105d23660046132c8565b60106020526000908152604090205481565b3480156105f057600080fd5b5061041f6105ff3660046132e3565b6111a8565b34801561061057600080fd5b5061041f61061f366004613297565b6111cd565b34801561063057600080fd5b5061049860115481565b34801561064657600080fd5b5061041f6106553660046132e3565b61122b565b34801561066657600080fd5b5061041f6106753660046133e2565b6112a9565b34801561068657600080fd5b5061041f61069536600461340e565b6113c2565b3480156106a657600080fd5b5061041f6106b53660046134c6565b6113ea565b3480156106c657600080fd5b5061041f6106d536600461335f565b611410565b3480156106e657600080fd5b5061070a6106f536600461323d565b600b6020526000908152604090205460ff1681565b60405161039c9190613525565b34801561072357600080fd5b5061041f61156d565b34801561073857600080fd5b5061041f6107473660046133a1565b6115be565b34801561075857600080fd5b5061041f61076736600461323d565b6115d9565b34801561077857600080fd5b506104987f11cf46bea1094f63335637b879e8021ce59a9008b10e90c59d17337675ebc79281565b3480156107ac57600080fd5b506103e76107bb36600461323d565b61160a565b3480156107cc57600080fd5b506015546103e7906001600160a01b031681565b3480156107ec57600080fd5b5061041f61166a565b34801561080157600080fd5b50610498610810366004613297565b6116ba565b34801561082157600080fd5b5061041f610830366004613297565b611740565b34801561084157600080fd5b5061049861179e565b34801561085657600080fd5b506103906108653660046132c8565b600e6020526000908152604090205460ff1681565b34801561088657600080fd5b5061041f61089536600461335f565b611810565b3480156108a657600080fd5b506103906108b53660046132e3565b61196d565b3480156108c657600080fd5b506103ba611998565b3480156108db57600080fd5b506103ba6119a7565b3480156108f057600080fd5b50610498600081565b34801561090557600080fd5b5061041f61091436600461355b565b611a35565b34801561092557600080fd5b506016546103e7906001600160a01b031681565b34801561094557600080fd5b506104986109543660046132c8565b600c6020526000908152604090205481565b34801561097257600080fd5b5061041f610981366004613589565b611a40565b34801561099257600080fd5b506103906109a1366004613609565b611a72565b3480156109b257600080fd5b506103ba6109c136600461323d565b611af1565b3480156109d257600080fd5b506104986109e13660046132c8565b600f6020526000908152604090205481565b61041f610a0136600461368d565b611b76565b348015610a1257600080fd5b50610498600080516020613f1083398151915281565b348015610a3457600080fd5b5061041f610a433660046132e3565b611c31565b348015610a5457600080fd5b50610390610a6336600461323d565b600a6020526000908152604090205460ff1681565b348015610a8457600080fd5b5061041f610a9336600461323d565b611c56565b348015610aa457600080fd5b50610390610ab33660046136d9565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61041f610aef366004613707565b611c77565b61041f610b02366004613753565b611d2a565b6000610b1282611d9d565b92915050565b606060008054610b27906137b6565b80601f0160208091040260200160405190810160405280929190818152602001828054610b53906137b6565b8015610ba05780601f10610b7557610100808354040283529160200191610ba0565b820191906000526020600020905b815481529060010190602001808311610b8357829003601f168201915b5050505050905090565b6000610bb582611dc2565b506000908152600460205260409020546001600160a01b031690565b6000610bdc8261160a565b9050806001600160a01b0316836001600160a01b031603610c4e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610c6a5750610c6a8133610ab3565b610cdc5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610c45565b610ce68383611e12565b505050565b6000670de0b6b3a7640000831015610d165760405163526af33b60e11b815260040160405180910390fd5b816001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d54573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d7891906137f0565b610d8390600a61390d565b610d95670de0b6b3a76400008561391c565b610d9f919061393e565b9392505050565b6000610db181611e80565b60038214610dd257604051634fef66cb60e11b815260040160405180910390fd5b604080516003808252608082019092526000916020820160608036833701905050905060005b6003811015610efc576000816002811115610e1557610e1561350f565b9050600e6000826002811115610e2d57610e2d61350f565b6002811115610e3e57610e3e61350f565b815260200190815260200160002060009054906101000a900460ff16838381518110610e6c57610e6c613955565b91151560209283029190910190910152858583818110610e8e57610e8e613955565b9050602002016020810190610ea3919061396b565b600e6000836002811115610eb957610eb961350f565b6002811115610eca57610eca61350f565b81526020810191909152604001600020805460ff19169115159190911790555080610ef481613988565b915050610df8565b507f90a91b273be96e9e0ac13b953ddddca1dabdc666ae3128220522799eedefc64e818585604051610f30939291906139a1565b60405180910390a150505050565b610f49335b82611e8a565b610f655760405162461bcd60e51b8152600401610c4590613a23565b610ce6838383611f09565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a848610f9a81611e80565b610fa3826115d9565b6000828152600b602081815260408084208054600a8452918520805460ff19908116909155939092528154909216905560ff169061101490600f90836002811115610ff057610ff061350f565b60028111156110015761100161350f565b815260200190815260200160002061207a565b5050601480546001810182556000919091527fce6d7b5282bd9a3661ae061feed1dbda4e52ab073b1f9285be6e155d9c38d4ec0155565b600061105681611e80565b6003821461107757604051634fef66cb60e11b815260040160405180910390fd5b604080516003808252608082019092526000916020820160608036833701905050905060005b60038110156111745760008160028111156110ba576110ba61350f565b9050601060008260028111156110d2576110d261350f565b60028111156110e3576110e361350f565b81526020019081526020016000205483838151811061110457611104613955565b60200260200101818152505085858381811061112257611122613955565b905060200201356010600083600281111561113f5761113f61350f565b60028111156111505761115061350f565b8152602081019190915260400160002055508061116c81613988565b91505061109d565b507f26fb7b1afe619e46002b13f41625fbcce53e22aafabcf6be3faaaaf4b1cf7ea0818585604051610f3093929190613a70565b6000828152600660205260409020600101546111c381611e80565b610ce683836120d1565b60006111d881611e80565b601580546001600160a01b038481166001600160a01b0319831681179093556040519116919082907fedc15f70b211a65a31870c8f830f90f28e2b182700aee6e2cb14e6e0899f4c0c90600090a3505050565b6001600160a01b038116331461129b5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610c45565b6112a58282612157565b5050565b600080516020613f108339815191526112c181611e80565b6112ca836121be565b6112e95760405162ce66c960e21b815260048101849052602401610c45565b6000838152600b602052604090205460ff1680600281111561130d5761130d61350f565b83600281111561131f5761131f61350f565b0361133d57604051639ff8bb7b60e01b815260040160405180910390fd5b6000848152600b60205260409020805484919060ff191660018360028111156113685761136861350f565b021790555082600281111561137f5761137f61350f565b8160028111156113915761139161350f565b60405186907f1331998a9368f7f2b394de1fe8730f6800cd76e9c5ed4cd3174fd01f24b00f2a90600090a450505050565b600080516020613f108339815191526113da81611e80565b6113e483836121db565b50505050565b60006113f581611e80565b60135460ff1661140457600080fd5b6012610ce68382613b2d565b600061141b81611e80565b6003821461143c57604051634fef66cb60e11b815260040160405180910390fd5b604080516003808252608082019092526000916020820160608036833701905050905060005b600381101561153957600081600281111561147f5761147f61350f565b9050600c60008260028111156114975761149761350f565b60028111156114a8576114a861350f565b8152602001908152602001600020548383815181106114c9576114c9613955565b6020026020010181815250508585838181106114e7576114e7613955565b90506020020135600c60008360028111156115045761150461350f565b60028111156115155761151561350f565b8152602081019190915260400160002055508061153181613988565b915050611462565b507fe292e11ea1da99406b84cd4fd1b00e01931ae9e2cd9aa9b206558f03d6fd4881818585604051610f3093929190613a70565b600061157881611e80565b6008805460ff19811660ff9182161590811790925560405191161515907f7220f0ebdb9c6752ce9260f0906ca6d07315475d8bf113a4fed5896cdf7bb00d90600090a250565b610ce683838360405180602001604052806000815250611a40565b6115e233610f43565b6115fe5760405162461bcd60e51b8152600401610c4590613a23565b61160781612548565b50565b6000818152600260205260408120546001600160a01b031680610b125760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610c45565b600061167581611e80565b60135460ff1661168457600080fd5b6013805460ff191690556040517f12ae1bf27ef54f5645dede0aad04993398956c4554283dedaa14ed5b589723e590600090a150565b60006001600160a01b0382166117245760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610c45565b506001600160a01b031660009081526003602052604090205490565b600061174b81611e80565b601680546001600160a01b038481166001600160a01b0319831681179093556040519116919082907fedd30c0c9b8ab5e436464cd272083530975b89834fccf73e110f54510d11ade590600090a3505050565b601454600090156117d957601480546117b990600190613bed565b815481106117c9576117c9613955565b9060005260206000200154905090565b601154600754106117fd5760405163045a179360e31b815260040160405180910390fd5b60075461180b906001613c00565b905090565b600061181b81611e80565b6003821461183c57604051634fef66cb60e11b815260040160405180910390fd5b604080516003808252608082019092526000916020820160608036833701905050905060005b600381101561193957600081600281111561187f5761187f61350f565b9050600d60008260028111156118975761189761350f565b60028111156118a8576118a861350f565b8152602001908152602001600020548383815181106118c9576118c9613955565b6020026020010181815250508585838181106118e7576118e7613955565b90506020020135600d60008360028111156119045761190461350f565b60028111156119155761191561350f565b8152602081019190915260400160002055508061193181613988565b915050611862565b507f712cda0947728562e742acf18e7956b3f84b5d6d0b4c71f5d2dd74314f366cd2818585604051610f3093929190613a70565b60009182526006602090815260408084206001600160a01b0393909316845291905290205460ff1690565b606060018054610b27906137b6565b601280546119b4906137b6565b80601f01602080910402602001604051908101604052809291908181526020018280546119e0906137b6565b8015611a2d5780601f10611a0257610100808354040283529160200191611a2d565b820191906000526020600020905b815481529060010190602001808311611a1057829003601f168201915b505050505081565b6112a53383836125eb565b611a4a3383611e8a565b611a665760405162461bcd60e51b8152600401610c4590613a23565b6113e4848484846126b9565b604051636eb1769f60e11b81526001600160a01b038481166004830152306024830152600091849184169063dd62ed3e90604401602060405180830381865afa158015611ac3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ae79190613c13565b1015949350505050565b6060611afc826121be565b611b1b5760405162ce66c960e21b815260048101839052602401610c45565b6000828152600b602052604090205460129060ff166002811115611b4157611b4161350f565b611b4c906030613c00565b60ff16604051602001611b60929190613c2c565b6040516020818303038152906040529050919050565b7f11cf46bea1094f63335637b879e8021ce59a9008b10e90c59d17337675ebc792611ba081611e80565b611baa84846126ec565b6001600160a01b031663a9059cbb336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018590526044016020604051808303816000875af1158015611c06573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c2a9190613cc5565b5050505050565b600082815260066020526040902060010154611c4c81611e80565b610ce68383612157565b600080516020613f10833981519152611c6e81611e80565b6112a582612791565b6000611c8383836126ec565b6000858152600b602052604081205491925090611cd990600d90839060ff166002811115611cb357611cb361350f565b6002811115611cc457611cc461350f565b81526020019081526020016000205483610ceb565b9050611ce7335b8284611a72565b611d0a57838382604051633e8b902560e01b8152600401610c4593929190613d0b565b611d21335b6001600160a01b038416903084612857565b611c2a85612791565b6000611d3683836126ec565b90506000611d53600c6000876002811115611cb357611cb361350f565b9050611d5e33611ce0565b611d8157838382604051633e8b902560e01b8152600401610c4593929190613d0b565b611d8a33611d0f565b611d9486866121db565b50505050505050565b60006001600160e01b03198216637965db0b60e01b1480610b125750610b12826128b1565b611dcb816121be565b6116075760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610c45565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611e478261160a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6116078133612901565b600080611e968361160a565b9050806001600160a01b0316846001600160a01b03161480611edd57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80611f015750836001600160a01b0316611ef684610baa565b6001600160a01b0316145b949350505050565b826001600160a01b0316611f1c8261160a565b6001600160a01b031614611f425760405162461bcd60e51b8152600401610c4590613d2f565b6001600160a01b038216611fa45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610c45565b611fb1838383600161295a565b826001600160a01b0316611fc48261160a565b6001600160a01b031614611fea5760405162461bcd60e51b8152600401610c4590613d2f565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b8054806120c95760405162461bcd60e51b815260206004820152601b60248201527f436f756e7465723a2064656372656d656e74206f766572666c6f7700000000006044820152606401610c45565b600019019055565b6120db828261196d565b6112a55760008281526006602090815260408083206001600160a01b03851684529091529020805460ff191660011790556121133390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b612161828261196d565b156112a55760008281526006602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000908152600260205260409020546001600160a01b0316151590565b60085460009060ff1661220157604051631433fc9360e11b815260040160405180910390fd5b601154600754101580156122155750601454155b156122335760405163045a179360e31b815260040160405180910390fd5b6001600160a01b03831661225a57604051639fabe1c160e01b815260040160405180910390fd5b6001600160a01b03831660009081526009602052604090205460ff16801561229057506015546001600160a01b03848116911614155b156122ae57604051631bbdf5c560e31b815260040160405180910390fd5b600e60008360028111156122c4576122c461350f565b60028111156122d5576122d561350f565b815260208101919091526040016000205460ff16612308578160405163f83248f560e01b8152600401610c459190613525565b6010600083600281111561231e5761231e61350f565b600281111561232f5761232f61350f565b81526020019081526020016000205461237a600f60008560028111156123575761235761350f565b60028111156123685761236861350f565b81526020019081526020016000205490565b1061239a57816040516301a3eecb60e21b8152600401610c459190613525565b6001600160a01b0383166000908152600960205260409020805460ff191660011790556123c56129ab565b90506123d18382612a4e565b6000818152600b60205260409020805483919060ff191660018360028111156123fc576123fc61350f565b02179055506000818152600a60205260408120805460ff1916600117905561245b90600f908460028111156124335761243361350f565b60028111156124445761244461350f565b815260200190815260200160002080546001019055565b6015546001600160a01b039081169084160361250a576015546001600160a01b031663150b7a02336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015230602482015260448101849052608060648201526000608482015260a4016020604051808303816000875af11580156124e4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125089190613d74565b505b604051819033906001600160a01b038616907f3ce14af7d3d15972cf3bc45394699c54d0f6ad762b7246a257ebb3983122ca9a90600090a492915050565b60006125538261160a565b905061256381600084600161295a565b61256c8261160a565b600083815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526003845282852080546000190190558785526002909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b816001600160a01b0316836001600160a01b03160361264c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c45565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6126c4848484611f09565b6126d084848484612a68565b6113e45760405162461bcd60e51b8152600401610c4590613d91565b601654604051631c2356ef60e21b815260009182916001600160a01b039091169063708d5bbc906127239087908790600401613de3565b602060405180830381865afa158015612740573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127649190613df7565b90506001600160a01b038116610d9f57838360405163c16fc3ad60e01b8152600401610c45929190613de3565b61279a816121be565b6127b95760405162ce66c960e21b815260048101829052602401610c45565b6000818152600a602052604090205460ff16156127ec5760405163db068a7d60e01b815260048101829052602401610c45565b6000818152600a60205260409020805460ff191660011790558061280d3390565b6001600160a01b031661281f8361160a565b6001600160a01b03167f3ce14af7d3d15972cf3bc45394699c54d0f6ad762b7246a257ebb3983122ca9a60405160405180910390a450565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526113e4908590612b69565b60006001600160e01b031982166380ac58cd60e01b14806128e257506001600160e01b03198216635b5e139f60e01b145b80610b1257506301ffc9a760e01b6001600160e01b0319831614610b12565b61290b828261196d565b6112a55761291881612c3b565b612923836020612c4d565b604051602001612934929190613e14565b60408051601f198184030181529082905262461bcd60e51b8252610c459160040161322a565b61296684848484612de9565b6001600160a01b03841615158061298b57506015546001600160a01b03858116911614155b156113e457506000908152600a60205260409020805460ff191690555050565b60145460009015612a155760148054600091906129ca90600190613bed565b815481106129da576129da613955565b9060005260206000200154905060148054806129f8576129f8613e89565b600190038181906000526020600020016000905590558091505090565b60115460075410612a395760405163045a179360e31b815260040160405180910390fd5b612a47600780546001019055565b5060075490565b6112a5828260405180602001604052806000815250612e71565b60006001600160a01b0384163b15612b5e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612aac903390899088908890600401613e9f565b6020604051808303816000875af1925050508015612ae7575060408051601f3d908101601f19168201909252612ae491810190613d74565b60015b612b44573d808015612b15576040519150601f19603f3d011682016040523d82523d6000602084013e612b1a565b606091505b508051600003612b3c5760405162461bcd60e51b8152600401610c4590613d91565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f01565b506001949350505050565b6000612bbe826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612ea49092919063ffffffff16565b805190915015610ce65780806020019051810190612bdc9190613cc5565b610ce65760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610c45565b6060610b126001600160a01b03831660145b60606000612c5c83600261393e565b612c67906002613c00565b67ffffffffffffffff811115612c7f57612c7f61343a565b6040519080825280601f01601f191660200182016040528015612ca9576020820181803683370190505b509050600360fc1b81600081518110612cc457612cc4613955565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110612cf357612cf3613955565b60200101906001600160f81b031916908160001a9053506000612d1784600261393e565b612d22906001613c00565b90505b6001811115612d9a576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110612d5657612d56613955565b1a60f81b828281518110612d6c57612d6c613955565b60200101906001600160f81b031916908160001a90535060049490941c93612d9381613edc565b9050612d25565b508315610d9f5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610c45565b60018111156113e4576001600160a01b03841615612e2f576001600160a01b03841660009081526003602052604081208054839290612e29908490613bed565b90915550505b6001600160a01b038316156113e4576001600160a01b03831660009081526003602052604081208054839290612e66908490613c00565b909155505050505050565b612e7b8383612eb3565b612e886000848484612a68565b610ce65760405162461bcd60e51b8152600401610c4590613d91565b6060611f01848460008561302e565b6001600160a01b038216612f095760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c45565b612f12816121be565b15612f5f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c45565b612f6d60008383600161295a565b612f76816121be565b15612fc35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c45565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60608247101561308f5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610c45565b600080866001600160a01b031685876040516130ab9190613ef3565b60006040518083038185875af1925050503d80600081146130e8576040519150601f19603f3d011682016040523d82523d6000602084013e6130ed565b606091505b50915091506130fe87838387613109565b979650505050505050565b60608315613178578251600003613171576001600160a01b0385163b6131715760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610c45565b5081611f01565b611f01838381511561318d5781518083602001fd5b8060405162461bcd60e51b8152600401610c45919061322a565b6001600160e01b03198116811461160757600080fd5b6000602082840312156131cf57600080fd5b8135610d9f816131a7565b60005b838110156131f55781810151838201526020016131dd565b50506000910152565b600081518084526132168160208601602086016131da565b601f01601f19169290920160200192915050565b602081526000610d9f60208301846131fe565b60006020828403121561324f57600080fd5b5035919050565b6001600160a01b038116811461160757600080fd5b6000806040838503121561327e57600080fd5b823561328981613256565b946020939093013593505050565b6000602082840312156132a957600080fd5b8135610d9f81613256565b8035600381106132c357600080fd5b919050565b6000602082840312156132da57600080fd5b610d9f826132b4565b600080604083850312156132f657600080fd5b82359150602083013561330881613256565b809150509250929050565b60008083601f84011261332557600080fd5b50813567ffffffffffffffff81111561333d57600080fd5b6020830191508360208260051b850101111561335857600080fd5b9250929050565b6000806020838503121561337257600080fd5b823567ffffffffffffffff81111561338957600080fd5b61339585828601613313565b90969095509350505050565b6000806000606084860312156133b657600080fd5b83356133c181613256565b925060208401356133d181613256565b929592945050506040919091013590565b600080604083850312156133f557600080fd5b82359150613405602084016132b4565b90509250929050565b6000806040838503121561342157600080fd5b823561342c81613256565b9150613405602084016132b4565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561346b5761346b61343a565b604051601f8501601f19908116603f011681019082821181831017156134935761349361343a565b816040528093508581528686860111156134ac57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156134d857600080fd5b813567ffffffffffffffff8111156134ef57600080fd5b8201601f8101841361350057600080fd5b611f0184823560208401613450565b634e487b7160e01b600052602160045260246000fd5b602081016003831061354757634e487b7160e01b600052602160045260246000fd5b91905290565b801515811461160757600080fd5b6000806040838503121561356e57600080fd5b823561357981613256565b915060208301356133088161354d565b6000806000806080858703121561359f57600080fd5b84356135aa81613256565b935060208501356135ba81613256565b925060408501359150606085013567ffffffffffffffff8111156135dd57600080fd5b8501601f810187136135ee57600080fd5b6135fd87823560208401613450565b91505092959194509250565b60008060006060848603121561361e57600080fd5b833561362981613256565b925060208401359150604084013561364081613256565b809150509250925092565b60008083601f84011261365d57600080fd5b50813567ffffffffffffffff81111561367557600080fd5b60208301915083602082850101111561335857600080fd5b6000806000604084860312156136a257600080fd5b833567ffffffffffffffff8111156136b957600080fd5b6136c58682870161364b565b909790965060209590950135949350505050565b600080604083850312156136ec57600080fd5b82356136f781613256565b9150602083013561330881613256565b60008060006040848603121561371c57600080fd5b83359250602084013567ffffffffffffffff81111561373a57600080fd5b6137468682870161364b565b9497909650939450505050565b6000806000806060858703121561376957600080fd5b843561377481613256565b9350613782602086016132b4565b9250604085013567ffffffffffffffff81111561379e57600080fd5b6137aa8782880161364b565b95989497509550505050565b600181811c908216806137ca57607f821691505b6020821081036137ea57634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561380257600080fd5b815160ff81168114610d9f57600080fd5b634e487b7160e01b600052601160045260246000fd5b600181815b8085111561386457816000190482111561384a5761384a613813565b8085161561385757918102915b93841c939080029061382e565b509250929050565b60008261387b57506001610b12565b8161388857506000610b12565b816001811461389e57600281146138a8576138c4565b6001915050610b12565b60ff8411156138b9576138b9613813565b50506001821b610b12565b5060208310610133831016604e8410600b84101617156138e7575081810a610b12565b6138f18383613829565b806000190482111561390557613905613813565b029392505050565b6000610d9f60ff84168361386c565b60008261393957634e487b7160e01b600052601260045260246000fd5b500490565b8082028115828204841417610b1257610b12613813565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561397d57600080fd5b8135610d9f8161354d565b60006001820161399a5761399a613813565b5060010190565b604080825284519082018190526000906020906060840190828801845b828110156139dc5781511515845292840192908401906001016139be565b505050838103828501528481528590820160005b86811015613a17578235613a038161354d565b1515825291830191908301906001016139f0565b50979650505050505050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b604080825284519082018190526000906020906060840190828801845b82811015613aa957815184529284019290840190600101613a8d565b505050838103828501528481526001600160fb1b03851115613aca57600080fd5b8460051b808784840137010195945050505050565b601f821115610ce657600081815260208120601f850160051c81016020861015613b065750805b601f850160051c820191505b81811015613b2557828155600101613b12565b505050505050565b815167ffffffffffffffff811115613b4757613b4761343a565b613b5b81613b5584546137b6565b84613adf565b602080601f831160018114613b905760008415613b785750858301515b600019600386901b1c1916600185901b178555613b25565b600085815260208120601f198616915b82811015613bbf57888601518255948401946001909101908401613ba0565b5085821015613bdd5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b81810381811115610b1257610b12613813565b80820180821115610b1257610b12613813565b600060208284031215613c2557600080fd5b5051919050565b6000808454613c3a816137b6565b60018281168015613c525760018114613c6757613c96565b60ff1984168752821515830287019450613c96565b8860005260208060002060005b85811015613c8d5781548a820152908401908201613c74565b50505082870194505b5060f89690961b6001600160f81b0319168352505064173539b7b760d91b938101939093525050600601919050565b600060208284031215613cd757600080fd5b8151610d9f8161354d565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000613d1f604083018587613ce2565b9050826020830152949350505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b600060208284031215613d8657600080fd5b8151610d9f816131a7565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602081526000611f01602083018486613ce2565b600060208284031215613e0957600080fd5b8151610d9f81613256565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351613e4c8160178501602088016131da565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351613e7d8160288401602088016131da565b01602801949350505050565b634e487b7160e01b600052603160045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613ed2908301846131fe565b9695505050505050565b600081613eeb57613eeb613813565b506000190190565b60008251613f058184602087016131da565b919091019291505056fe9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6a264697066735822122046d2107dddcfb2e13753a58cab27431082d3658b894191936c8de0bd4c765de464736f6c63430008110033000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000006268747470733a2f2f766163616265652e696e667572612d697066732e696f2f697066732f516d5a415a64724b776e3832625244576d3451484267644e577954456e52345973415638746e3164316339737a412f746f6b656e2d6d657461646174612f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000197a8f6dd55198000000000000000000000000000000000000000000000000002ad373ce668e98000000000000000000000000000000000000000000000000021e0c0013070adc000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000055de6a779bbac00000000000000000000000000000000000000000000000000055de6a779bbac000000000000000000000000000000000000000000000000021e0c0013070adc0000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061036b5760003560e01c80635d599ee5116101c6578063ac31e231116100f7578063d539139311610095578063e051476e1161006f578063e051476e14610a78578063e985e9c514610a98578063f5b3669f14610ae1578063fc1cc1d114610af457600080fd5b8063d539139314610a06578063d547741f14610a28578063d75f0ac114610a4857600080fd5b8063b95eeffe116100d1578063b95eeffe14610986578063c87b56dd146109a6578063ce6dd918146109c6578063d0cc9971146109f357600080fd5b8063ac31e23114610919578063b4fad6f814610939578063b88d4fde1461096657600080fd5b80638525ab221161016457806395d89b411161013e57806395d89b41146108ba5780639abc8320146108cf578063a217fddf146108e4578063a22cb465146108f957600080fd5b80638525ab221461084a57806389cb148a1461087a57806391d148541461089a57600080fd5b806369647658116101a057806369647658146107e057806370a08231146107f55780637358fbd51461081557806377f1a0861461083557600080fd5b80635d599ee51461076c5780636352211e146107a05780636841925d146107c057600080fd5b80632874a238116102a05780633855c60d1161023e57806340241b691161021857806340241b69146106da5780634047638d1461071757806342842e0e1461072c57806342966c681461074c57600080fd5b80633855c60d1461067a57806339f7e37f1461069a5780633dea50e8146106ba57600080fd5b8063319fcb3b1161027a578063319fcb3b146106045780633499efa51461062457806336568abe1461063a57806336f005aa1461065a57600080fd5b80632874a238146105975780632b01acc4146105b75780632f2ff15d146105e457600080fd5b80631ee7b18b1161030d578063248a9ca3116102e7578063248a9ca31461050657806326092b8314610536578063278ecde114610550578063282c51f31461056357600080fd5b80631ee7b18b146104a657806320a9f5bd146104c657806323b872dd146104e657600080fd5b8063095ea7b311610349578063095ea7b3146103ff5780630a398b88146104215780630b6392d1146104515780630e617bf61461046b57600080fd5b806301ffc9a71461037057806306fdde03146103a5578063081812fc146103c7575b600080fd5b34801561037c57600080fd5b5061039061038b3660046131bd565b610b07565b60405190151581526020015b60405180910390f35b3480156103b157600080fd5b506103ba610b18565b60405161039c919061322a565b3480156103d357600080fd5b506103e76103e236600461323d565b610baa565b6040516001600160a01b03909116815260200161039c565b34801561040b57600080fd5b5061041f61041a36600461326b565b610bd1565b005b34801561042d57600080fd5b5061039061043c366004613297565b60096020526000908152604090205460ff1681565b34801561045d57600080fd5b506013546103909060ff1681565b34801561047757600080fd5b506104986104863660046132c8565b600d6020526000908152604090205481565b60405190815260200161039c565b3480156104b257600080fd5b506104986104c13660046132e3565b610ceb565b3480156104d257600080fd5b5061041f6104e136600461335f565b610da6565b3480156104f257600080fd5b5061041f6105013660046133a1565b610f3e565b34801561051257600080fd5b5061049861052136600461323d565b60009081526006602052604090206001015490565b34801561054257600080fd5b506008546103909060ff1681565b61041f61055e36600461323d565b610f70565b34801561056f57600080fd5b506104987f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b3480156105a357600080fd5b5061041f6105b236600461335f565b61104b565b3480156105c357600080fd5b506104986105d23660046132c8565b60106020526000908152604090205481565b3480156105f057600080fd5b5061041f6105ff3660046132e3565b6111a8565b34801561061057600080fd5b5061041f61061f366004613297565b6111cd565b34801561063057600080fd5b5061049860115481565b34801561064657600080fd5b5061041f6106553660046132e3565b61122b565b34801561066657600080fd5b5061041f6106753660046133e2565b6112a9565b34801561068657600080fd5b5061041f61069536600461340e565b6113c2565b3480156106a657600080fd5b5061041f6106b53660046134c6565b6113ea565b3480156106c657600080fd5b5061041f6106d536600461335f565b611410565b3480156106e657600080fd5b5061070a6106f536600461323d565b600b6020526000908152604090205460ff1681565b60405161039c9190613525565b34801561072357600080fd5b5061041f61156d565b34801561073857600080fd5b5061041f6107473660046133a1565b6115be565b34801561075857600080fd5b5061041f61076736600461323d565b6115d9565b34801561077857600080fd5b506104987f11cf46bea1094f63335637b879e8021ce59a9008b10e90c59d17337675ebc79281565b3480156107ac57600080fd5b506103e76107bb36600461323d565b61160a565b3480156107cc57600080fd5b506015546103e7906001600160a01b031681565b3480156107ec57600080fd5b5061041f61166a565b34801561080157600080fd5b50610498610810366004613297565b6116ba565b34801561082157600080fd5b5061041f610830366004613297565b611740565b34801561084157600080fd5b5061049861179e565b34801561085657600080fd5b506103906108653660046132c8565b600e6020526000908152604090205460ff1681565b34801561088657600080fd5b5061041f61089536600461335f565b611810565b3480156108a657600080fd5b506103906108b53660046132e3565b61196d565b3480156108c657600080fd5b506103ba611998565b3480156108db57600080fd5b506103ba6119a7565b3480156108f057600080fd5b50610498600081565b34801561090557600080fd5b5061041f61091436600461355b565b611a35565b34801561092557600080fd5b506016546103e7906001600160a01b031681565b34801561094557600080fd5b506104986109543660046132c8565b600c6020526000908152604090205481565b34801561097257600080fd5b5061041f610981366004613589565b611a40565b34801561099257600080fd5b506103906109a1366004613609565b611a72565b3480156109b257600080fd5b506103ba6109c136600461323d565b611af1565b3480156109d257600080fd5b506104986109e13660046132c8565b600f6020526000908152604090205481565b61041f610a0136600461368d565b611b76565b348015610a1257600080fd5b50610498600080516020613f1083398151915281565b348015610a3457600080fd5b5061041f610a433660046132e3565b611c31565b348015610a5457600080fd5b50610390610a6336600461323d565b600a6020526000908152604090205460ff1681565b348015610a8457600080fd5b5061041f610a9336600461323d565b611c56565b348015610aa457600080fd5b50610390610ab33660046136d9565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61041f610aef366004613707565b611c77565b61041f610b02366004613753565b611d2a565b6000610b1282611d9d565b92915050565b606060008054610b27906137b6565b80601f0160208091040260200160405190810160405280929190818152602001828054610b53906137b6565b8015610ba05780601f10610b7557610100808354040283529160200191610ba0565b820191906000526020600020905b815481529060010190602001808311610b8357829003601f168201915b5050505050905090565b6000610bb582611dc2565b506000908152600460205260409020546001600160a01b031690565b6000610bdc8261160a565b9050806001600160a01b0316836001600160a01b031603610c4e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610c6a5750610c6a8133610ab3565b610cdc5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610c45565b610ce68383611e12565b505050565b6000670de0b6b3a7640000831015610d165760405163526af33b60e11b815260040160405180910390fd5b816001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d54573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d7891906137f0565b610d8390600a61390d565b610d95670de0b6b3a76400008561391c565b610d9f919061393e565b9392505050565b6000610db181611e80565b60038214610dd257604051634fef66cb60e11b815260040160405180910390fd5b604080516003808252608082019092526000916020820160608036833701905050905060005b6003811015610efc576000816002811115610e1557610e1561350f565b9050600e6000826002811115610e2d57610e2d61350f565b6002811115610e3e57610e3e61350f565b815260200190815260200160002060009054906101000a900460ff16838381518110610e6c57610e6c613955565b91151560209283029190910190910152858583818110610e8e57610e8e613955565b9050602002016020810190610ea3919061396b565b600e6000836002811115610eb957610eb961350f565b6002811115610eca57610eca61350f565b81526020810191909152604001600020805460ff19169115159190911790555080610ef481613988565b915050610df8565b507f90a91b273be96e9e0ac13b953ddddca1dabdc666ae3128220522799eedefc64e818585604051610f30939291906139a1565b60405180910390a150505050565b610f49335b82611e8a565b610f655760405162461bcd60e51b8152600401610c4590613a23565b610ce6838383611f09565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a848610f9a81611e80565b610fa3826115d9565b6000828152600b602081815260408084208054600a8452918520805460ff19908116909155939092528154909216905560ff169061101490600f90836002811115610ff057610ff061350f565b60028111156110015761100161350f565b815260200190815260200160002061207a565b5050601480546001810182556000919091527fce6d7b5282bd9a3661ae061feed1dbda4e52ab073b1f9285be6e155d9c38d4ec0155565b600061105681611e80565b6003821461107757604051634fef66cb60e11b815260040160405180910390fd5b604080516003808252608082019092526000916020820160608036833701905050905060005b60038110156111745760008160028111156110ba576110ba61350f565b9050601060008260028111156110d2576110d261350f565b60028111156110e3576110e361350f565b81526020019081526020016000205483838151811061110457611104613955565b60200260200101818152505085858381811061112257611122613955565b905060200201356010600083600281111561113f5761113f61350f565b60028111156111505761115061350f565b8152602081019190915260400160002055508061116c81613988565b91505061109d565b507f26fb7b1afe619e46002b13f41625fbcce53e22aafabcf6be3faaaaf4b1cf7ea0818585604051610f3093929190613a70565b6000828152600660205260409020600101546111c381611e80565b610ce683836120d1565b60006111d881611e80565b601580546001600160a01b038481166001600160a01b0319831681179093556040519116919082907fedc15f70b211a65a31870c8f830f90f28e2b182700aee6e2cb14e6e0899f4c0c90600090a3505050565b6001600160a01b038116331461129b5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610c45565b6112a58282612157565b5050565b600080516020613f108339815191526112c181611e80565b6112ca836121be565b6112e95760405162ce66c960e21b815260048101849052602401610c45565b6000838152600b602052604090205460ff1680600281111561130d5761130d61350f565b83600281111561131f5761131f61350f565b0361133d57604051639ff8bb7b60e01b815260040160405180910390fd5b6000848152600b60205260409020805484919060ff191660018360028111156113685761136861350f565b021790555082600281111561137f5761137f61350f565b8160028111156113915761139161350f565b60405186907f1331998a9368f7f2b394de1fe8730f6800cd76e9c5ed4cd3174fd01f24b00f2a90600090a450505050565b600080516020613f108339815191526113da81611e80565b6113e483836121db565b50505050565b60006113f581611e80565b60135460ff1661140457600080fd5b6012610ce68382613b2d565b600061141b81611e80565b6003821461143c57604051634fef66cb60e11b815260040160405180910390fd5b604080516003808252608082019092526000916020820160608036833701905050905060005b600381101561153957600081600281111561147f5761147f61350f565b9050600c60008260028111156114975761149761350f565b60028111156114a8576114a861350f565b8152602001908152602001600020548383815181106114c9576114c9613955565b6020026020010181815250508585838181106114e7576114e7613955565b90506020020135600c60008360028111156115045761150461350f565b60028111156115155761151561350f565b8152602081019190915260400160002055508061153181613988565b915050611462565b507fe292e11ea1da99406b84cd4fd1b00e01931ae9e2cd9aa9b206558f03d6fd4881818585604051610f3093929190613a70565b600061157881611e80565b6008805460ff19811660ff9182161590811790925560405191161515907f7220f0ebdb9c6752ce9260f0906ca6d07315475d8bf113a4fed5896cdf7bb00d90600090a250565b610ce683838360405180602001604052806000815250611a40565b6115e233610f43565b6115fe5760405162461bcd60e51b8152600401610c4590613a23565b61160781612548565b50565b6000818152600260205260408120546001600160a01b031680610b125760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610c45565b600061167581611e80565b60135460ff1661168457600080fd5b6013805460ff191690556040517f12ae1bf27ef54f5645dede0aad04993398956c4554283dedaa14ed5b589723e590600090a150565b60006001600160a01b0382166117245760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610c45565b506001600160a01b031660009081526003602052604090205490565b600061174b81611e80565b601680546001600160a01b038481166001600160a01b0319831681179093556040519116919082907fedd30c0c9b8ab5e436464cd272083530975b89834fccf73e110f54510d11ade590600090a3505050565b601454600090156117d957601480546117b990600190613bed565b815481106117c9576117c9613955565b9060005260206000200154905090565b601154600754106117fd5760405163045a179360e31b815260040160405180910390fd5b60075461180b906001613c00565b905090565b600061181b81611e80565b6003821461183c57604051634fef66cb60e11b815260040160405180910390fd5b604080516003808252608082019092526000916020820160608036833701905050905060005b600381101561193957600081600281111561187f5761187f61350f565b9050600d60008260028111156118975761189761350f565b60028111156118a8576118a861350f565b8152602001908152602001600020548383815181106118c9576118c9613955565b6020026020010181815250508585838181106118e7576118e7613955565b90506020020135600d60008360028111156119045761190461350f565b60028111156119155761191561350f565b8152602081019190915260400160002055508061193181613988565b915050611862565b507f712cda0947728562e742acf18e7956b3f84b5d6d0b4c71f5d2dd74314f366cd2818585604051610f3093929190613a70565b60009182526006602090815260408084206001600160a01b0393909316845291905290205460ff1690565b606060018054610b27906137b6565b601280546119b4906137b6565b80601f01602080910402602001604051908101604052809291908181526020018280546119e0906137b6565b8015611a2d5780601f10611a0257610100808354040283529160200191611a2d565b820191906000526020600020905b815481529060010190602001808311611a1057829003601f168201915b505050505081565b6112a53383836125eb565b611a4a3383611e8a565b611a665760405162461bcd60e51b8152600401610c4590613a23565b6113e4848484846126b9565b604051636eb1769f60e11b81526001600160a01b038481166004830152306024830152600091849184169063dd62ed3e90604401602060405180830381865afa158015611ac3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ae79190613c13565b1015949350505050565b6060611afc826121be565b611b1b5760405162ce66c960e21b815260048101839052602401610c45565b6000828152600b602052604090205460129060ff166002811115611b4157611b4161350f565b611b4c906030613c00565b60ff16604051602001611b60929190613c2c565b6040516020818303038152906040529050919050565b7f11cf46bea1094f63335637b879e8021ce59a9008b10e90c59d17337675ebc792611ba081611e80565b611baa84846126ec565b6001600160a01b031663a9059cbb336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018590526044016020604051808303816000875af1158015611c06573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c2a9190613cc5565b5050505050565b600082815260066020526040902060010154611c4c81611e80565b610ce68383612157565b600080516020613f10833981519152611c6e81611e80565b6112a582612791565b6000611c8383836126ec565b6000858152600b602052604081205491925090611cd990600d90839060ff166002811115611cb357611cb361350f565b6002811115611cc457611cc461350f565b81526020019081526020016000205483610ceb565b9050611ce7335b8284611a72565b611d0a57838382604051633e8b902560e01b8152600401610c4593929190613d0b565b611d21335b6001600160a01b038416903084612857565b611c2a85612791565b6000611d3683836126ec565b90506000611d53600c6000876002811115611cb357611cb361350f565b9050611d5e33611ce0565b611d8157838382604051633e8b902560e01b8152600401610c4593929190613d0b565b611d8a33611d0f565b611d9486866121db565b50505050505050565b60006001600160e01b03198216637965db0b60e01b1480610b125750610b12826128b1565b611dcb816121be565b6116075760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610c45565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611e478261160a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6116078133612901565b600080611e968361160a565b9050806001600160a01b0316846001600160a01b03161480611edd57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80611f015750836001600160a01b0316611ef684610baa565b6001600160a01b0316145b949350505050565b826001600160a01b0316611f1c8261160a565b6001600160a01b031614611f425760405162461bcd60e51b8152600401610c4590613d2f565b6001600160a01b038216611fa45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610c45565b611fb1838383600161295a565b826001600160a01b0316611fc48261160a565b6001600160a01b031614611fea5760405162461bcd60e51b8152600401610c4590613d2f565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b8054806120c95760405162461bcd60e51b815260206004820152601b60248201527f436f756e7465723a2064656372656d656e74206f766572666c6f7700000000006044820152606401610c45565b600019019055565b6120db828261196d565b6112a55760008281526006602090815260408083206001600160a01b03851684529091529020805460ff191660011790556121133390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b612161828261196d565b156112a55760008281526006602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000908152600260205260409020546001600160a01b0316151590565b60085460009060ff1661220157604051631433fc9360e11b815260040160405180910390fd5b601154600754101580156122155750601454155b156122335760405163045a179360e31b815260040160405180910390fd5b6001600160a01b03831661225a57604051639fabe1c160e01b815260040160405180910390fd5b6001600160a01b03831660009081526009602052604090205460ff16801561229057506015546001600160a01b03848116911614155b156122ae57604051631bbdf5c560e31b815260040160405180910390fd5b600e60008360028111156122c4576122c461350f565b60028111156122d5576122d561350f565b815260208101919091526040016000205460ff16612308578160405163f83248f560e01b8152600401610c459190613525565b6010600083600281111561231e5761231e61350f565b600281111561232f5761232f61350f565b81526020019081526020016000205461237a600f60008560028111156123575761235761350f565b60028111156123685761236861350f565b81526020019081526020016000205490565b1061239a57816040516301a3eecb60e21b8152600401610c459190613525565b6001600160a01b0383166000908152600960205260409020805460ff191660011790556123c56129ab565b90506123d18382612a4e565b6000818152600b60205260409020805483919060ff191660018360028111156123fc576123fc61350f565b02179055506000818152600a60205260408120805460ff1916600117905561245b90600f908460028111156124335761243361350f565b60028111156124445761244461350f565b815260200190815260200160002080546001019055565b6015546001600160a01b039081169084160361250a576015546001600160a01b031663150b7a02336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015230602482015260448101849052608060648201526000608482015260a4016020604051808303816000875af11580156124e4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125089190613d74565b505b604051819033906001600160a01b038616907f3ce14af7d3d15972cf3bc45394699c54d0f6ad762b7246a257ebb3983122ca9a90600090a492915050565b60006125538261160a565b905061256381600084600161295a565b61256c8261160a565b600083815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526003845282852080546000190190558785526002909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b816001600160a01b0316836001600160a01b03160361264c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c45565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6126c4848484611f09565b6126d084848484612a68565b6113e45760405162461bcd60e51b8152600401610c4590613d91565b601654604051631c2356ef60e21b815260009182916001600160a01b039091169063708d5bbc906127239087908790600401613de3565b602060405180830381865afa158015612740573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127649190613df7565b90506001600160a01b038116610d9f57838360405163c16fc3ad60e01b8152600401610c45929190613de3565b61279a816121be565b6127b95760405162ce66c960e21b815260048101829052602401610c45565b6000818152600a602052604090205460ff16156127ec5760405163db068a7d60e01b815260048101829052602401610c45565b6000818152600a60205260409020805460ff191660011790558061280d3390565b6001600160a01b031661281f8361160a565b6001600160a01b03167f3ce14af7d3d15972cf3bc45394699c54d0f6ad762b7246a257ebb3983122ca9a60405160405180910390a450565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526113e4908590612b69565b60006001600160e01b031982166380ac58cd60e01b14806128e257506001600160e01b03198216635b5e139f60e01b145b80610b1257506301ffc9a760e01b6001600160e01b0319831614610b12565b61290b828261196d565b6112a55761291881612c3b565b612923836020612c4d565b604051602001612934929190613e14565b60408051601f198184030181529082905262461bcd60e51b8252610c459160040161322a565b61296684848484612de9565b6001600160a01b03841615158061298b57506015546001600160a01b03858116911614155b156113e457506000908152600a60205260409020805460ff191690555050565b60145460009015612a155760148054600091906129ca90600190613bed565b815481106129da576129da613955565b9060005260206000200154905060148054806129f8576129f8613e89565b600190038181906000526020600020016000905590558091505090565b60115460075410612a395760405163045a179360e31b815260040160405180910390fd5b612a47600780546001019055565b5060075490565b6112a5828260405180602001604052806000815250612e71565b60006001600160a01b0384163b15612b5e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612aac903390899088908890600401613e9f565b6020604051808303816000875af1925050508015612ae7575060408051601f3d908101601f19168201909252612ae491810190613d74565b60015b612b44573d808015612b15576040519150601f19603f3d011682016040523d82523d6000602084013e612b1a565b606091505b508051600003612b3c5760405162461bcd60e51b8152600401610c4590613d91565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f01565b506001949350505050565b6000612bbe826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612ea49092919063ffffffff16565b805190915015610ce65780806020019051810190612bdc9190613cc5565b610ce65760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610c45565b6060610b126001600160a01b03831660145b60606000612c5c83600261393e565b612c67906002613c00565b67ffffffffffffffff811115612c7f57612c7f61343a565b6040519080825280601f01601f191660200182016040528015612ca9576020820181803683370190505b509050600360fc1b81600081518110612cc457612cc4613955565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110612cf357612cf3613955565b60200101906001600160f81b031916908160001a9053506000612d1784600261393e565b612d22906001613c00565b90505b6001811115612d9a576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110612d5657612d56613955565b1a60f81b828281518110612d6c57612d6c613955565b60200101906001600160f81b031916908160001a90535060049490941c93612d9381613edc565b9050612d25565b508315610d9f5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610c45565b60018111156113e4576001600160a01b03841615612e2f576001600160a01b03841660009081526003602052604081208054839290612e29908490613bed565b90915550505b6001600160a01b038316156113e4576001600160a01b03831660009081526003602052604081208054839290612e66908490613c00565b909155505050505050565b612e7b8383612eb3565b612e886000848484612a68565b610ce65760405162461bcd60e51b8152600401610c4590613d91565b6060611f01848460008561302e565b6001600160a01b038216612f095760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c45565b612f12816121be565b15612f5f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c45565b612f6d60008383600161295a565b612f76816121be565b15612fc35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c45565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60608247101561308f5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610c45565b600080866001600160a01b031685876040516130ab9190613ef3565b60006040518083038185875af1925050503d80600081146130e8576040519150601f19603f3d011682016040523d82523d6000602084013e6130ed565b606091505b50915091506130fe87838387613109565b979650505050505050565b60608315613178578251600003613171576001600160a01b0385163b6131715760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610c45565b5081611f01565b611f01838381511561318d5781518083602001fd5b8060405162461bcd60e51b8152600401610c45919061322a565b6001600160e01b03198116811461160757600080fd5b6000602082840312156131cf57600080fd5b8135610d9f816131a7565b60005b838110156131f55781810151838201526020016131dd565b50506000910152565b600081518084526132168160208601602086016131da565b601f01601f19169290920160200192915050565b602081526000610d9f60208301846131fe565b60006020828403121561324f57600080fd5b5035919050565b6001600160a01b038116811461160757600080fd5b6000806040838503121561327e57600080fd5b823561328981613256565b946020939093013593505050565b6000602082840312156132a957600080fd5b8135610d9f81613256565b8035600381106132c357600080fd5b919050565b6000602082840312156132da57600080fd5b610d9f826132b4565b600080604083850312156132f657600080fd5b82359150602083013561330881613256565b809150509250929050565b60008083601f84011261332557600080fd5b50813567ffffffffffffffff81111561333d57600080fd5b6020830191508360208260051b850101111561335857600080fd5b9250929050565b6000806020838503121561337257600080fd5b823567ffffffffffffffff81111561338957600080fd5b61339585828601613313565b90969095509350505050565b6000806000606084860312156133b657600080fd5b83356133c181613256565b925060208401356133d181613256565b929592945050506040919091013590565b600080604083850312156133f557600080fd5b82359150613405602084016132b4565b90509250929050565b6000806040838503121561342157600080fd5b823561342c81613256565b9150613405602084016132b4565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561346b5761346b61343a565b604051601f8501601f19908116603f011681019082821181831017156134935761349361343a565b816040528093508581528686860111156134ac57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156134d857600080fd5b813567ffffffffffffffff8111156134ef57600080fd5b8201601f8101841361350057600080fd5b611f0184823560208401613450565b634e487b7160e01b600052602160045260246000fd5b602081016003831061354757634e487b7160e01b600052602160045260246000fd5b91905290565b801515811461160757600080fd5b6000806040838503121561356e57600080fd5b823561357981613256565b915060208301356133088161354d565b6000806000806080858703121561359f57600080fd5b84356135aa81613256565b935060208501356135ba81613256565b925060408501359150606085013567ffffffffffffffff8111156135dd57600080fd5b8501601f810187136135ee57600080fd5b6135fd87823560208401613450565b91505092959194509250565b60008060006060848603121561361e57600080fd5b833561362981613256565b925060208401359150604084013561364081613256565b809150509250925092565b60008083601f84011261365d57600080fd5b50813567ffffffffffffffff81111561367557600080fd5b60208301915083602082850101111561335857600080fd5b6000806000604084860312156136a257600080fd5b833567ffffffffffffffff8111156136b957600080fd5b6136c58682870161364b565b909790965060209590950135949350505050565b600080604083850312156136ec57600080fd5b82356136f781613256565b9150602083013561330881613256565b60008060006040848603121561371c57600080fd5b83359250602084013567ffffffffffffffff81111561373a57600080fd5b6137468682870161364b565b9497909650939450505050565b6000806000806060858703121561376957600080fd5b843561377481613256565b9350613782602086016132b4565b9250604085013567ffffffffffffffff81111561379e57600080fd5b6137aa8782880161364b565b95989497509550505050565b600181811c908216806137ca57607f821691505b6020821081036137ea57634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561380257600080fd5b815160ff81168114610d9f57600080fd5b634e487b7160e01b600052601160045260246000fd5b600181815b8085111561386457816000190482111561384a5761384a613813565b8085161561385757918102915b93841c939080029061382e565b509250929050565b60008261387b57506001610b12565b8161388857506000610b12565b816001811461389e57600281146138a8576138c4565b6001915050610b12565b60ff8411156138b9576138b9613813565b50506001821b610b12565b5060208310610133831016604e8410600b84101617156138e7575081810a610b12565b6138f18383613829565b806000190482111561390557613905613813565b029392505050565b6000610d9f60ff84168361386c565b60008261393957634e487b7160e01b600052601260045260246000fd5b500490565b8082028115828204841417610b1257610b12613813565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561397d57600080fd5b8135610d9f8161354d565b60006001820161399a5761399a613813565b5060010190565b604080825284519082018190526000906020906060840190828801845b828110156139dc5781511515845292840192908401906001016139be565b505050838103828501528481528590820160005b86811015613a17578235613a038161354d565b1515825291830191908301906001016139f0565b50979650505050505050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b604080825284519082018190526000906020906060840190828801845b82811015613aa957815184529284019290840190600101613a8d565b505050838103828501528481526001600160fb1b03851115613aca57600080fd5b8460051b808784840137010195945050505050565b601f821115610ce657600081815260208120601f850160051c81016020861015613b065750805b601f850160051c820191505b81811015613b2557828155600101613b12565b505050505050565b815167ffffffffffffffff811115613b4757613b4761343a565b613b5b81613b5584546137b6565b84613adf565b602080601f831160018114613b905760008415613b785750858301515b600019600386901b1c1916600185901b178555613b25565b600085815260208120601f198616915b82811015613bbf57888601518255948401946001909101908401613ba0565b5085821015613bdd5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b81810381811115610b1257610b12613813565b80820180821115610b1257610b12613813565b600060208284031215613c2557600080fd5b5051919050565b6000808454613c3a816137b6565b60018281168015613c525760018114613c6757613c96565b60ff1984168752821515830287019450613c96565b8860005260208060002060005b85811015613c8d5781548a820152908401908201613c74565b50505082870194505b5060f89690961b6001600160f81b0319168352505064173539b7b760d91b938101939093525050600601919050565b600060208284031215613cd757600080fd5b8151610d9f8161354d565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000613d1f604083018587613ce2565b9050826020830152949350505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b600060208284031215613d8657600080fd5b8151610d9f816131a7565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602081526000611f01602083018486613ce2565b600060208284031215613e0957600080fd5b8151610d9f81613256565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351613e4c8160178501602088016131da565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351613e7d8160288401602088016131da565b01602801949350505050565b634e487b7160e01b600052603160045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613ed2908301846131fe565b9695505050505050565b600081613eeb57613eeb613813565b506000190190565b60008251613f058184602087016131da565b919091019291505056fe9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6a264697066735822122046d2107dddcfb2e13753a58cab27431082d3658b894191936c8de0bd4c765de464736f6c63430008110033

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

000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000006268747470733a2f2f766163616265652e696e667572612d697066732e696f2f697066732f516d5a415a64724b776e3832625244576d3451484267644e577954456e52345973415638746e3164316339737a412f746f6b656e2d6d657461646174612f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000197a8f6dd55198000000000000000000000000000000000000000000000000002ad373ce668e98000000000000000000000000000000000000000000000000021e0c0013070adc000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000055de6a779bbac00000000000000000000000000000000000000000000000000055de6a779bbac000000000000000000000000000000000000000000000000021e0c0013070adc0000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : collectionLimit_ (uint256): 10000
Arg [1] : baseUri_ (string): https://vacabee.infura-ipfs.io/ipfs/QmZAZdrKwn82bRDWm4QHBgdNWyTEnR4YsAV8tn1d1c9szA/token-metadata/
Arg [2] : _tierPrices (uint256[]): 470000000000000000000,790000000000000000000,9999000000000000000000
Arg [3] : _membershipActivationPrices (uint256[]): 99000000000000000000,99000000000000000000,9999000000000000000000
Arg [4] : _tierLimits (uint256[]): 1000,1000,0

-----Encoded View---------------
22 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000240
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000062
Arg [6] : 68747470733a2f2f766163616265652e696e667572612d697066732e696f2f69
Arg [7] : 7066732f516d5a415a64724b776e3832625244576d3451484267644e57795445
Arg [8] : 6e52345973415638746e3164316339737a412f746f6b656e2d6d657461646174
Arg [9] : 612f000000000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [11] : 0000000000000000000000000000000000000000000000197a8f6dd551980000
Arg [12] : 00000000000000000000000000000000000000000000002ad373ce668e980000
Arg [13] : 00000000000000000000000000000000000000000000021e0c0013070adc0000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [15] : 0000000000000000000000000000000000000000000000055de6a779bbac0000
Arg [16] : 0000000000000000000000000000000000000000000000055de6a779bbac0000
Arg [17] : 00000000000000000000000000000000000000000000021e0c0013070adc0000
Arg [18] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [19] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [20] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [21] : 0000000000000000000000000000000000000000000000000000000000000000


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.