ETH Price: $3,155.28 (+1.14%)
Gas: 2 Gwei

Token

Lucky Teacup Piggy Club (LTPC)
 

Overview

Max Total Supply

2,869 LTPC

Holders

493

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 LTPC
0x9607c7a7feaad726eedaee4d4e024fb9ac9b0045
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:
LuckyTeacupPiggyClub

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-08
*/

// SPDX-License-Identifier: MIT

/**

██      ██    ██  ██████ ██   ██ ██    ██     ████████ ███████  █████   ██████ ██    ██ ██████      ██████  ██  ██████   ██████  ██ ███████ ███████ 
██      ██    ██ ██      ██  ██   ██  ██         ██    ██      ██   ██ ██      ██    ██ ██   ██     ██   ██ ██ ██       ██       ██ ██      ██      
██      ██    ██ ██      █████     ████          ██    █████   ███████ ██      ██    ██ ██████      ██████  ██ ██   ███ ██   ███ ██ █████   ███████ 
██      ██    ██ ██      ██  ██     ██           ██    ██      ██   ██ ██      ██    ██ ██          ██      ██ ██    ██ ██    ██ ██ ██           ██ 
███████  ██████   ██████ ██   ██    ██           ██    ███████ ██   ██  ██████  ██████  ██          ██      ██  ██████   ██████  ██ ███████ ███████  
                                                                                                                                                                               
                                                                                                                                                                               

*/



// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Counters.sol


// 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: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/interfaces/IERC20.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol)

pragma solidity ^0.8.0;


// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol


// 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: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// 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: @openzeppelin/contracts/interfaces/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;


// File: @openzeppelin/contracts/interfaces/IERC2981.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Called with the sale price to determine how much royalty is owed and to whom.
     * @param tokenId - the NFT asset queried for royalty information
     * @param salePrice - the sale price of the NFT asset specified by `tokenId`
     * @return receiver - address of who should be sent the royalty payment
     * @return royaltyAmount - the royalty payment amount for `salePrice`
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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



// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @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: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        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: transfer caller is not owner nor 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: transfer caller is not owner nor 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 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 _owners[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) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, 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);

        _balances[to] += 1;
        _owners[tokenId] = to;

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

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

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

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

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

    /**
     * @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 of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {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 a {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 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 {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

/**

                                                                                        
                                                                                        
LLLLLLLLLLL             TTTTTTTTTTTTTTTTTTTTTTTPPPPPPPPPPPPPPPPP           CCCCCCCCCCCCC
L:::::::::L             T:::::::::::::::::::::TP::::::::::::::::P       CCC::::::::::::C
L:::::::::L             T:::::::::::::::::::::TP::::::PPPPPP:::::P    CC:::::::::::::::C
LL:::::::LL             T:::::TT:::::::TT:::::TPP:::::P     P:::::P  C:::::CCCCCCCC::::C
  L:::::L               TTTTTT  T:::::T  TTTTTT  P::::P     P:::::P C:::::C       CCCCCC
  L:::::L                       T:::::T          P::::P     P:::::PC:::::C              
  L:::::L                       T:::::T          P::::PPPPPP:::::P C:::::C              
  L:::::L                       T:::::T          P:::::::::::::PP  C:::::C              
  L:::::L                       T:::::T          P::::PPPPPPPPP    C:::::C              
  L:::::L                       T:::::T          P::::P            C:::::C              
  L:::::L                       T:::::T          P::::P            C:::::C              
  L:::::L         LLLLLL        T:::::T          P::::P             C:::::C       CCCCCC
LL:::::::LLLLLLLLL:::::L      TT:::::::TT      PP::::::PP            C:::::CCCCCCCC::::C
L::::::::::::::::::::::L      T:::::::::T      P::::::::P             CC:::::::::::::::C
L::::::::::::::::::::::L      T:::::::::T      P::::::::P               CCC::::::::::::C
LLLLLLLLLLLLLLLLLLLLLLLL      TTTTTTTTTTT      PPPPPPPPPP                  CCCCCCCCCCCCC
                                                                                                                                                                               
                                                                                                                                                                                                         
                                                                                        
                                                                                
*/


//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721)

pragma solidity ^0.8.0;


contract LuckyTeacupPiggyClub is ERC721, IERC2981, Ownable, ReentrancyGuard {
    using Counters for Counters.Counter;
    using Strings for uint256;

    Counters.Counter private tokenCounter;

    string private baseURI = "ipfs://QmcCZGqwQAUr6y8Xszia2Bo3dCiUNkhZ3BXm3CDSTbCybY";


    uint256 public constant MAX_MINTS_PER_TX = 10;
    uint256 public maxSupply = 3333;

    uint256 public constant PUBLIC_SALE_PRICE = 0.012 ether;
    uint256 public NUM_FREE_MINTS = 777;
    bool public isPublicSaleActive = true;




    // ============ ACCESS CONTROL/SANITY MODIFIERS ============

    modifier publicSaleActive() {
        require(isPublicSaleActive, "Public sale is not open");
        _;
    }



    modifier maxMintsPerTX(uint256 numberOfTokens) {
        require(
            numberOfTokens <= MAX_MINTS_PER_TX,
            "Max mints per transaction exceeded"
        );
        _;
    }

    modifier canMintNFTs(uint256 numberOfTokens) {
        require(
            tokenCounter.current() + numberOfTokens <=
                maxSupply,
            "Not enough mints remaining to mint"
        );
        _;
    }



    modifier isCorrectPayment(uint256 price, uint256 numberOfTokens) {
        if(tokenCounter.current()>NUM_FREE_MINTS){
        require(
            (price * numberOfTokens) == msg.value,
            "Incorrect ETH value sent"
        );
        }
        _;
    }


    constructor(
    string memory _name,
    string memory _symbol
  ) ERC721(_name, _symbol) {
  }

    // ============ PUBLIC FUNCTIONS FOR MINTING ============

    function mint(uint256 numberOfTokens)
        external
        payable
        nonReentrant
        isCorrectPayment(PUBLIC_SALE_PRICE, numberOfTokens)
        publicSaleActive
        canMintNFTs(numberOfTokens)
        maxMintsPerTX(numberOfTokens)
    {
        //require(numberOfTokens <= MAX_MINTS_PER_TX);
        //if(tokenCounter.current()>NUM_FREE_MINTS){
        //    require((PUBLIC_SALE_PRICE * numberOfTokens) <= msg.value);
        //}
        for (uint256 i = 0; i < numberOfTokens; i++) {
            _safeMint(msg.sender, nextTokenId());
        }
    }




    // ============ PUBLIC READ-ONLY FUNCTIONS ============

    function getBaseURI() external view returns (string memory) {
        return baseURI;
    }

    function getLastTokenId() external view returns (uint256) {
        return tokenCounter.current();
    }

    function totalSupply() external view returns (uint256) {
        return tokenCounter.current();
    }

    // ============ OWNER-ONLY ADMIN FUNCTIONS ============

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



    function setIsPublicSaleActive(bool _isPublicSaleActive)
        external
        onlyOwner
    {
        isPublicSaleActive = _isPublicSaleActive;
    }

    function setNumFreeMints(uint256 _numfreemints)
        external
        onlyOwner
    {
        NUM_FREE_MINTS = _numfreemints;
    }


    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function withdrawTokens(IERC20 token) public onlyOwner {
        uint256 balance = token.balanceOf(address(this));
        token.transfer(msg.sender, balance);
    }



    // ============ SUPPORTING FUNCTIONS ============

    function nextTokenId() private returns (uint256) {
        tokenCounter.increment();
        return tokenCounter.current();
    }

    // ============ FUNCTION OVERRIDES ============

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721, IERC165)
        returns (bool)
    {
        return
            interfaceId == type(IERC2981).interfaceId ||
            super.supportsInterface(interfaceId);
    }

   
    

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

        return
            string(abi.encodePacked(baseURI, "/", tokenId.toString(), ".json"));
    }

    /**
     * @dev See {IERC165-royaltyInfo}.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        require(_exists(tokenId), "Nonexistent token");

        return (address(this), SafeMath.div(SafeMath.mul(salePrice, 5), 100));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLastTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e060405260356080818152906200235460a0398051620000299160099160209091019062000122565b50610d05600a55610309600b55600c805460ff191660011790553480156200005057600080fd5b50604051620023893803806200238983398101604081905262000073916200027f565b8151829082906200008c90600090602085019062000122565b508051620000a290600190602084019062000122565b505050620000bf620000b9620000cc60201b60201c565b620000d0565b505060016007556200033c565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013090620002e9565b90600052602060002090601f0160209004810192826200015457600085556200019f565b82601f106200016f57805160ff19168380011785556200019f565b828001600101855582156200019f579182015b828111156200019f57825182559160200191906001019062000182565b50620001ad929150620001b1565b5090565b5b80821115620001ad5760008155600101620001b2565b600082601f830112620001da57600080fd5b81516001600160401b0380821115620001f757620001f762000326565b604051601f8301601f19908116603f0116810190828211818310171562000222576200022262000326565b816040528381526020925086838588010111156200023f57600080fd5b600091505b8382101562000263578582018301518183018401529082019062000244565b83821115620002755760008385830101525b9695505050505050565b600080604083850312156200029357600080fd5b82516001600160401b0380821115620002ab57600080fd5b620002b986838701620001c8565b93506020850151915080821115620002d057600080fd5b50620002df85828601620001c8565b9150509250929050565b600181811c90821680620002fe57607f821691505b602082108114156200032057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612008806200034c6000396000f3fe6080604052600436106101d85760003560e01c80636352211e11610102578063a0712d6811610095578063c87b56dd11610064578063c87b56dd14610515578063d5abeb0114610535578063e985e9c51461054b578063f2fde38b1461059457600080fd5b8063a0712d68146104ad578063a22cb465146104c0578063b88d4fde146104e0578063c6a91b421461050057600080fd5b806383c4c00d116100d157806383c4c00d146102d75780638da5cb5b1461046457806395d89b4114610482578063982d669e1461049757600080fd5b80636352211e146103fa57806370a082311461041a578063714c53981461043a578063715018a61461044f57600080fd5b80631e84c4131161017a5780633ccfd60b116101495780633ccfd60b1461038557806342842e0e1461039a57806349df728c146103ba57806355f804b3146103da57600080fd5b80631e84c413146102ec57806323b872dd1461030657806328cad13d146103265780632a55205a1461034657600080fd5b8063081812fc116101b6578063081812fc1461025d578063095ea7b3146102955780630a00ae83146102b757806318160ddd146102d757600080fd5b806301ffc9a7146101dd57806306fdde031461021257806307e89ec014610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611b37565b6105b4565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b506102276105df565b6040516102099190611d5e565b34801561024057600080fd5b5061024f662aa1efb94e000081565b604051908152602001610209565b34801561026957600080fd5b5061027d610278366004611bba565b610671565b6040516001600160a01b039091168152602001610209565b3480156102a157600080fd5b506102b56102b0366004611ad1565b61070b565b005b3480156102c357600080fd5b506102b56102d2366004611bba565b610821565b3480156102e357600080fd5b5061024f610850565b3480156102f857600080fd5b50600c546101fd9060ff1681565b34801561031257600080fd5b506102b56103213660046119e2565b610860565b34801561033257600080fd5b506102b5610341366004611afd565b610891565b34801561035257600080fd5b50610366610361366004611bec565b6108ce565b604080516001600160a01b039093168352602083019190915201610209565b34801561039157600080fd5b506102b5610949565b3480156103a657600080fd5b506102b56103b53660046119e2565b6109a6565b3480156103c657600080fd5b506102b56103d536600461198c565b6109c1565b3480156103e657600080fd5b506102b56103f5366004611b71565b610ae8565b34801561040657600080fd5b5061027d610415366004611bba565b610b25565b34801561042657600080fd5b5061024f61043536600461198c565b610b9c565b34801561044657600080fd5b50610227610c23565b34801561045b57600080fd5b506102b5610c32565b34801561047057600080fd5b506006546001600160a01b031661027d565b34801561048e57600080fd5b50610227610c68565b3480156104a357600080fd5b5061024f600b5481565b6102b56104bb366004611bba565b610c77565b3480156104cc57600080fd5b506102b56104db366004611aa3565b610e99565b3480156104ec57600080fd5b506102b56104fb366004611a23565b610ea4565b34801561050c57600080fd5b5061024f600a81565b34801561052157600080fd5b50610227610530366004611bba565b610edc565b34801561054157600080fd5b5061024f600a5481565b34801561055757600080fd5b506101fd6105663660046119a9565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105a057600080fd5b506102b56105af36600461198c565b610f69565b60006001600160e01b0319821663152a902d60e11b14806105d957506105d982611004565b92915050565b6060600080546105ee90611ed7565b80601f016020809104026020016040519081016040528092919081815260200182805461061a90611ed7565b80156106675780601f1061063c57610100808354040283529160200191610667565b820191906000526020600020905b81548152906001019060200180831161064a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106ef5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061071682610b25565b9050806001600160a01b0316836001600160a01b031614156107845760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106e6565b336001600160a01b03821614806107a057506107a08133610566565b6108125760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106e6565b61081c8383611054565b505050565b6006546001600160a01b0316331461084b5760405162461bcd60e51b81526004016106e690611dc3565b600b55565b600061085b60085490565b905090565b61086a33826110c2565b6108865760405162461bcd60e51b81526004016106e690611df8565b61081c8383836111b9565b6006546001600160a01b031633146108bb5760405162461bcd60e51b81526004016106e690611dc3565b600c805460ff1916911515919091179055565b60008281526002602052604081205481906001600160a01b03166109285760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b60448201526064016106e6565b3061093e610937856005611359565b606461136c565b915091509250929050565b6006546001600160a01b031633146109735760405162461bcd60e51b81526004016106e690611dc3565b6040514790339082156108fc029083906000818181858888f193505050501580156109a2573d6000803e3d6000fd5b5050565b61081c83838360405180602001604052806000815250610ea4565b6006546001600160a01b031633146109eb5760405162461bcd60e51b81526004016106e690611dc3565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a082319060240160206040518083038186803b158015610a2d57600080fd5b505afa158015610a41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a659190611bd3565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb90604401602060405180830381600087803b158015610ab057600080fd5b505af1158015610ac4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061081c9190611b1a565b6006546001600160a01b03163314610b125760405162461bcd60e51b81526004016106e690611dc3565b80516109a290600990602084019061187d565b6000818152600260205260408120546001600160a01b0316806105d95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106e6565b60006001600160a01b038216610c075760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106e6565b506001600160a01b031660009081526003602052604090205490565b6060600980546105ee90611ed7565b6006546001600160a01b03163314610c5c5760405162461bcd60e51b81526004016106e690611dc3565b610c666000611378565b565b6060600180546105ee90611ed7565b60026007541415610cca5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106e6565b6002600755600b54600854662aa1efb94e00009183911115610d3e5734610cf18284611e75565b14610d3e5760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374204554482076616c75652073656e74000000000000000060448201526064016106e6565b600c5460ff16610d905760405162461bcd60e51b815260206004820152601760248201527f5075626c69632073616c65206973206e6f74206f70656e00000000000000000060448201526064016106e6565b82600a5481610d9e60085490565b610da89190611e49565b1115610e015760405162461bcd60e51b815260206004820152602260248201527f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d696044820152611b9d60f21b60648201526084016106e6565b83600a811115610e5e5760405162461bcd60e51b815260206004820152602260248201527f4d6178206d696e747320706572207472616e73616374696f6e20657863656564604482015261195960f21b60648201526084016106e6565b60005b85811015610e8c57610e7a33610e756113ca565b6113e1565b80610e8481611f12565b915050610e61565b5050600160075550505050565b6109a23383836113fb565b610eae33836110c2565b610eca5760405162461bcd60e51b81526004016106e690611df8565b610ed6848484846114ca565b50505050565b6000818152600260205260409020546060906001600160a01b0316610f375760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b60448201526064016106e6565b6009610f42836114fd565b604051602001610f53929190611c56565b6040516020818303038152906040529050919050565b6006546001600160a01b03163314610f935760405162461bcd60e51b81526004016106e690611dc3565b6001600160a01b038116610ff85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106e6565b61100181611378565b50565b60006001600160e01b031982166380ac58cd60e01b148061103557506001600160e01b03198216635b5e139f60e01b145b806105d957506301ffc9a760e01b6001600160e01b03198316146105d9565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061108982610b25565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661113b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106e6565b600061114683610b25565b9050806001600160a01b0316846001600160a01b031614806111815750836001600160a01b031661117684610671565b6001600160a01b0316145b806111b157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166111cc82610b25565b6001600160a01b0316146112345760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106e6565b6001600160a01b0382166112965760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106e6565b6112a1600082611054565b6001600160a01b03831660009081526003602052604081208054600192906112ca908490611e94565b90915550506001600160a01b03821660009081526003602052604081208054600192906112f8908490611e49565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006113658284611e75565b9392505050565b60006113658284611e61565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006113da600880546001019055565b5060085490565b6109a28282604051806020016040528060008152506115fb565b816001600160a01b0316836001600160a01b0316141561145d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106e6565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6114d58484846111b9565b6114e18484848461162e565b610ed65760405162461bcd60e51b81526004016106e690611d71565b6060816115215750506040805180820190915260018152600360fc1b602082015290565b8160005b811561154b578061153581611f12565b91506115449050600a83611e61565b9150611525565b60008167ffffffffffffffff81111561156657611566611f83565b6040519080825280601f01601f191660200182016040528015611590576020820181803683370190505b5090505b84156111b1576115a5600183611e94565b91506115b2600a86611f2d565b6115bd906030611e49565b60f81b8183815181106115d2576115d2611f6d565b60200101906001600160f81b031916908160001a9053506115f4600a86611e61565b9450611594565b611605838361173b565b611612600084848461162e565b61081c5760405162461bcd60e51b81526004016106e690611d71565b60006001600160a01b0384163b1561173057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611672903390899088908890600401611d21565b602060405180830381600087803b15801561168c57600080fd5b505af19250505080156116bc575060408051601f3d908101601f191682019092526116b991810190611b54565b60015b611716573d8080156116ea576040519150601f19603f3d011682016040523d82523d6000602084013e6116ef565b606091505b50805161170e5760405162461bcd60e51b81526004016106e690611d71565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111b1565b506001949350505050565b6001600160a01b0382166117915760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106e6565b6000818152600260205260409020546001600160a01b0316156117f65760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106e6565b6001600160a01b038216600090815260036020526040812080546001929061181f908490611e49565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461188990611ed7565b90600052602060002090601f0160209004810192826118ab57600085556118f1565b82601f106118c457805160ff19168380011785556118f1565b828001600101855582156118f1579182015b828111156118f15782518255916020019190600101906118d6565b506118fd929150611901565b5090565b5b808211156118fd5760008155600101611902565b600067ffffffffffffffff8084111561193157611931611f83565b604051601f8501601f19908116603f0116810190828211818310171561195957611959611f83565b8160405280935085815286868601111561197257600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561199e57600080fd5b813561136581611f99565b600080604083850312156119bc57600080fd5b82356119c781611f99565b915060208301356119d781611f99565b809150509250929050565b6000806000606084860312156119f757600080fd5b8335611a0281611f99565b92506020840135611a1281611f99565b929592945050506040919091013590565b60008060008060808587031215611a3957600080fd5b8435611a4481611f99565b93506020850135611a5481611f99565b925060408501359150606085013567ffffffffffffffff811115611a7757600080fd5b8501601f81018713611a8857600080fd5b611a9787823560208401611916565b91505092959194509250565b60008060408385031215611ab657600080fd5b8235611ac181611f99565b915060208301356119d781611fae565b60008060408385031215611ae457600080fd5b8235611aef81611f99565b946020939093013593505050565b600060208284031215611b0f57600080fd5b813561136581611fae565b600060208284031215611b2c57600080fd5b815161136581611fae565b600060208284031215611b4957600080fd5b813561136581611fbc565b600060208284031215611b6657600080fd5b815161136581611fbc565b600060208284031215611b8357600080fd5b813567ffffffffffffffff811115611b9a57600080fd5b8201601f81018413611bab57600080fd5b6111b184823560208401611916565b600060208284031215611bcc57600080fd5b5035919050565b600060208284031215611be557600080fd5b5051919050565b60008060408385031215611bff57600080fd5b50508035926020909101359150565b60008151808452611c26816020860160208601611eab565b601f01601f19169290920160200192915050565b60008151611c4c818560208601611eab565b9290920192915050565b600080845481600182811c915080831680611c7257607f831692505b6020808410821415611c9257634e487b7160e01b86526022600452602486fd5b818015611ca65760018114611cb757611ce4565b60ff19861689528489019650611ce4565b60008b81526020902060005b86811015611cdc5781548b820152908501908301611cc3565b505084890196505b505050505050611d18611d07611d0183602f60f81b815260010190565b86611c3a565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d5490830184611c0e565b9695505050505050565b6020815260006113656020830184611c0e565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611e5c57611e5c611f41565b500190565b600082611e7057611e70611f57565b500490565b6000816000190483118215151615611e8f57611e8f611f41565b500290565b600082821015611ea657611ea6611f41565b500390565b60005b83811015611ec6578181015183820152602001611eae565b83811115610ed65750506000910152565b600181811c90821680611eeb57607f821691505b60208210811415611f0c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f2657611f26611f41565b5060010190565b600082611f3c57611f3c611f57565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461100157600080fd5b801515811461100157600080fd5b6001600160e01b03198116811461100157600080fdfea2646970667358221220b59d5654d166fb1358696d9af51151696f268411ed505b8d2367a7be6e8371ed64736f6c63430008070033697066733a2f2f516d63435a4771775141557236793858737a696132426f33644369554e6b685a3342586d334344535462437962590000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000174c75636b792054656163757020506967677920436c756200000000000000000000000000000000000000000000000000000000000000000000000000000000044c54504300000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80636352211e11610102578063a0712d6811610095578063c87b56dd11610064578063c87b56dd14610515578063d5abeb0114610535578063e985e9c51461054b578063f2fde38b1461059457600080fd5b8063a0712d68146104ad578063a22cb465146104c0578063b88d4fde146104e0578063c6a91b421461050057600080fd5b806383c4c00d116100d157806383c4c00d146102d75780638da5cb5b1461046457806395d89b4114610482578063982d669e1461049757600080fd5b80636352211e146103fa57806370a082311461041a578063714c53981461043a578063715018a61461044f57600080fd5b80631e84c4131161017a5780633ccfd60b116101495780633ccfd60b1461038557806342842e0e1461039a57806349df728c146103ba57806355f804b3146103da57600080fd5b80631e84c413146102ec57806323b872dd1461030657806328cad13d146103265780632a55205a1461034657600080fd5b8063081812fc116101b6578063081812fc1461025d578063095ea7b3146102955780630a00ae83146102b757806318160ddd146102d757600080fd5b806301ffc9a7146101dd57806306fdde031461021257806307e89ec014610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611b37565b6105b4565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b506102276105df565b6040516102099190611d5e565b34801561024057600080fd5b5061024f662aa1efb94e000081565b604051908152602001610209565b34801561026957600080fd5b5061027d610278366004611bba565b610671565b6040516001600160a01b039091168152602001610209565b3480156102a157600080fd5b506102b56102b0366004611ad1565b61070b565b005b3480156102c357600080fd5b506102b56102d2366004611bba565b610821565b3480156102e357600080fd5b5061024f610850565b3480156102f857600080fd5b50600c546101fd9060ff1681565b34801561031257600080fd5b506102b56103213660046119e2565b610860565b34801561033257600080fd5b506102b5610341366004611afd565b610891565b34801561035257600080fd5b50610366610361366004611bec565b6108ce565b604080516001600160a01b039093168352602083019190915201610209565b34801561039157600080fd5b506102b5610949565b3480156103a657600080fd5b506102b56103b53660046119e2565b6109a6565b3480156103c657600080fd5b506102b56103d536600461198c565b6109c1565b3480156103e657600080fd5b506102b56103f5366004611b71565b610ae8565b34801561040657600080fd5b5061027d610415366004611bba565b610b25565b34801561042657600080fd5b5061024f61043536600461198c565b610b9c565b34801561044657600080fd5b50610227610c23565b34801561045b57600080fd5b506102b5610c32565b34801561047057600080fd5b506006546001600160a01b031661027d565b34801561048e57600080fd5b50610227610c68565b3480156104a357600080fd5b5061024f600b5481565b6102b56104bb366004611bba565b610c77565b3480156104cc57600080fd5b506102b56104db366004611aa3565b610e99565b3480156104ec57600080fd5b506102b56104fb366004611a23565b610ea4565b34801561050c57600080fd5b5061024f600a81565b34801561052157600080fd5b50610227610530366004611bba565b610edc565b34801561054157600080fd5b5061024f600a5481565b34801561055757600080fd5b506101fd6105663660046119a9565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105a057600080fd5b506102b56105af36600461198c565b610f69565b60006001600160e01b0319821663152a902d60e11b14806105d957506105d982611004565b92915050565b6060600080546105ee90611ed7565b80601f016020809104026020016040519081016040528092919081815260200182805461061a90611ed7565b80156106675780601f1061063c57610100808354040283529160200191610667565b820191906000526020600020905b81548152906001019060200180831161064a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106ef5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061071682610b25565b9050806001600160a01b0316836001600160a01b031614156107845760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106e6565b336001600160a01b03821614806107a057506107a08133610566565b6108125760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106e6565b61081c8383611054565b505050565b6006546001600160a01b0316331461084b5760405162461bcd60e51b81526004016106e690611dc3565b600b55565b600061085b60085490565b905090565b61086a33826110c2565b6108865760405162461bcd60e51b81526004016106e690611df8565b61081c8383836111b9565b6006546001600160a01b031633146108bb5760405162461bcd60e51b81526004016106e690611dc3565b600c805460ff1916911515919091179055565b60008281526002602052604081205481906001600160a01b03166109285760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b60448201526064016106e6565b3061093e610937856005611359565b606461136c565b915091509250929050565b6006546001600160a01b031633146109735760405162461bcd60e51b81526004016106e690611dc3565b6040514790339082156108fc029083906000818181858888f193505050501580156109a2573d6000803e3d6000fd5b5050565b61081c83838360405180602001604052806000815250610ea4565b6006546001600160a01b031633146109eb5760405162461bcd60e51b81526004016106e690611dc3565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a082319060240160206040518083038186803b158015610a2d57600080fd5b505afa158015610a41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a659190611bd3565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb90604401602060405180830381600087803b158015610ab057600080fd5b505af1158015610ac4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061081c9190611b1a565b6006546001600160a01b03163314610b125760405162461bcd60e51b81526004016106e690611dc3565b80516109a290600990602084019061187d565b6000818152600260205260408120546001600160a01b0316806105d95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106e6565b60006001600160a01b038216610c075760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106e6565b506001600160a01b031660009081526003602052604090205490565b6060600980546105ee90611ed7565b6006546001600160a01b03163314610c5c5760405162461bcd60e51b81526004016106e690611dc3565b610c666000611378565b565b6060600180546105ee90611ed7565b60026007541415610cca5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106e6565b6002600755600b54600854662aa1efb94e00009183911115610d3e5734610cf18284611e75565b14610d3e5760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374204554482076616c75652073656e74000000000000000060448201526064016106e6565b600c5460ff16610d905760405162461bcd60e51b815260206004820152601760248201527f5075626c69632073616c65206973206e6f74206f70656e00000000000000000060448201526064016106e6565b82600a5481610d9e60085490565b610da89190611e49565b1115610e015760405162461bcd60e51b815260206004820152602260248201527f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d696044820152611b9d60f21b60648201526084016106e6565b83600a811115610e5e5760405162461bcd60e51b815260206004820152602260248201527f4d6178206d696e747320706572207472616e73616374696f6e20657863656564604482015261195960f21b60648201526084016106e6565b60005b85811015610e8c57610e7a33610e756113ca565b6113e1565b80610e8481611f12565b915050610e61565b5050600160075550505050565b6109a23383836113fb565b610eae33836110c2565b610eca5760405162461bcd60e51b81526004016106e690611df8565b610ed6848484846114ca565b50505050565b6000818152600260205260409020546060906001600160a01b0316610f375760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b60448201526064016106e6565b6009610f42836114fd565b604051602001610f53929190611c56565b6040516020818303038152906040529050919050565b6006546001600160a01b03163314610f935760405162461bcd60e51b81526004016106e690611dc3565b6001600160a01b038116610ff85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106e6565b61100181611378565b50565b60006001600160e01b031982166380ac58cd60e01b148061103557506001600160e01b03198216635b5e139f60e01b145b806105d957506301ffc9a760e01b6001600160e01b03198316146105d9565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061108982610b25565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661113b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106e6565b600061114683610b25565b9050806001600160a01b0316846001600160a01b031614806111815750836001600160a01b031661117684610671565b6001600160a01b0316145b806111b157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166111cc82610b25565b6001600160a01b0316146112345760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106e6565b6001600160a01b0382166112965760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106e6565b6112a1600082611054565b6001600160a01b03831660009081526003602052604081208054600192906112ca908490611e94565b90915550506001600160a01b03821660009081526003602052604081208054600192906112f8908490611e49565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006113658284611e75565b9392505050565b60006113658284611e61565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006113da600880546001019055565b5060085490565b6109a28282604051806020016040528060008152506115fb565b816001600160a01b0316836001600160a01b0316141561145d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106e6565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6114d58484846111b9565b6114e18484848461162e565b610ed65760405162461bcd60e51b81526004016106e690611d71565b6060816115215750506040805180820190915260018152600360fc1b602082015290565b8160005b811561154b578061153581611f12565b91506115449050600a83611e61565b9150611525565b60008167ffffffffffffffff81111561156657611566611f83565b6040519080825280601f01601f191660200182016040528015611590576020820181803683370190505b5090505b84156111b1576115a5600183611e94565b91506115b2600a86611f2d565b6115bd906030611e49565b60f81b8183815181106115d2576115d2611f6d565b60200101906001600160f81b031916908160001a9053506115f4600a86611e61565b9450611594565b611605838361173b565b611612600084848461162e565b61081c5760405162461bcd60e51b81526004016106e690611d71565b60006001600160a01b0384163b1561173057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611672903390899088908890600401611d21565b602060405180830381600087803b15801561168c57600080fd5b505af19250505080156116bc575060408051601f3d908101601f191682019092526116b991810190611b54565b60015b611716573d8080156116ea576040519150601f19603f3d011682016040523d82523d6000602084013e6116ef565b606091505b50805161170e5760405162461bcd60e51b81526004016106e690611d71565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111b1565b506001949350505050565b6001600160a01b0382166117915760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106e6565b6000818152600260205260409020546001600160a01b0316156117f65760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106e6565b6001600160a01b038216600090815260036020526040812080546001929061181f908490611e49565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461188990611ed7565b90600052602060002090601f0160209004810192826118ab57600085556118f1565b82601f106118c457805160ff19168380011785556118f1565b828001600101855582156118f1579182015b828111156118f15782518255916020019190600101906118d6565b506118fd929150611901565b5090565b5b808211156118fd5760008155600101611902565b600067ffffffffffffffff8084111561193157611931611f83565b604051601f8501601f19908116603f0116810190828211818310171561195957611959611f83565b8160405280935085815286868601111561197257600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561199e57600080fd5b813561136581611f99565b600080604083850312156119bc57600080fd5b82356119c781611f99565b915060208301356119d781611f99565b809150509250929050565b6000806000606084860312156119f757600080fd5b8335611a0281611f99565b92506020840135611a1281611f99565b929592945050506040919091013590565b60008060008060808587031215611a3957600080fd5b8435611a4481611f99565b93506020850135611a5481611f99565b925060408501359150606085013567ffffffffffffffff811115611a7757600080fd5b8501601f81018713611a8857600080fd5b611a9787823560208401611916565b91505092959194509250565b60008060408385031215611ab657600080fd5b8235611ac181611f99565b915060208301356119d781611fae565b60008060408385031215611ae457600080fd5b8235611aef81611f99565b946020939093013593505050565b600060208284031215611b0f57600080fd5b813561136581611fae565b600060208284031215611b2c57600080fd5b815161136581611fae565b600060208284031215611b4957600080fd5b813561136581611fbc565b600060208284031215611b6657600080fd5b815161136581611fbc565b600060208284031215611b8357600080fd5b813567ffffffffffffffff811115611b9a57600080fd5b8201601f81018413611bab57600080fd5b6111b184823560208401611916565b600060208284031215611bcc57600080fd5b5035919050565b600060208284031215611be557600080fd5b5051919050565b60008060408385031215611bff57600080fd5b50508035926020909101359150565b60008151808452611c26816020860160208601611eab565b601f01601f19169290920160200192915050565b60008151611c4c818560208601611eab565b9290920192915050565b600080845481600182811c915080831680611c7257607f831692505b6020808410821415611c9257634e487b7160e01b86526022600452602486fd5b818015611ca65760018114611cb757611ce4565b60ff19861689528489019650611ce4565b60008b81526020902060005b86811015611cdc5781548b820152908501908301611cc3565b505084890196505b505050505050611d18611d07611d0183602f60f81b815260010190565b86611c3a565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d5490830184611c0e565b9695505050505050565b6020815260006113656020830184611c0e565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611e5c57611e5c611f41565b500190565b600082611e7057611e70611f57565b500490565b6000816000190483118215151615611e8f57611e8f611f41565b500290565b600082821015611ea657611ea6611f41565b500390565b60005b83811015611ec6578181015183820152602001611eae565b83811115610ed65750506000910152565b600181811c90821680611eeb57607f821691505b60208210811415611f0c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f2657611f26611f41565b5060010190565b600082611f3c57611f3c611f57565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461100157600080fd5b801515811461100157600080fd5b6001600160e01b03198116811461100157600080fdfea2646970667358221220b59d5654d166fb1358696d9af51151696f268411ed505b8d2367a7be6e8371ed64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000174c75636b792054656163757020506967677920436c756200000000000000000000000000000000000000000000000000000000000000000000000000000000044c54504300000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Lucky Teacup Piggy Club
Arg [1] : _symbol (string): LTPC

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000017
Arg [3] : 4c75636b792054656163757020506967677920436c7562000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 4c54504300000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

55588:4763:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59286:291;;;;;;;;;;-1:-1:-1;59286:291:0;;;;;:::i;:::-;;:::i;:::-;;;8882:14:1;;8875:22;8857:41;;8845:2;8830:18;59286:291:0;;;;;;;;41749:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;55976:55::-;;;;;;;;;;;;56020:11;55976:55;;;;;17462:25:1;;;17450:2;17435:18;55976:55:0;17316:177:1;43308:221:0;;;;;;;;;;-1:-1:-1;43308:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7901:32:1;;;7883:51;;7871:2;7856:18;43308:221:0;7737:203:1;42831:411:0;;;;;;;;;;-1:-1:-1;42831:411:0;;;;;:::i;:::-;;:::i;:::-;;58554:139;;;;;;;;;;-1:-1:-1;58554:139:0;;;;;:::i;:::-;;:::i;58102:103::-;;;;;;;;;;;;;:::i;56080:37::-;;;;;;;;;;-1:-1:-1;56080:37:0;;;;;;;;44058:339;;;;;;;;;;-1:-1:-1;44058:339:0;;;;;:::i;:::-;;:::i;58388:158::-;;;;;;;;;;-1:-1:-1;58388:158:0;;;;;:::i;:::-;;:::i;60030:318::-;;;;;;;;;;-1:-1:-1;60030:318:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;8630:32:1;;;8612:51;;8694:2;8679:18;;8672:34;;;;8585:18;60030:318:0;8438:274:1;58703:143:0;;;;;;;;;;;;;:::i;44468:185::-;;;;;;;;;;-1:-1:-1;44468:185:0;;;;;:::i;:::-;;:::i;58854:168::-;;;;;;;;;;-1:-1:-1;58854:168:0;;;;;:::i;:::-;;:::i;58276:100::-;;;;;;;;;;-1:-1:-1;58276:100:0;;;;;:::i;:::-;;:::i;41443:239::-;;;;;;;;;;-1:-1:-1;41443:239:0;;;;;:::i;:::-;;:::i;41173:208::-;;;;;;;;;;-1:-1:-1;41173:208:0;;;;;:::i;:::-;;:::i;57887:93::-;;;;;;;;;;;;;:::i;20883:103::-;;;;;;;;;;;;;:::i;20232:87::-;;;;;;;;;;-1:-1:-1;20305:6:0;;-1:-1:-1;;;;;20305:6:0;20232:87;;41918:104;;;;;;;;;;;;;:::i;56038:35::-;;;;;;;;;;;;;;;;57223:587;;;;;;:::i;:::-;;:::i;43601:155::-;;;;;;;;;;-1:-1:-1;43601:155:0;;;;;:::i;:::-;;:::i;44724:328::-;;;;;;;;;;-1:-1:-1;44724:328:0;;;;;:::i;:::-;;:::i;55884:45::-;;;;;;;;;;;;55927:2;55884:45;;59661:303;;;;;;;;;;-1:-1:-1;59661:303:0;;;;;:::i;:::-;;:::i;55936:31::-;;;;;;;;;;;;;;;;43827:164;;;;;;;;;;-1:-1:-1;43827:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;43948:25:0;;;43924:4;43948:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;43827:164;21141:201;;;;;;;;;;-1:-1:-1;21141:201:0;;;;;:::i;:::-;;:::i;59286:291::-;59433:4;-1:-1:-1;;;;;;59475:41:0;;-1:-1:-1;;;59475:41:0;;:94;;;59533:36;59557:11;59533:23;:36::i;:::-;59455:114;59286:291;-1:-1:-1;;59286:291:0:o;41749:100::-;41803:13;41836:5;41829:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41749:100;:::o;43308:221::-;43384:7;46651:16;;;:7;:16;;;;;;-1:-1:-1;;;;;46651:16:0;43404:73;;;;-1:-1:-1;;;43404:73:0;;14449:2:1;43404:73:0;;;14431:21:1;14488:2;14468:18;;;14461:30;14527:34;14507:18;;;14500:62;-1:-1:-1;;;14578:18:1;;;14571:42;14630:19;;43404:73:0;;;;;;;;;-1:-1:-1;43497:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;43497:24:0;;43308:221::o;42831:411::-;42912:13;42928:23;42943:7;42928:14;:23::i;:::-;42912:39;;42976:5;-1:-1:-1;;;;;42970:11:0;:2;-1:-1:-1;;;;;42970:11:0;;;42962:57;;;;-1:-1:-1;;;42962:57:0;;15633:2:1;42962:57:0;;;15615:21:1;15672:2;15652:18;;;15645:30;15711:34;15691:18;;;15684:62;-1:-1:-1;;;15762:18:1;;;15755:31;15803:19;;42962:57:0;15431:397:1;42962:57:0;19036:10;-1:-1:-1;;;;;43054:21:0;;;;:62;;-1:-1:-1;43079:37:0;43096:5;19036:10;43827:164;:::i;43079:37::-;43032:168;;;;-1:-1:-1;;;43032:168:0;;12496:2:1;43032:168:0;;;12478:21:1;12535:2;12515:18;;;12508:30;12574:34;12554:18;;;12547:62;12645:26;12625:18;;;12618:54;12689:19;;43032:168:0;12294:420:1;43032:168:0;43213:21;43222:2;43226:7;43213:8;:21::i;:::-;42901:341;42831:411;;:::o;58554:139::-;20305:6;;-1:-1:-1;;;;;20305:6:0;19036:10;20452:23;20444:68;;;;-1:-1:-1;;;20444:68:0;;;;;;;:::i;:::-;58655:14:::1;:30:::0;58554:139::o;58102:103::-;58148:7;58175:22;:12;9848:14;;9756:114;58175:22;58168:29;;58102:103;:::o;44058:339::-;44253:41;19036:10;44286:7;44253:18;:41::i;:::-;44245:103;;;;-1:-1:-1;;;44245:103:0;;;;;;;:::i;:::-;44361:28;44371:4;44377:2;44381:7;44361:9;:28::i;58388:158::-;20305:6;;-1:-1:-1;;;;;20305:6:0;19036:10;20452:23;20444:68;;;;-1:-1:-1;;;20444:68:0;;;;;;;:::i;:::-;58498:18:::1;:40:::0;;-1:-1:-1;;58498:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;58388:158::o;60030:318::-;60155:16;46651;;;:7;:16;;;;;;60155;;-1:-1:-1;;;;;46651:16:0;60212:46;;;;-1:-1:-1;;;60212:46:0;;12921:2:1;60212:46:0;;;12903:21:1;12960:2;12940:18;;;12933:30;-1:-1:-1;;;12979:18:1;;;12972:47;13036:18;;60212:46:0;12719:341:1;60212:46:0;60287:4;60294:45;60307:26;60320:9;60331:1;60307:12;:26::i;:::-;60335:3;60294:12;:45::i;:::-;60271:69;;;;60030:318;;;;;:::o;58703:143::-;20305:6;;-1:-1:-1;;;;;20305:6:0;19036:10;20452:23;20444:68;;;;-1:-1:-1;;;20444:68:0;;;;;;;:::i;:::-;58801:37:::1;::::0;58769:21:::1;::::0;58809:10:::1;::::0;58801:37;::::1;;;::::0;58769:21;;58751:15:::1;58801:37:::0;58751:15;58801:37;58769:21;58809:10;58801:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;58740:106;58703:143::o:0;44468:185::-;44606:39;44623:4;44629:2;44633:7;44606:39;;;;;;;;;;;;:16;:39::i;58854:168::-;20305:6;;-1:-1:-1;;;;;20305:6:0;19036:10;20452:23;20444:68;;;;-1:-1:-1;;;20444:68:0;;;;;;;:::i;:::-;58938:30:::1;::::0;-1:-1:-1;;;58938:30:0;;58962:4:::1;58938:30;::::0;::::1;7883:51:1::0;58920:15:0::1;::::0;-1:-1:-1;;;;;58938:15:0;::::1;::::0;::::1;::::0;7856:18:1;;58938:30:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58979:35;::::0;-1:-1:-1;;;58979:35:0;;58994:10:::1;58979:35;::::0;::::1;8612:51:1::0;8679:18;;;8672:34;;;58920:48:0;;-1:-1:-1;;;;;;58979:14:0;::::1;::::0;::::1;::::0;8585:18:1;;58979:35:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;58276:100::-:0;20305:6;;-1:-1:-1;;;;;20305:6:0;19036:10;20452:23;20444:68;;;;-1:-1:-1;;;20444:68:0;;;;;;;:::i;:::-;58350:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;41443:239::-:0;41515:7;41551:16;;;:7;:16;;;;;;-1:-1:-1;;;;;41551:16:0;41586:19;41578:73;;;;-1:-1:-1;;;41578:73:0;;13678:2:1;41578:73:0;;;13660:21:1;13717:2;13697:18;;;13690:30;13756:34;13736:18;;;13729:62;-1:-1:-1;;;13807:18:1;;;13800:39;13856:19;;41578:73:0;13476:405:1;41173:208:0;41245:7;-1:-1:-1;;;;;41273:19:0;;41265:74;;;;-1:-1:-1;;;41265:74:0;;13267:2:1;41265:74:0;;;13249:21:1;13306:2;13286:18;;;13279:30;13345:34;13325:18;;;13318:62;-1:-1:-1;;;13396:18:1;;;13389:40;13446:19;;41265:74:0;13065:406:1;41265:74:0;-1:-1:-1;;;;;;41357:16:0;;;;;:9;:16;;;;;;;41173:208::o;57887:93::-;57932:13;57965:7;57958:14;;;;;:::i;20883:103::-;20305:6;;-1:-1:-1;;;;;20305:6:0;19036:10;20452:23;20444:68;;;;-1:-1:-1;;;20444:68:0;;;;;;;:::i;:::-;20948:30:::1;20975:1;20948:18;:30::i;:::-;20883:103::o:0;41918:104::-;41974:13;42007:7;42000:14;;;;;:::i;57223:587::-;12161:1;12759:7;;:19;;12751:63;;;;-1:-1:-1;;;12751:63:0;;16806:2:1;12751:63:0;;;16788:21:1;16845:2;16825:18;;;16818:30;16884:33;16864:18;;;16857:61;16935:18;;12751:63:0;16604:355:1;12751:63:0;12161:1;12892:7;:18;56872:14:::1;::::0;56849:12:::1;9848:14:::0;56020:11:::1;::::0;57363:14;;56849:37:::1;56846:175;;;56948:9;56921:22;56929:14:::0;56921:5;:22:::1;:::i;:::-;56920:37;56898:111;;;::::0;-1:-1:-1;;;56898:111:0;;16453:2:1;56898:111:0::1;::::0;::::1;16435:21:1::0;16492:2;16472:18;;;16465:30;16531:26;16511:18;;;16504:54;16575:18;;56898:111:0::1;16251:348:1::0;56898:111:0::1;56247:18:::2;::::0;::::2;;56239:54;;;::::0;-1:-1:-1;;;56239:54:0;;17166:2:1;56239:54:0::2;::::0;::::2;17148:21:1::0;17205:2;17185:18;;;17178:30;17244:25;17224:18;;;17217:53;17287:18;;56239:54:0::2;16964:347:1::0;56239:54:0::2;57426:14:::3;56667:9;;56632:14;56607:22;:12;9848:14:::0;;9756:114;56607:22:::3;:39;;;;:::i;:::-;:69;;56585:153;;;::::0;-1:-1:-1;;;56585:153:0;;10518:2:1;56585:153:0::3;::::0;::::3;10500:21:1::0;10557:2;10537:18;;;10530:30;10596:34;10576:18;;;10569:62;-1:-1:-1;;;10647:18:1;;;10640:32;10689:19;;56585:153:0::3;10316:398:1::0;56585:153:0::3;57465:14:::4;55927:2;56405:14;:34;;56383:118;;;::::0;-1:-1:-1;;;56383:118:0;;12093:2:1;56383:118:0::4;::::0;::::4;12075:21:1::0;12132:2;12112:18;;;12105:30;12171:34;12151:18;;;12144:62;-1:-1:-1;;;12222:18:1;;;12215:32;12264:19;;56383:118:0::4;11891:398:1::0;56383:118:0::4;57700:9:::5;57695:108;57719:14;57715:1;:18;57695:108;;;57755:36;57765:10;57777:13;:11;:13::i;:::-;57755:9;:36::i;:::-;57735:3:::0;::::5;::::0;::::5;:::i;:::-;;;;57695:108;;;-1:-1:-1::0;;12117:1:0;13071:7;:22;-1:-1:-1;;;;57223:587:0:o;43601:155::-;43696:52;19036:10;43729:8;43739;43696:18;:52::i;44724:328::-;44899:41;19036:10;44932:7;44899:18;:41::i;:::-;44891:103;;;;-1:-1:-1;;;44891:103:0;;;;;;;:::i;:::-;45005:39;45019:4;45025:2;45029:7;45038:5;45005:13;:39::i;:::-;44724:328;;;;:::o;59661:303::-;46627:4;46651:16;;;:7;:16;;;;;;59779:13;;-1:-1:-1;;;;;46651:16:0;59810:46;;;;-1:-1:-1;;;59810:46:0;;12921:2:1;59810:46:0;;;12903:21:1;12960:2;12940:18;;;12933:30;-1:-1:-1;;;12979:18:1;;;12972:47;13036:18;;59810:46:0;12719:341:1;59810:46:0;59913:7;59927:18;:7;:16;:18::i;:::-;59896:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59869:87;;59661:303;;;:::o;21141:201::-;20305:6;;-1:-1:-1;;;;;20305:6:0;19036:10;20452:23;20444:68;;;;-1:-1:-1;;;20444:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21230:22:0;::::1;21222:73;;;::::0;-1:-1:-1;;;21222:73:0;;9754:2:1;21222:73:0::1;::::0;::::1;9736:21:1::0;9793:2;9773:18;;;9766:30;9832:34;9812:18;;;9805:62;-1:-1:-1;;;9883:18:1;;;9876:36;9929:19;;21222:73:0::1;9552:402:1::0;21222:73:0::1;21306:28;21325:8;21306:18;:28::i;:::-;21141:201:::0;:::o;40804:305::-;40906:4;-1:-1:-1;;;;;;40943:40:0;;-1:-1:-1;;;40943:40:0;;:105;;-1:-1:-1;;;;;;;41000:48:0;;-1:-1:-1;;;41000:48:0;40943:105;:158;;;-1:-1:-1;;;;;;;;;;33741:40:0;;;41065:36;33632:157;50544:174;50619:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;50619:29:0;-1:-1:-1;;;;;50619:29:0;;;;;;;;:24;;50673:23;50619:24;50673:14;:23::i;:::-;-1:-1:-1;;;;;50664:46:0;;;;;;;;;;;50544:174;;:::o;46856:348::-;46949:4;46651:16;;;:7;:16;;;;;;-1:-1:-1;;;;;46651:16:0;46966:73;;;;-1:-1:-1;;;46966:73:0;;11680:2:1;46966:73:0;;;11662:21:1;11719:2;11699:18;;;11692:30;11758:34;11738:18;;;11731:62;-1:-1:-1;;;11809:18:1;;;11802:42;11861:19;;46966:73:0;11478:408:1;46966:73:0;47050:13;47066:23;47081:7;47066:14;:23::i;:::-;47050:39;;47119:5;-1:-1:-1;;;;;47108:16:0;:7;-1:-1:-1;;;;;47108:16:0;;:51;;;;47152:7;-1:-1:-1;;;;;47128:31:0;:20;47140:7;47128:11;:20::i;:::-;-1:-1:-1;;;;;47128:31:0;;47108:51;:87;;;-1:-1:-1;;;;;;43948:25:0;;;43924:4;43948:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;47163:32;47100:96;46856:348;-1:-1:-1;;;;46856:348:0:o;49848:578::-;50007:4;-1:-1:-1;;;;;49980:31:0;:23;49995:7;49980:14;:23::i;:::-;-1:-1:-1;;;;;49980:31:0;;49972:85;;;;-1:-1:-1;;;49972:85:0;;15223:2:1;49972:85:0;;;15205:21:1;15262:2;15242:18;;;15235:30;15301:34;15281:18;;;15274:62;-1:-1:-1;;;15352:18:1;;;15345:39;15401:19;;49972:85:0;15021:405:1;49972:85:0;-1:-1:-1;;;;;50076:16:0;;50068:65;;;;-1:-1:-1;;;50068:65:0;;10921:2:1;50068:65:0;;;10903:21:1;10960:2;10940:18;;;10933:30;10999:34;10979:18;;;10972:62;-1:-1:-1;;;11050:18:1;;;11043:34;11094:19;;50068:65:0;10719:400:1;50068:65:0;50250:29;50267:1;50271:7;50250:8;:29::i;:::-;-1:-1:-1;;;;;50292:15:0;;;;;;:9;:15;;;;;:20;;50311:1;;50292:15;:20;;50311:1;;50292:20;:::i;:::-;;;;-1:-1:-1;;;;;;;50323:13:0;;;;;;:9;:13;;;;;:18;;50340:1;;50323:13;:18;;50340:1;;50323:18;:::i;:::-;;;;-1:-1:-1;;50352:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;50352:21:0;-1:-1:-1;;;;;50352:21:0;;;;;;;;;50391:27;;50352:16;;50391:27;;;;;;;49848:578;;;:::o;5457:98::-;5515:7;5542:5;5546:1;5542;:5;:::i;:::-;5535:12;5457:98;-1:-1:-1;;;5457:98:0:o;5856:::-;5914:7;5941:5;5945:1;5941;:5;:::i;21502:191::-;21595:6;;;-1:-1:-1;;;;;21612:17:0;;;-1:-1:-1;;;;;;21612:17:0;;;;;;;21645:40;;21595:6;;;21612:17;21595:6;;21645:40;;21576:16;;21645:40;21565:128;21502:191;:::o;59091:132::-;59131:7;59151:24;:12;9967:19;;9985:1;9967:19;;;9878:127;59151:24;-1:-1:-1;59193:12:0;9848:14;;58102:103::o;47546:110::-;47622:26;47632:2;47636:7;47622:26;;;;;;;;;;;;:9;:26::i;50860:315::-;51015:8;-1:-1:-1;;;;;51006:17:0;:5;-1:-1:-1;;;;;51006:17:0;;;50998:55;;;;-1:-1:-1;;;50998:55:0;;11326:2:1;50998:55:0;;;11308:21:1;11365:2;11345:18;;;11338:30;11404:27;11384:18;;;11377:55;11449:18;;50998:55:0;11124:349:1;50998:55:0;-1:-1:-1;;;;;51064:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;51064:46:0;;;;;;;;;;51126:41;;8857::1;;;51126::0;;8830:18:1;51126:41:0;;;;;;;50860:315;;;:::o;45934:::-;46091:28;46101:4;46107:2;46111:7;46091:9;:28::i;:::-;46138:48;46161:4;46167:2;46171:7;46180:5;46138:22;:48::i;:::-;46130:111;;;;-1:-1:-1;;;46130:111:0;;;;;;;:::i;16518:723::-;16574:13;16795:10;16791:53;;-1:-1:-1;;16822:10:0;;;;;;;;;;;;-1:-1:-1;;;16822:10:0;;;;;16518:723::o;16791:53::-;16869:5;16854:12;16910:78;16917:9;;16910:78;;16943:8;;;;:::i;:::-;;-1:-1:-1;16966:10:0;;-1:-1:-1;16974:2:0;16966:10;;:::i;:::-;;;16910:78;;;16998:19;17030:6;17020:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17020:17:0;;16998:39;;17048:154;17055:10;;17048:154;;17082:11;17092:1;17082:11;;:::i;:::-;;-1:-1:-1;17151:10:0;17159:2;17151:5;:10;:::i;:::-;17138:24;;:2;:24;:::i;:::-;17125:39;;17108:6;17115;17108:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17108:56:0;;;;;;;;-1:-1:-1;17179:11:0;17188:2;17179:11;;:::i;:::-;;;17048:154;;47883:321;48013:18;48019:2;48023:7;48013:5;:18::i;:::-;48064:54;48095:1;48099:2;48103:7;48112:5;48064:22;:54::i;:::-;48042:154;;;;-1:-1:-1;;;48042:154:0;;;;;;;:::i;51740:799::-;51895:4;-1:-1:-1;;;;;51916:13:0;;22843:20;22891:8;51912:620;;51952:72;;-1:-1:-1;;;51952:72:0;;-1:-1:-1;;;;;51952:36:0;;;;;:72;;19036:10;;52003:4;;52009:7;;52018:5;;51952:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51952:72:0;;;;;;;;-1:-1:-1;;51952:72:0;;;;;;;;;;;;:::i;:::-;;;51948:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52194:13:0;;52190:272;;52237:60;;-1:-1:-1;;;52237:60:0;;;;;;;:::i;52190:272::-;52412:6;52406:13;52397:6;52393:2;52389:15;52382:38;51948:529;-1:-1:-1;;;;;;52075:51:0;-1:-1:-1;;;52075:51:0;;-1:-1:-1;52068:58:0;;51912:620;-1:-1:-1;52516:4:0;51740:799;;;;;;:::o;48540:382::-;-1:-1:-1;;;;;48620:16:0;;48612:61;;;;-1:-1:-1;;;48612:61:0;;14088:2:1;48612:61:0;;;14070:21:1;;;14107:18;;;14100:30;14166:34;14146:18;;;14139:62;14218:18;;48612:61:0;13886:356:1;48612:61:0;46627:4;46651:16;;;:7;:16;;;;;;-1:-1:-1;;;;;46651:16:0;:30;48684:58;;;;-1:-1:-1;;;48684:58:0;;10161:2:1;48684:58:0;;;10143:21:1;10200:2;10180:18;;;10173:30;10239;10219:18;;;10212:58;10287:18;;48684:58:0;9959:352:1;48684:58:0;-1:-1:-1;;;;;48813:13:0;;;;;;:9;:13;;;;;:18;;48830:1;;48813:13;:18;;48830:1;;48813:18;:::i;:::-;;;;-1:-1:-1;;48842:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;48842:21:0;-1:-1:-1;;;;;48842:21:0;;;;;;;;48881:33;;48842:16;;;48881:33;;48842:16;;48881:33;48540:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:247::-;709:6;762:2;750:9;741:7;737:23;733:32;730:52;;;778:1;775;768:12;730:52;817:9;804:23;836:31;861:5;836:31;:::i;902:388::-;970:6;978;1031:2;1019:9;1010:7;1006:23;1002:32;999:52;;;1047:1;1044;1037:12;999:52;1086:9;1073:23;1105:31;1130:5;1105:31;:::i;:::-;1155:5;-1:-1:-1;1212:2:1;1197:18;;1184:32;1225:33;1184:32;1225:33;:::i;:::-;1277:7;1267:17;;;902:388;;;;;:::o;1295:456::-;1372:6;1380;1388;1441:2;1429:9;1420:7;1416:23;1412:32;1409:52;;;1457:1;1454;1447:12;1409:52;1496:9;1483:23;1515:31;1540:5;1515:31;:::i;:::-;1565:5;-1:-1:-1;1622:2:1;1607:18;;1594:32;1635:33;1594:32;1635:33;:::i;:::-;1295:456;;1687:7;;-1:-1:-1;;;1741:2:1;1726:18;;;;1713:32;;1295:456::o;1756:794::-;1851:6;1859;1867;1875;1928:3;1916:9;1907:7;1903:23;1899:33;1896:53;;;1945:1;1942;1935:12;1896:53;1984:9;1971:23;2003:31;2028:5;2003:31;:::i;:::-;2053:5;-1:-1:-1;2110:2:1;2095:18;;2082:32;2123:33;2082:32;2123:33;:::i;:::-;2175:7;-1:-1:-1;2229:2:1;2214:18;;2201:32;;-1:-1:-1;2284:2:1;2269:18;;2256:32;2311:18;2300:30;;2297:50;;;2343:1;2340;2333:12;2297:50;2366:22;;2419:4;2411:13;;2407:27;-1:-1:-1;2397:55:1;;2448:1;2445;2438:12;2397:55;2471:73;2536:7;2531:2;2518:16;2513:2;2509;2505:11;2471:73;:::i;:::-;2461:83;;;1756:794;;;;;;;:::o;2555:382::-;2620:6;2628;2681:2;2669:9;2660:7;2656:23;2652:32;2649:52;;;2697:1;2694;2687:12;2649:52;2736:9;2723:23;2755:31;2780:5;2755:31;:::i;:::-;2805:5;-1:-1:-1;2862:2:1;2847:18;;2834:32;2875:30;2834:32;2875:30;:::i;2942:315::-;3010:6;3018;3071:2;3059:9;3050:7;3046:23;3042:32;3039:52;;;3087:1;3084;3077:12;3039:52;3126:9;3113:23;3145:31;3170:5;3145:31;:::i;:::-;3195:5;3247:2;3232:18;;;;3219:32;;-1:-1:-1;;;2942:315:1:o;3262:241::-;3318:6;3371:2;3359:9;3350:7;3346:23;3342:32;3339:52;;;3387:1;3384;3377:12;3339:52;3426:9;3413:23;3445:28;3467:5;3445:28;:::i;3508:245::-;3575:6;3628:2;3616:9;3607:7;3603:23;3599:32;3596:52;;;3644:1;3641;3634:12;3596:52;3676:9;3670:16;3695:28;3717:5;3695:28;:::i;3758:245::-;3816:6;3869:2;3857:9;3848:7;3844:23;3840:32;3837:52;;;3885:1;3882;3875:12;3837:52;3924:9;3911:23;3943:30;3967:5;3943:30;:::i;4008:249::-;4077:6;4130:2;4118:9;4109:7;4105:23;4101:32;4098:52;;;4146:1;4143;4136:12;4098:52;4178:9;4172:16;4197:30;4221:5;4197:30;:::i;4528:450::-;4597:6;4650:2;4638:9;4629:7;4625:23;4621:32;4618:52;;;4666:1;4663;4656:12;4618:52;4706:9;4693:23;4739:18;4731:6;4728:30;4725:50;;;4771:1;4768;4761:12;4725:50;4794:22;;4847:4;4839:13;;4835:27;-1:-1:-1;4825:55:1;;4876:1;4873;4866:12;4825:55;4899:73;4964:7;4959:2;4946:16;4941:2;4937;4933:11;4899:73;:::i;4983:180::-;5042:6;5095:2;5083:9;5074:7;5070:23;5066:32;5063:52;;;5111:1;5108;5101:12;5063:52;-1:-1:-1;5134:23:1;;4983:180;-1:-1:-1;4983:180:1:o;5168:184::-;5238:6;5291:2;5279:9;5270:7;5266:23;5262:32;5259:52;;;5307:1;5304;5297:12;5259:52;-1:-1:-1;5330:16:1;;5168:184;-1:-1:-1;5168:184:1:o;5357:248::-;5425:6;5433;5486:2;5474:9;5465:7;5461:23;5457:32;5454:52;;;5502:1;5499;5492:12;5454:52;-1:-1:-1;;5525:23:1;;;5595:2;5580:18;;;5567:32;;-1:-1:-1;5357:248:1:o;5610:257::-;5651:3;5689:5;5683:12;5716:6;5711:3;5704:19;5732:63;5788:6;5781:4;5776:3;5772:14;5765:4;5758:5;5754:16;5732:63;:::i;:::-;5849:2;5828:15;-1:-1:-1;;5824:29:1;5815:39;;;;5856:4;5811:50;;5610:257;-1:-1:-1;;5610:257:1:o;5872:185::-;5914:3;5952:5;5946:12;5967:52;6012:6;6007:3;6000:4;5993:5;5989:16;5967:52;:::i;:::-;6035:16;;;;;5872:185;-1:-1:-1;;5872:185:1:o;6299:1433::-;6677:3;6706:1;6739:6;6733:13;6769:3;6791:1;6819:9;6815:2;6811:18;6801:28;;6879:2;6868:9;6864:18;6901;6891:61;;6945:4;6937:6;6933:17;6923:27;;6891:61;6971:2;7019;7011:6;7008:14;6988:18;6985:38;6982:165;;;-1:-1:-1;;;7046:33:1;;7102:4;7099:1;7092:15;7132:4;7053:3;7120:17;6982:165;7163:18;7190:104;;;;7308:1;7303:320;;;;7156:467;;7190:104;-1:-1:-1;;7223:24:1;;7211:37;;7268:16;;;;-1:-1:-1;7190:104:1;;7303:320;17571:1;17564:14;;;17608:4;17595:18;;7398:1;7412:165;7426:6;7423:1;7420:13;7412:165;;;7504:14;;7491:11;;;7484:35;7547:16;;;;7441:10;;7412:165;;;7416:3;;7606:6;7601:3;7597:16;7590:23;;7156:467;;;;;;;7639:87;7664:61;7690:34;7720:3;-1:-1:-1;;;6245:16:1;;6286:1;6277:11;;6180:114;7690:34;7682:6;7664:61;:::i;:::-;-1:-1:-1;;;6122:20:1;;6167:1;6158:11;;6062:113;7639:87;7632:94;6299:1433;-1:-1:-1;;;;;6299:1433:1:o;7945:488::-;-1:-1:-1;;;;;8214:15:1;;;8196:34;;8266:15;;8261:2;8246:18;;8239:43;8313:2;8298:18;;8291:34;;;8361:3;8356:2;8341:18;;8334:31;;;8139:4;;8382:45;;8407:19;;8399:6;8382:45;:::i;:::-;8374:53;7945:488;-1:-1:-1;;;;;;7945:488:1:o;8909:219::-;9058:2;9047:9;9040:21;9021:4;9078:44;9118:2;9107:9;9103:18;9095:6;9078:44;:::i;9133:414::-;9335:2;9317:21;;;9374:2;9354:18;;;9347:30;9413:34;9408:2;9393:18;;9386:62;-1:-1:-1;;;9479:2:1;9464:18;;9457:48;9537:3;9522:19;;9133:414::o;14660:356::-;14862:2;14844:21;;;14881:18;;;14874:30;14940:34;14935:2;14920:18;;14913:62;15007:2;14992:18;;14660:356::o;15833:413::-;16035:2;16017:21;;;16074:2;16054:18;;;16047:30;16113:34;16108:2;16093:18;;16086:62;-1:-1:-1;;;16179:2:1;16164:18;;16157:47;16236:3;16221:19;;15833:413::o;17624:128::-;17664:3;17695:1;17691:6;17688:1;17685:13;17682:39;;;17701:18;;:::i;:::-;-1:-1:-1;17737:9:1;;17624:128::o;17757:120::-;17797:1;17823;17813:35;;17828:18;;:::i;:::-;-1:-1:-1;17862:9:1;;17757:120::o;17882:168::-;17922:7;17988:1;17984;17980:6;17976:14;17973:1;17970:21;17965:1;17958:9;17951:17;17947:45;17944:71;;;17995:18;;:::i;:::-;-1:-1:-1;18035:9:1;;17882:168::o;18055:125::-;18095:4;18123:1;18120;18117:8;18114:34;;;18128:18;;:::i;:::-;-1:-1:-1;18165:9:1;;18055:125::o;18185:258::-;18257:1;18267:113;18281:6;18278:1;18275:13;18267:113;;;18357:11;;;18351:18;18338:11;;;18331:39;18303:2;18296:10;18267:113;;;18398:6;18395:1;18392:13;18389:48;;;-1:-1:-1;;18433:1:1;18415:16;;18408:27;18185:258::o;18448:380::-;18527:1;18523:12;;;;18570;;;18591:61;;18645:4;18637:6;18633:17;18623:27;;18591:61;18698:2;18690:6;18687:14;18667:18;18664:38;18661:161;;;18744:10;18739:3;18735:20;18732:1;18725:31;18779:4;18776:1;18769:15;18807:4;18804:1;18797:15;18661:161;;18448:380;;;:::o;18833:135::-;18872:3;-1:-1:-1;;18893:17:1;;18890:43;;;18913:18;;:::i;:::-;-1:-1:-1;18960:1:1;18949:13;;18833:135::o;18973:112::-;19005:1;19031;19021:35;;19036:18;;:::i;:::-;-1:-1:-1;19070:9:1;;18973:112::o;19090:127::-;19151:10;19146:3;19142:20;19139:1;19132:31;19182:4;19179:1;19172:15;19206:4;19203:1;19196:15;19222:127;19283:10;19278:3;19274:20;19271:1;19264:31;19314:4;19311:1;19304:15;19338:4;19335:1;19328:15;19354:127;19415:10;19410:3;19406:20;19403:1;19396:31;19446:4;19443:1;19436:15;19470:4;19467:1;19460:15;19486:127;19547:10;19542:3;19538:20;19535:1;19528:31;19578:4;19575:1;19568:15;19602:4;19599:1;19592:15;19618:131;-1:-1:-1;;;;;19693:31:1;;19683:42;;19673:70;;19739:1;19736;19729:12;19754:118;19840:5;19833:13;19826:21;19819:5;19816:32;19806:60;;19862:1;19859;19852:12;19877:131;-1:-1:-1;;;;;;19951:32:1;;19941:43;;19931:71;;19998:1;19995;19988:12

Swarm Source

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