ETH Price: $2,707.40 (+2.91%)

Token

Toadeez (TDEEZ)
 

Overview

Max Total Supply

2,222 TDEEZ

Holders

234

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 TDEEZ
0x1ea2b96b5b357645fbdb50f6962f363369042139
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:
Toadeez

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 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 (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

    /**
     * @dev Hook that is called after a set of serially-ordered token IDs
     * have been transferred. This includes minting.
     * And also called after one token has been burned.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

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

// File: contracts/4_Toadeez.sol

// contracts/Toadeez.sol

pragma solidity ^0.8.0;



contract Toadeez is ERC721A, Ownable {

    uint256 public constant maxTokens = 2222;    
    uint256 public constant maxMintsPerAddress = 10;
    mapping (address => uint256) public mintedForAddress;

    string private _uri;
    bool private _onSale = false;

    constructor(string memory uri_) ERC721A("Toadeez", "TDEEZ") { _uri = uri_;}

    function mint(uint256 amountToMint_) external
    {
        require(_onSale, "This collection is not on sale.");
        require(amountToMint_ <= maxMintsPerAddress && amountToMint_ >= 1, "You are minting too many or too little."); // input validation, may seem redundant but will prevent overflow attacks
        require(mintedForAddress[msg.sender] + amountToMint_ <= maxMintsPerAddress, "You have already minted your max amount."); // max mint validation
        require(_totalMinted() + amountToMint_ <= maxTokens, "Max supply has been minted."); // max supply validation

        _safeMint(msg.sender, amountToMint_);
        mintedForAddress[msg.sender] += amountToMint_;
    }

    function setBaseUri(string memory uri_) external onlyOwner {
        _uri = uri_;
    }

    function toggleOnsale() external onlyOwner {
        _onSale = !_onSale;
    }

    function _baseURI() internal view override returns (string memory) {
        return _uri;
    }

    function _startTokenId() internal pure override returns (uint256) {
        return 1;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountToMint_","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedForAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","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":"uri_","type":"string"}],"name":"setBaseUri","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":[],"name":"toggleOnsale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600b60006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b5060405162002cc638038062002cc683398181016040528101906200005291906200034d565b6040518060400160405280600781526020017f546f616465657a000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f544445455a0000000000000000000000000000000000000000000000000000008152508160029080519060200190620000d69291906200021f565b508060039080519060200190620000ef9291906200021f565b50620001006200014860201b60201c565b6000819055505050620001286200011c6200015160201b60201c565b6200015960201b60201c565b80600a9080519060200190620001409291906200021f565b505062000522565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022d9062000433565b90600052602060002090601f0160209004810192826200025157600085556200029d565b82601f106200026c57805160ff19168380011785556200029d565b828001600101855582156200029d579182015b828111156200029c5782518255916020019190600101906200027f565b5b509050620002ac9190620002b0565b5090565b5b80821115620002cb576000816000905550600101620002b1565b5090565b6000620002e6620002e084620003c7565b6200039e565b90508281526020810184848401111562000305576200030462000502565b5b62000312848285620003fd565b509392505050565b600082601f830112620003325762000331620004fd565b5b815162000344848260208601620002cf565b91505092915050565b6000602082840312156200036657620003656200050c565b5b600082015167ffffffffffffffff81111562000387576200038662000507565b5b62000395848285016200031a565b91505092915050565b6000620003aa620003bd565b9050620003b8828262000469565b919050565b6000604051905090565b600067ffffffffffffffff821115620003e557620003e4620004ce565b5b620003f08262000511565b9050602081019050919050565b60005b838110156200041d57808201518184015260208101905062000400565b838111156200042d576000848401525b50505050565b600060028204905060018216806200044c57607f821691505b602082108114156200046357620004626200049f565b5b50919050565b620004748262000511565b810181811067ffffffffffffffff82111715620004965762000495620004ce565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b61279480620005326000396000f3fe6080604052600436106101405760003560e01c8063715018a6116100b6578063ae6a80d51161006f578063ae6a80d51461041f578063b88d4fde1461044a578063c87b56dd14610466578063e8315742146104a3578063e985e9c5146104ce578063f2fde38b1461050b57610140565b8063715018a6146103375780638da5cb5b1461034e57806395d89b4114610379578063a0712d68146103a4578063a0bcfc7f146103cd578063a22cb465146103f657610140565b80631c3b106d116101085780631c3b106d1461023157806323b872dd1461026e578063271032f11461028a57806342842e0e146102a15780636352211e146102bd57806370a08231146102fa57610140565b806301ffc9a71461014557806306fdde0314610182578063081812fc146101ad578063095ea7b3146101ea57806318160ddd14610206575b600080fd5b34801561015157600080fd5b5061016c60048036038101906101679190611e9a565b610534565b6040516101799190612197565b60405180910390f35b34801561018e57600080fd5b506101976105c6565b6040516101a491906121b2565b60405180910390f35b3480156101b957600080fd5b506101d460048036038101906101cf9190611f3d565b610658565b6040516101e19190612130565b60405180910390f35b61020460048036038101906101ff9190611e5a565b6106d7565b005b34801561021257600080fd5b5061021b61081b565b6040516102289190612294565b60405180910390f35b34801561023d57600080fd5b5061025860048036038101906102539190611cd7565b610832565b6040516102659190612294565b60405180910390f35b61028860048036038101906102839190611d44565b61084a565b005b34801561029657600080fd5b5061029f610b6f565b005b6102bb60048036038101906102b69190611d44565b610ba3565b005b3480156102c957600080fd5b506102e460048036038101906102df9190611f3d565b610bc3565b6040516102f19190612130565b60405180910390f35b34801561030657600080fd5b50610321600480360381019061031c9190611cd7565b610bd5565b60405161032e9190612294565b60405180910390f35b34801561034357600080fd5b5061034c610c8e565b005b34801561035a57600080fd5b50610363610ca2565b6040516103709190612130565b60405180910390f35b34801561038557600080fd5b5061038e610ccc565b60405161039b91906121b2565b60405180910390f35b3480156103b057600080fd5b506103cb60048036038101906103c69190611f3d565b610d5e565b005b3480156103d957600080fd5b506103f460048036038101906103ef9190611ef4565b610f46565b005b34801561040257600080fd5b5061041d60048036038101906104189190611e1a565b610f68565b005b34801561042b57600080fd5b50610434611073565b6040516104419190612294565b60405180910390f35b610464600480360381019061045f9190611d97565b611078565b005b34801561047257600080fd5b5061048d60048036038101906104889190611f3d565b6110eb565b60405161049a91906121b2565b60405180910390f35b3480156104af57600080fd5b506104b861118a565b6040516104c59190612294565b60405180910390f35b3480156104da57600080fd5b506104f560048036038101906104f09190611d04565b611190565b6040516105029190612197565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d9190611cd7565b611224565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061058f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105bf5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546105d590612485565b80601f016020809104026020016040519081016040528092919081815260200182805461060190612485565b801561064e5780601f106106235761010080835404028352916020019161064e565b820191906000526020600020905b81548152906001019060200180831161063157829003601f168201915b5050505050905090565b6000610663826112a8565b610699576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106e282610bc3565b90508073ffffffffffffffffffffffffffffffffffffffff16610703611307565b73ffffffffffffffffffffffffffffffffffffffff16146107665761072f8161072a611307565b611190565b610765576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061082561130f565b6001546000540303905090565b60096020528060005260406000206000915090505481565b600061085582611318565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108bc576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806108c8846113e6565b915091506108de81876108d9611307565b61140d565b61092a576108f3866108ee611307565b611190565b610929576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610991576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61099e8686866001611451565b80156109a957600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610a7785610a53888887611457565b7c02000000000000000000000000000000000000000000000000000000001761147f565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610aff576000600185019050600060046000838152602001908152602001600020541415610afd576000548114610afc578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610b6786868660016114aa565b505050505050565b610b776114b0565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b610bbe83838360405180602001604052806000815250611078565b505050565b6000610bce82611318565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c3d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610c966114b0565b610ca0600061152e565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610cdb90612485565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0790612485565b8015610d545780601f10610d2957610100808354040283529160200191610d54565b820191906000526020600020905b815481529060010190602001808311610d3757829003601f168201915b5050505050905090565b600b60009054906101000a900460ff16610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da4906121f4565b60405180910390fd5b600a8111158015610dbf575060018110155b610dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df590612214565b60405180910390fd5b600a81600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e4b9190612379565b1115610e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8390612254565b60405180910390fd5b6108ae81610e986115f4565b610ea29190612379565b1115610ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eda90612234565b60405180910390fd5b610eed3382611607565b80600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f3c9190612379565b9250508190555050565b610f4e6114b0565b80600a9080519060200190610f64929190611aeb565b5050565b8060076000610f75611307565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611022611307565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110679190612197565b60405180910390a35050565b600a81565b61108384848461084a565b60008373ffffffffffffffffffffffffffffffffffffffff163b146110e5576110ae84848484611625565b6110e4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606110f6826112a8565b61112c576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611136611785565b90506000815114156111575760405180602001604052806000815250611182565b8061116184611817565b60405160200161117292919061210c565b6040516020818303038152906040525b915050919050565b6108ae81565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61122c6114b0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561129c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611293906121d4565b60405180910390fd5b6112a58161152e565b50565b6000816112b361130f565b111580156112c2575060005482105b8015611300575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061132761130f565b116113af576000548110156113ae5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156113ac575b60008114156113a2576004600083600190039350838152602001908152602001600020549050611377565b80925050506113e1565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861146e868684611870565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6114b8611879565b73ffffffffffffffffffffffffffffffffffffffff166114d6610ca2565b73ffffffffffffffffffffffffffffffffffffffff161461152c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152390612274565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006115fe61130f565b60005403905090565b611621828260405180602001604052806000815250611881565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261164b611307565b8786866040518563ffffffff1660e01b815260040161166d949392919061214b565b602060405180830381600087803b15801561168757600080fd5b505af19250505080156116b857506040513d601f19601f820116820180604052508101906116b59190611ec7565b60015b611732573d80600081146116e8576040519150601f19603f3d011682016040523d82523d6000602084013e6116ed565b606091505b5060008151141561172a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461179490612485565b80601f01602080910402602001604051908101604052809291908181526020018280546117c090612485565b801561180d5780601f106117e25761010080835404028352916020019161180d565b820191906000526020600020905b8154815290600101906020018083116117f057829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561185b57600184039350600a81066030018453600a81049050806118565761185b565b611830565b50828103602084039350808452505050919050565b60009392505050565b600033905090565b61188b838361191e565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461191957600080549050600083820390505b6118cb6000868380600101945086611625565b611901576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106118b857816000541461191657600080fd5b50505b505050565b600080549050600082141561195f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61196c6000848385611451565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506119e3836119d46000866000611457565b6119dd85611adb565b1761147f565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611a8457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611a49565b506000821415611ac0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611ad660008483856114aa565b505050565b60006001821460e11b9050919050565b828054611af790612485565b90600052602060002090601f016020900481019282611b195760008555611b60565b82601f10611b3257805160ff1916838001178555611b60565b82800160010185558215611b60579182015b82811115611b5f578251825591602001919060010190611b44565b5b509050611b6d9190611b71565b5090565b5b80821115611b8a576000816000905550600101611b72565b5090565b6000611ba1611b9c846122d4565b6122af565b905082815260208101848484011115611bbd57611bbc61257a565b5b611bc8848285612443565b509392505050565b6000611be3611bde84612305565b6122af565b905082815260208101848484011115611bff57611bfe61257a565b5b611c0a848285612443565b509392505050565b600081359050611c2181612702565b92915050565b600081359050611c3681612719565b92915050565b600081359050611c4b81612730565b92915050565b600081519050611c6081612730565b92915050565b600082601f830112611c7b57611c7a612575565b5b8135611c8b848260208601611b8e565b91505092915050565b600082601f830112611ca957611ca8612575565b5b8135611cb9848260208601611bd0565b91505092915050565b600081359050611cd181612747565b92915050565b600060208284031215611ced57611cec612584565b5b6000611cfb84828501611c12565b91505092915050565b60008060408385031215611d1b57611d1a612584565b5b6000611d2985828601611c12565b9250506020611d3a85828601611c12565b9150509250929050565b600080600060608486031215611d5d57611d5c612584565b5b6000611d6b86828701611c12565b9350506020611d7c86828701611c12565b9250506040611d8d86828701611cc2565b9150509250925092565b60008060008060808587031215611db157611db0612584565b5b6000611dbf87828801611c12565b9450506020611dd087828801611c12565b9350506040611de187828801611cc2565b925050606085013567ffffffffffffffff811115611e0257611e0161257f565b5b611e0e87828801611c66565b91505092959194509250565b60008060408385031215611e3157611e30612584565b5b6000611e3f85828601611c12565b9250506020611e5085828601611c27565b9150509250929050565b60008060408385031215611e7157611e70612584565b5b6000611e7f85828601611c12565b9250506020611e9085828601611cc2565b9150509250929050565b600060208284031215611eb057611eaf612584565b5b6000611ebe84828501611c3c565b91505092915050565b600060208284031215611edd57611edc612584565b5b6000611eeb84828501611c51565b91505092915050565b600060208284031215611f0a57611f09612584565b5b600082013567ffffffffffffffff811115611f2857611f2761257f565b5b611f3484828501611c94565b91505092915050565b600060208284031215611f5357611f52612584565b5b6000611f6184828501611cc2565b91505092915050565b611f73816123cf565b82525050565b611f82816123e1565b82525050565b6000611f9382612336565b611f9d818561234c565b9350611fad818560208601612452565b611fb681612589565b840191505092915050565b6000611fcc82612341565b611fd6818561235d565b9350611fe6818560208601612452565b611fef81612589565b840191505092915050565b600061200582612341565b61200f818561236e565b935061201f818560208601612452565b80840191505092915050565b600061203860268361235d565b91506120438261259a565b604082019050919050565b600061205b601f8361235d565b9150612066826125e9565b602082019050919050565b600061207e60278361235d565b915061208982612612565b604082019050919050565b60006120a1601b8361235d565b91506120ac82612661565b602082019050919050565b60006120c460288361235d565b91506120cf8261268a565b604082019050919050565b60006120e760208361235d565b91506120f2826126d9565b602082019050919050565b61210681612439565b82525050565b60006121188285611ffa565b91506121248284611ffa565b91508190509392505050565b60006020820190506121456000830184611f6a565b92915050565b60006080820190506121606000830187611f6a565b61216d6020830186611f6a565b61217a60408301856120fd565b818103606083015261218c8184611f88565b905095945050505050565b60006020820190506121ac6000830184611f79565b92915050565b600060208201905081810360008301526121cc8184611fc1565b905092915050565b600060208201905081810360008301526121ed8161202b565b9050919050565b6000602082019050818103600083015261220d8161204e565b9050919050565b6000602082019050818103600083015261222d81612071565b9050919050565b6000602082019050818103600083015261224d81612094565b9050919050565b6000602082019050818103600083015261226d816120b7565b9050919050565b6000602082019050818103600083015261228d816120da565b9050919050565b60006020820190506122a960008301846120fd565b92915050565b60006122b96122ca565b90506122c582826124b7565b919050565b6000604051905090565b600067ffffffffffffffff8211156122ef576122ee612546565b5b6122f882612589565b9050602081019050919050565b600067ffffffffffffffff8211156123205761231f612546565b5b61232982612589565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061238482612439565b915061238f83612439565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156123c4576123c36124e8565b5b828201905092915050565b60006123da82612419565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612470578082015181840152602081019050612455565b8381111561247f576000848401525b50505050565b6000600282049050600182168061249d57607f821691505b602082108114156124b1576124b0612517565b5b50919050565b6124c082612589565b810181811067ffffffffffffffff821117156124df576124de612546565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5468697320636f6c6c656374696f6e206973206e6f74206f6e2073616c652e00600082015250565b7f596f7520617265206d696e74696e6720746f6f206d616e79206f7220746f6f2060008201527f6c6974746c652e00000000000000000000000000000000000000000000000000602082015250565b7f4d617820737570706c7920686173206265656e206d696e7465642e0000000000600082015250565b7f596f75206861766520616c7265616479206d696e74656420796f7572206d617860008201527f20616d6f756e742e000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61270b816123cf565b811461271657600080fd5b50565b612722816123e1565b811461272d57600080fd5b50565b612739816123ed565b811461274457600080fd5b50565b61275081612439565b811461275b57600080fd5b5056fea264697066735822122068b7f1dd64a98178096bc84c96d5efaa1693a973e4786d454d3e57e094778f0764736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6163745275557971716d463974754d677943685a344d7856574c6a7a6752516d7962665650355768665236642f00000000000000000000

Deployed Bytecode

0x6080604052600436106101405760003560e01c8063715018a6116100b6578063ae6a80d51161006f578063ae6a80d51461041f578063b88d4fde1461044a578063c87b56dd14610466578063e8315742146104a3578063e985e9c5146104ce578063f2fde38b1461050b57610140565b8063715018a6146103375780638da5cb5b1461034e57806395d89b4114610379578063a0712d68146103a4578063a0bcfc7f146103cd578063a22cb465146103f657610140565b80631c3b106d116101085780631c3b106d1461023157806323b872dd1461026e578063271032f11461028a57806342842e0e146102a15780636352211e146102bd57806370a08231146102fa57610140565b806301ffc9a71461014557806306fdde0314610182578063081812fc146101ad578063095ea7b3146101ea57806318160ddd14610206575b600080fd5b34801561015157600080fd5b5061016c60048036038101906101679190611e9a565b610534565b6040516101799190612197565b60405180910390f35b34801561018e57600080fd5b506101976105c6565b6040516101a491906121b2565b60405180910390f35b3480156101b957600080fd5b506101d460048036038101906101cf9190611f3d565b610658565b6040516101e19190612130565b60405180910390f35b61020460048036038101906101ff9190611e5a565b6106d7565b005b34801561021257600080fd5b5061021b61081b565b6040516102289190612294565b60405180910390f35b34801561023d57600080fd5b5061025860048036038101906102539190611cd7565b610832565b6040516102659190612294565b60405180910390f35b61028860048036038101906102839190611d44565b61084a565b005b34801561029657600080fd5b5061029f610b6f565b005b6102bb60048036038101906102b69190611d44565b610ba3565b005b3480156102c957600080fd5b506102e460048036038101906102df9190611f3d565b610bc3565b6040516102f19190612130565b60405180910390f35b34801561030657600080fd5b50610321600480360381019061031c9190611cd7565b610bd5565b60405161032e9190612294565b60405180910390f35b34801561034357600080fd5b5061034c610c8e565b005b34801561035a57600080fd5b50610363610ca2565b6040516103709190612130565b60405180910390f35b34801561038557600080fd5b5061038e610ccc565b60405161039b91906121b2565b60405180910390f35b3480156103b057600080fd5b506103cb60048036038101906103c69190611f3d565b610d5e565b005b3480156103d957600080fd5b506103f460048036038101906103ef9190611ef4565b610f46565b005b34801561040257600080fd5b5061041d60048036038101906104189190611e1a565b610f68565b005b34801561042b57600080fd5b50610434611073565b6040516104419190612294565b60405180910390f35b610464600480360381019061045f9190611d97565b611078565b005b34801561047257600080fd5b5061048d60048036038101906104889190611f3d565b6110eb565b60405161049a91906121b2565b60405180910390f35b3480156104af57600080fd5b506104b861118a565b6040516104c59190612294565b60405180910390f35b3480156104da57600080fd5b506104f560048036038101906104f09190611d04565b611190565b6040516105029190612197565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d9190611cd7565b611224565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061058f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105bf5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546105d590612485565b80601f016020809104026020016040519081016040528092919081815260200182805461060190612485565b801561064e5780601f106106235761010080835404028352916020019161064e565b820191906000526020600020905b81548152906001019060200180831161063157829003601f168201915b5050505050905090565b6000610663826112a8565b610699576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106e282610bc3565b90508073ffffffffffffffffffffffffffffffffffffffff16610703611307565b73ffffffffffffffffffffffffffffffffffffffff16146107665761072f8161072a611307565b611190565b610765576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061082561130f565b6001546000540303905090565b60096020528060005260406000206000915090505481565b600061085582611318565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108bc576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806108c8846113e6565b915091506108de81876108d9611307565b61140d565b61092a576108f3866108ee611307565b611190565b610929576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610991576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61099e8686866001611451565b80156109a957600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610a7785610a53888887611457565b7c02000000000000000000000000000000000000000000000000000000001761147f565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610aff576000600185019050600060046000838152602001908152602001600020541415610afd576000548114610afc578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610b6786868660016114aa565b505050505050565b610b776114b0565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b610bbe83838360405180602001604052806000815250611078565b505050565b6000610bce82611318565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c3d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610c966114b0565b610ca0600061152e565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610cdb90612485565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0790612485565b8015610d545780601f10610d2957610100808354040283529160200191610d54565b820191906000526020600020905b815481529060010190602001808311610d3757829003601f168201915b5050505050905090565b600b60009054906101000a900460ff16610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da4906121f4565b60405180910390fd5b600a8111158015610dbf575060018110155b610dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df590612214565b60405180910390fd5b600a81600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e4b9190612379565b1115610e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8390612254565b60405180910390fd5b6108ae81610e986115f4565b610ea29190612379565b1115610ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eda90612234565b60405180910390fd5b610eed3382611607565b80600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f3c9190612379565b9250508190555050565b610f4e6114b0565b80600a9080519060200190610f64929190611aeb565b5050565b8060076000610f75611307565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611022611307565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110679190612197565b60405180910390a35050565b600a81565b61108384848461084a565b60008373ffffffffffffffffffffffffffffffffffffffff163b146110e5576110ae84848484611625565b6110e4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606110f6826112a8565b61112c576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611136611785565b90506000815114156111575760405180602001604052806000815250611182565b8061116184611817565b60405160200161117292919061210c565b6040516020818303038152906040525b915050919050565b6108ae81565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61122c6114b0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561129c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611293906121d4565b60405180910390fd5b6112a58161152e565b50565b6000816112b361130f565b111580156112c2575060005482105b8015611300575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061132761130f565b116113af576000548110156113ae5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156113ac575b60008114156113a2576004600083600190039350838152602001908152602001600020549050611377565b80925050506113e1565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861146e868684611870565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6114b8611879565b73ffffffffffffffffffffffffffffffffffffffff166114d6610ca2565b73ffffffffffffffffffffffffffffffffffffffff161461152c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152390612274565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006115fe61130f565b60005403905090565b611621828260405180602001604052806000815250611881565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261164b611307565b8786866040518563ffffffff1660e01b815260040161166d949392919061214b565b602060405180830381600087803b15801561168757600080fd5b505af19250505080156116b857506040513d601f19601f820116820180604052508101906116b59190611ec7565b60015b611732573d80600081146116e8576040519150601f19603f3d011682016040523d82523d6000602084013e6116ed565b606091505b5060008151141561172a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461179490612485565b80601f01602080910402602001604051908101604052809291908181526020018280546117c090612485565b801561180d5780601f106117e25761010080835404028352916020019161180d565b820191906000526020600020905b8154815290600101906020018083116117f057829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561185b57600184039350600a81066030018453600a81049050806118565761185b565b611830565b50828103602084039350808452505050919050565b60009392505050565b600033905090565b61188b838361191e565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461191957600080549050600083820390505b6118cb6000868380600101945086611625565b611901576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106118b857816000541461191657600080fd5b50505b505050565b600080549050600082141561195f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61196c6000848385611451565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506119e3836119d46000866000611457565b6119dd85611adb565b1761147f565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611a8457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611a49565b506000821415611ac0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611ad660008483856114aa565b505050565b60006001821460e11b9050919050565b828054611af790612485565b90600052602060002090601f016020900481019282611b195760008555611b60565b82601f10611b3257805160ff1916838001178555611b60565b82800160010185558215611b60579182015b82811115611b5f578251825591602001919060010190611b44565b5b509050611b6d9190611b71565b5090565b5b80821115611b8a576000816000905550600101611b72565b5090565b6000611ba1611b9c846122d4565b6122af565b905082815260208101848484011115611bbd57611bbc61257a565b5b611bc8848285612443565b509392505050565b6000611be3611bde84612305565b6122af565b905082815260208101848484011115611bff57611bfe61257a565b5b611c0a848285612443565b509392505050565b600081359050611c2181612702565b92915050565b600081359050611c3681612719565b92915050565b600081359050611c4b81612730565b92915050565b600081519050611c6081612730565b92915050565b600082601f830112611c7b57611c7a612575565b5b8135611c8b848260208601611b8e565b91505092915050565b600082601f830112611ca957611ca8612575565b5b8135611cb9848260208601611bd0565b91505092915050565b600081359050611cd181612747565b92915050565b600060208284031215611ced57611cec612584565b5b6000611cfb84828501611c12565b91505092915050565b60008060408385031215611d1b57611d1a612584565b5b6000611d2985828601611c12565b9250506020611d3a85828601611c12565b9150509250929050565b600080600060608486031215611d5d57611d5c612584565b5b6000611d6b86828701611c12565b9350506020611d7c86828701611c12565b9250506040611d8d86828701611cc2565b9150509250925092565b60008060008060808587031215611db157611db0612584565b5b6000611dbf87828801611c12565b9450506020611dd087828801611c12565b9350506040611de187828801611cc2565b925050606085013567ffffffffffffffff811115611e0257611e0161257f565b5b611e0e87828801611c66565b91505092959194509250565b60008060408385031215611e3157611e30612584565b5b6000611e3f85828601611c12565b9250506020611e5085828601611c27565b9150509250929050565b60008060408385031215611e7157611e70612584565b5b6000611e7f85828601611c12565b9250506020611e9085828601611cc2565b9150509250929050565b600060208284031215611eb057611eaf612584565b5b6000611ebe84828501611c3c565b91505092915050565b600060208284031215611edd57611edc612584565b5b6000611eeb84828501611c51565b91505092915050565b600060208284031215611f0a57611f09612584565b5b600082013567ffffffffffffffff811115611f2857611f2761257f565b5b611f3484828501611c94565b91505092915050565b600060208284031215611f5357611f52612584565b5b6000611f6184828501611cc2565b91505092915050565b611f73816123cf565b82525050565b611f82816123e1565b82525050565b6000611f9382612336565b611f9d818561234c565b9350611fad818560208601612452565b611fb681612589565b840191505092915050565b6000611fcc82612341565b611fd6818561235d565b9350611fe6818560208601612452565b611fef81612589565b840191505092915050565b600061200582612341565b61200f818561236e565b935061201f818560208601612452565b80840191505092915050565b600061203860268361235d565b91506120438261259a565b604082019050919050565b600061205b601f8361235d565b9150612066826125e9565b602082019050919050565b600061207e60278361235d565b915061208982612612565b604082019050919050565b60006120a1601b8361235d565b91506120ac82612661565b602082019050919050565b60006120c460288361235d565b91506120cf8261268a565b604082019050919050565b60006120e760208361235d565b91506120f2826126d9565b602082019050919050565b61210681612439565b82525050565b60006121188285611ffa565b91506121248284611ffa565b91508190509392505050565b60006020820190506121456000830184611f6a565b92915050565b60006080820190506121606000830187611f6a565b61216d6020830186611f6a565b61217a60408301856120fd565b818103606083015261218c8184611f88565b905095945050505050565b60006020820190506121ac6000830184611f79565b92915050565b600060208201905081810360008301526121cc8184611fc1565b905092915050565b600060208201905081810360008301526121ed8161202b565b9050919050565b6000602082019050818103600083015261220d8161204e565b9050919050565b6000602082019050818103600083015261222d81612071565b9050919050565b6000602082019050818103600083015261224d81612094565b9050919050565b6000602082019050818103600083015261226d816120b7565b9050919050565b6000602082019050818103600083015261228d816120da565b9050919050565b60006020820190506122a960008301846120fd565b92915050565b60006122b96122ca565b90506122c582826124b7565b919050565b6000604051905090565b600067ffffffffffffffff8211156122ef576122ee612546565b5b6122f882612589565b9050602081019050919050565b600067ffffffffffffffff8211156123205761231f612546565b5b61232982612589565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061238482612439565b915061238f83612439565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156123c4576123c36124e8565b5b828201905092915050565b60006123da82612419565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612470578082015181840152602081019050612455565b8381111561247f576000848401525b50505050565b6000600282049050600182168061249d57607f821691505b602082108114156124b1576124b0612517565b5b50919050565b6124c082612589565b810181811067ffffffffffffffff821117156124df576124de612546565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5468697320636f6c6c656374696f6e206973206e6f74206f6e2073616c652e00600082015250565b7f596f7520617265206d696e74696e6720746f6f206d616e79206f7220746f6f2060008201527f6c6974746c652e00000000000000000000000000000000000000000000000000602082015250565b7f4d617820737570706c7920686173206265656e206d696e7465642e0000000000600082015250565b7f596f75206861766520616c7265616479206d696e74656420796f7572206d617860008201527f20616d6f756e742e000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61270b816123cf565b811461271657600080fd5b50565b612722816123e1565b811461272d57600080fd5b50565b612739816123ed565b811461274457600080fd5b50565b61275081612439565b811461275b57600080fd5b5056fea264697066735822122068b7f1dd64a98178096bc84c96d5efaa1693a973e4786d454d3e57e094778f0764736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6163745275557971716d463974754d677943685a344d7856574c6a7a6752516d7962665650355768665236642f00000000000000000000

-----Decoded View---------------
Arg [0] : uri_ (string): ipfs://QmactRuUyqqmF9tuMgyChZ4MxVWLjzgRQmybfVP5WhfR6d/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d6163745275557971716d463974754d677943685a344d78
Arg [3] : 56574c6a7a6752516d7962665650355768665236642f00000000000000000000


Deployed Bytecode Sourcemap

55123:1446:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21997:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22899:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29390:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28823:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18650:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55274:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33029:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56278:80;;;;;;;;;;;;;:::i;:::-;;35950:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24292:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19834:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2776:103;;;;;;;;;;;;;:::i;:::-;;2128:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23075:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55481:692;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56181:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29948:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55220:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36741:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23285:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55169:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30339:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3034:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21997:639;22082:4;22421:10;22406:25;;:11;:25;;;;:102;;;;22498:10;22483:25;;:11;:25;;;;22406:102;:179;;;;22575:10;22560:25;;:11;:25;;;;22406:179;22386:199;;21997:639;;;:::o;22899:100::-;22953:13;22986:5;22979:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22899:100;:::o;29390:218::-;29466:7;29491:16;29499:7;29491;:16::i;:::-;29486:64;;29516:34;;;;;;;;;;;;;;29486:64;29570:15;:24;29586:7;29570:24;;;;;;;;;;;:30;;;;;;;;;;;;29563:37;;29390:218;;;:::o;28823:408::-;28912:13;28928:16;28936:7;28928;:16::i;:::-;28912:32;;28984:5;28961:28;;:19;:17;:19::i;:::-;:28;;;28957:175;;29009:44;29026:5;29033:19;:17;:19::i;:::-;29009:16;:44::i;:::-;29004:128;;29081:35;;;;;;;;;;;;;;29004:128;28957:175;29177:2;29144:15;:24;29160:7;29144:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;29215:7;29211:2;29195:28;;29204:5;29195:28;;;;;;;;;;;;28901:330;28823:408;;:::o;18650:323::-;18711:7;18939:15;:13;:15::i;:::-;18924:12;;18908:13;;:28;:46;18901:53;;18650:323;:::o;55274:52::-;;;;;;;;;;;;;;;;;:::o;33029:2825::-;33171:27;33201;33220:7;33201:18;:27::i;:::-;33171:57;;33286:4;33245:45;;33261:19;33245:45;;;33241:86;;33299:28;;;;;;;;;;;;;;33241:86;33341:27;33370:23;33397:35;33424:7;33397:26;:35::i;:::-;33340:92;;;;33532:68;33557:15;33574:4;33580:19;:17;:19::i;:::-;33532:24;:68::i;:::-;33527:180;;33620:43;33637:4;33643:19;:17;:19::i;:::-;33620:16;:43::i;:::-;33615:92;;33672:35;;;;;;;;;;;;;;33615:92;33527:180;33738:1;33724:16;;:2;:16;;;33720:52;;;33749:23;;;;;;;;;;;;;;33720:52;33785:43;33807:4;33813:2;33817:7;33826:1;33785:21;:43::i;:::-;33921:15;33918:160;;;34061:1;34040:19;34033:30;33918:160;34458:18;:24;34477:4;34458:24;;;;;;;;;;;;;;;;34456:26;;;;;;;;;;;;34527:18;:22;34546:2;34527:22;;;;;;;;;;;;;;;;34525:24;;;;;;;;;;;34849:146;34886:2;34935:45;34950:4;34956:2;34960:19;34935:14;:45::i;:::-;15049:8;34907:73;34849:18;:146::i;:::-;34820:17;:26;34838:7;34820:26;;;;;;;;;;;:175;;;;35166:1;15049:8;35115:19;:47;:52;35111:627;;;35188:19;35220:1;35210:7;:11;35188:33;;35377:1;35343:17;:30;35361:11;35343:30;;;;;;;;;;;;:35;35339:384;;;35481:13;;35466:11;:28;35462:242;;35661:19;35628:17;:30;35646:11;35628:30;;;;;;;;;;;:52;;;;35462:242;35339:384;35169:569;35111:627;35785:7;35781:2;35766:27;;35775:4;35766:27;;;;;;;;;;;;35804:42;35825:4;35831:2;35835:7;35844:1;35804:20;:42::i;:::-;33160:2694;;;33029:2825;;;:::o;56278:80::-;2014:13;:11;:13::i;:::-;56343:7:::1;;;;;;;;;;;56342:8;56332:7;;:18;;;;;;;;;;;;;;;;;;56278:80::o:0;35950:193::-;36096:39;36113:4;36119:2;36123:7;36096:39;;;;;;;;;;;;:16;:39::i;:::-;35950:193;;;:::o;24292:152::-;24364:7;24407:27;24426:7;24407:18;:27::i;:::-;24384:52;;24292:152;;;:::o;19834:233::-;19906:7;19947:1;19930:19;;:5;:19;;;19926:60;;;19958:28;;;;;;;;;;;;;;19926:60;13993:13;20004:18;:25;20023:5;20004:25;;;;;;;;;;;;;;;;:55;19997:62;;19834:233;;;:::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;:::-;2776:103::o:0;2128:87::-;2174:7;2201:6;;;;;;;;;;;2194:13;;2128:87;:::o;23075:104::-;23131:13;23164:7;23157:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23075:104;:::o;55481:692::-;55551:7;;;;;;;;;;;55543:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;55265:2;55613:13;:35;;:57;;;;;55669:1;55652:13;:18;;55613:57;55605:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;55265:2;55838:13;55807:16;:28;55824:10;55807:28;;;;;;;;;;;;;;;;:44;;;;:::i;:::-;:66;;55799:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;55205:4;55977:13;55960:14;:12;:14::i;:::-;:30;;;;:::i;:::-;:43;;55952:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;56073:36;56083:10;56095:13;56073:9;:36::i;:::-;56152:13;56120:16;:28;56137:10;56120:28;;;;;;;;;;;;;;;;:45;;;;;;;:::i;:::-;;;;;;;;55481:692;:::o;56181:89::-;2014:13;:11;:13::i;:::-;56258:4:::1;56251;:11;;;;;;;;;;;;:::i;:::-;;56181:89:::0;:::o;29948:234::-;30095:8;30043:18;:39;30062:19;:17;:19::i;:::-;30043:39;;;;;;;;;;;;;;;:49;30083:8;30043:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;30155:8;30119:55;;30134:19;:17;:19::i;:::-;30119:55;;;30165:8;30119:55;;;;;;:::i;:::-;;;;;;;;29948:234;;:::o;55220:47::-;55265:2;55220:47;:::o;36741:407::-;36916:31;36929:4;36935:2;36939:7;36916:12;:31::i;:::-;36980:1;36962:2;:14;;;:19;36958:183;;37001:56;37032:4;37038:2;37042:7;37051:5;37001:30;:56::i;:::-;36996:145;;37085:40;;;;;;;;;;;;;;36996:145;36958:183;36741:407;;;;:::o;23285:318::-;23358:13;23389:16;23397:7;23389;:16::i;:::-;23384:59;;23414:29;;;;;;;;;;;;;;23384:59;23456:21;23480:10;:8;:10::i;:::-;23456:34;;23533:1;23514:7;23508:21;:26;;:87;;;;;;;;;;;;;;;;;23561:7;23570:18;23580:7;23570:9;:18::i;:::-;23544:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23508:87;23501:94;;;23285:318;;;:::o;55169:40::-;55205:4;55169:40;:::o;30339:164::-;30436:4;30460:18;:25;30479:5;30460:25;;;;;;;;;;;;;;;:35;30486:8;30460:35;;;;;;;;;;;;;;;;;;;;;;;;;30453:42;;30339:164;;;;:::o;3034:201::-;2014:13;:11;:13::i;:::-;3143:1:::1;3123:22;;:8;:22;;;;3115:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3199:28;3218:8;3199:18;:28::i;:::-;3034:201:::0;:::o;30761:282::-;30826:4;30882:7;30863:15;:13;:15::i;:::-;:26;;:66;;;;;30916:13;;30906:7;:23;30863:66;:153;;;;;31015:1;14769:8;30967:17;:26;30985:7;30967:26;;;;;;;;;;;;:44;:49;30863:153;30843:173;;30761:282;;;:::o;53069:105::-;53129:7;53156:10;53149:17;;53069:105;:::o;56471:93::-;56528:7;56555:1;56548:8;;56471:93;:::o;25447:1275::-;25514:7;25534:12;25549:7;25534:22;;25617:4;25598:15;:13;:15::i;:::-;:23;25594:1061;;25651:13;;25644:4;:20;25640:1015;;;25689:14;25706:17;:23;25724:4;25706:23;;;;;;;;;;;;25689:40;;25823:1;14769:8;25795:6;:24;:29;25791:845;;;26460:113;26477:1;26467:6;:11;26460:113;;;26520:17;:25;26538:6;;;;;;;26520:25;;;;;;;;;;;;26511:34;;26460:113;;;26606:6;26599:13;;;;;;25791:845;25666:989;25640:1015;25594:1061;26683:31;;;;;;;;;;;;;;25447:1275;;;;:::o;31924:485::-;32026:27;32055:23;32096:38;32137:15;:24;32153:7;32137:24;;;;;;;;;;;32096:65;;32314:18;32291:41;;32371:19;32365:26;32346:45;;32276:126;31924:485;;;:::o;31152:659::-;31301:11;31466:16;31459:5;31455:28;31446:37;;31626:16;31615:9;31611:32;31598:45;;31776:15;31765:9;31762:30;31754:5;31743:9;31740:20;31737:56;31727:66;;31152:659;;;;;:::o;37810:159::-;;;;;:::o;52378:311::-;52513:7;52533:16;15173:3;52559:19;:41;;52533:68;;15173:3;52627:31;52638:4;52644:2;52648:9;52627:10;:31::i;:::-;52619:40;;:62;;52612:69;;;52378:311;;;;;:::o;27270:450::-;27350:14;27518:16;27511:5;27507:28;27498:37;;27695:5;27681:11;27656:23;27652:41;27649:52;27642:5;27639:63;27629:73;;27270:450;;;;:::o;38634:158::-;;;;;:::o;2293:132::-;2368:12;:10;:12::i;:::-;2357:23;;:7;:5;:7::i;:::-;:23;;;2349:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2293:132::o;3395:191::-;3469:16;3488:6;;;;;;;;;;;3469:25;;3514:8;3505:6;;:17;;;;;;;;;;;;;;;;;;3569:8;3538:40;;3559:8;3538:40;;;;;;;;;;;;3458:128;3395:191;:::o;19071:296::-;19126:7;19333:15;:13;:15::i;:::-;19317:13;;:31;19310:38;;19071:296;:::o;46901:112::-;46978:27;46988:2;46992:8;46978:27;;;;;;;;;;;;:9;:27::i;:::-;46901:112;;:::o;39232:716::-;39395:4;39441:2;39416:45;;;39462:19;:17;:19::i;:::-;39483:4;39489:7;39498:5;39416:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39412:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39716:1;39699:6;:13;:18;39695:235;;;39745:40;;;;;;;;;;;;;;39695:235;39888:6;39882:13;39873:6;39869:2;39865:15;39858:38;39412:529;39585:54;;;39575:64;;;:6;:64;;;;39568:71;;;39232:716;;;;;;:::o;56366:97::-;56418:13;56451:4;56444:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56366:97;:::o;53276:1745::-;53341:17;53775:4;53768;53762:11;53758:22;53867:1;53861:4;53854:15;53942:4;53939:1;53935:12;53928:19;;54024:1;54019:3;54012:14;54128:3;54367:5;54349:428;54375:1;54349:428;;;54415:1;54410:3;54406:11;54399:18;;54586:2;54580:4;54576:13;54572:2;54568:22;54563:3;54555:36;54680:2;54674:4;54670:13;54662:21;;54747:4;54737:25;;54755:5;;54737:25;54349:428;;;54353:21;54816:3;54811;54807:13;54931:4;54926:3;54922:14;54915:21;;54996:6;54991:3;54984:19;53380:1634;;;53276:1745;;;:::o;52079:147::-;52216:6;52079:147;;;;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;46128:689::-;46259:19;46265:2;46269:8;46259:5;:19::i;:::-;46338:1;46320:2;:14;;;:19;46316:483;;46360:11;46374:13;;46360:27;;46406:13;46428:8;46422:3;:14;46406:30;;46455:233;46486:62;46525:1;46529:2;46533:7;;;;;;46542:5;46486:30;:62::i;:::-;46481:167;;46584:40;;;;;;;;;;;;;;46481:167;46683:3;46675:5;:11;46455:233;;46770:3;46753:13;;:20;46749:34;;46775:8;;;46749:34;46341:458;;46316:483;46128:689;;;:::o;40410:2966::-;40483:20;40506:13;;40483:36;;40546:1;40534:8;:13;40530:44;;;40556:18;;;;;;;;;;;;;;40530:44;40587:61;40617:1;40621:2;40625:12;40639:8;40587:21;:61::i;:::-;41131:1;14131:2;41101:1;:26;;41100:32;41088:8;:45;41062:18;:22;41081:2;41062:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;41410:139;41447:2;41501:33;41524:1;41528:2;41532:1;41501:14;:33::i;:::-;41468:30;41489:8;41468:20;:30::i;:::-;:66;41410:18;:139::i;:::-;41376:17;:31;41394:12;41376:31;;;;;;;;;;;:173;;;;41566:16;41597:11;41626:8;41611:12;:23;41597:37;;42147:16;42143:2;42139:25;42127:37;;42519:12;42479:8;42438:1;42376:25;42317:1;42256;42229:335;42890:1;42876:12;42872:20;42830:346;42931:3;42922:7;42919:16;42830:346;;43149:7;43139:8;43136:1;43109:25;43106:1;43103;43098:59;42984:1;42975:7;42971:15;42960:26;;42830:346;;;42834:77;43221:1;43209:8;:13;43205:45;;;43231:19;;;;;;;;;;;;;;43205:45;43283:3;43267:13;:19;;;;40836:2462;;43308:60;43337:1;43341:2;43345:12;43359:8;43308:20;:60::i;:::-;40472:2904;40410:2966;;:::o;27822:324::-;27892:14;28125:1;28115:8;28112:15;28086:24;28082:46;28072:56;;27822:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8516:366::-;8658:3;8679:67;8743:2;8738:3;8679:67;:::i;:::-;8672:74;;8755:93;8844:3;8755:93;:::i;:::-;8873:2;8868:3;8864:12;8857:19;;8516:366;;;:::o;8888:::-;9030:3;9051:67;9115:2;9110:3;9051:67;:::i;:::-;9044:74;;9127:93;9216:3;9127:93;:::i;:::-;9245:2;9240:3;9236:12;9229:19;;8888:366;;;:::o;9260:::-;9402:3;9423:67;9487:2;9482:3;9423:67;:::i;:::-;9416:74;;9499:93;9588:3;9499:93;:::i;:::-;9617:2;9612:3;9608:12;9601:19;;9260:366;;;:::o;9632:::-;9774:3;9795:67;9859:2;9854:3;9795:67;:::i;:::-;9788:74;;9871:93;9960:3;9871:93;:::i;:::-;9989:2;9984:3;9980:12;9973:19;;9632:366;;;:::o;10004:::-;10146:3;10167:67;10231:2;10226:3;10167:67;:::i;:::-;10160:74;;10243:93;10332:3;10243:93;:::i;:::-;10361:2;10356:3;10352:12;10345:19;;10004:366;;;:::o;10376:::-;10518:3;10539:67;10603:2;10598:3;10539:67;:::i;:::-;10532:74;;10615:93;10704:3;10615:93;:::i;:::-;10733:2;10728:3;10724:12;10717:19;;10376:366;;;:::o;10748:118::-;10835:24;10853:5;10835:24;:::i;:::-;10830:3;10823:37;10748:118;;:::o;10872:435::-;11052:3;11074:95;11165:3;11156:6;11074:95;:::i;:::-;11067:102;;11186:95;11277:3;11268:6;11186:95;:::i;:::-;11179:102;;11298:3;11291:10;;10872:435;;;;;:::o;11313:222::-;11406:4;11444:2;11433:9;11429:18;11421:26;;11457:71;11525:1;11514:9;11510:17;11501:6;11457:71;:::i;:::-;11313:222;;;;:::o;11541:640::-;11736:4;11774:3;11763:9;11759:19;11751:27;;11788:71;11856:1;11845:9;11841:17;11832:6;11788:71;:::i;:::-;11869:72;11937:2;11926:9;11922:18;11913:6;11869:72;:::i;:::-;11951;12019:2;12008:9;12004:18;11995:6;11951:72;:::i;:::-;12070:9;12064:4;12060:20;12055:2;12044:9;12040:18;12033:48;12098:76;12169:4;12160:6;12098:76;:::i;:::-;12090:84;;11541:640;;;;;;;:::o;12187:210::-;12274:4;12312:2;12301:9;12297:18;12289:26;;12325:65;12387:1;12376:9;12372:17;12363:6;12325:65;:::i;:::-;12187:210;;;;:::o;12403:313::-;12516:4;12554:2;12543:9;12539:18;12531:26;;12603:9;12597:4;12593:20;12589:1;12578:9;12574:17;12567:47;12631:78;12704:4;12695:6;12631:78;:::i;:::-;12623:86;;12403:313;;;;:::o;12722:419::-;12888:4;12926:2;12915:9;12911:18;12903:26;;12975:9;12969:4;12965:20;12961:1;12950:9;12946:17;12939:47;13003:131;13129:4;13003:131;:::i;:::-;12995:139;;12722:419;;;:::o;13147:::-;13313:4;13351:2;13340:9;13336:18;13328:26;;13400:9;13394:4;13390:20;13386:1;13375:9;13371:17;13364:47;13428:131;13554:4;13428:131;:::i;:::-;13420:139;;13147:419;;;:::o;13572:::-;13738:4;13776:2;13765:9;13761:18;13753:26;;13825:9;13819:4;13815:20;13811:1;13800:9;13796:17;13789:47;13853:131;13979:4;13853:131;:::i;:::-;13845:139;;13572:419;;;:::o;13997:::-;14163:4;14201:2;14190:9;14186:18;14178:26;;14250:9;14244:4;14240:20;14236:1;14225:9;14221:17;14214:47;14278:131;14404:4;14278:131;:::i;:::-;14270:139;;13997:419;;;:::o;14422:::-;14588:4;14626:2;14615:9;14611:18;14603:26;;14675:9;14669:4;14665:20;14661:1;14650:9;14646:17;14639:47;14703:131;14829:4;14703:131;:::i;:::-;14695:139;;14422:419;;;:::o;14847:::-;15013:4;15051:2;15040:9;15036:18;15028:26;;15100:9;15094:4;15090:20;15086:1;15075:9;15071:17;15064:47;15128:131;15254:4;15128:131;:::i;:::-;15120:139;;14847:419;;;:::o;15272:222::-;15365:4;15403:2;15392:9;15388:18;15380:26;;15416:71;15484:1;15473:9;15469:17;15460:6;15416:71;:::i;:::-;15272:222;;;;:::o;15500:129::-;15534:6;15561:20;;:::i;:::-;15551:30;;15590:33;15618:4;15610:6;15590:33;:::i;:::-;15500:129;;;:::o;15635:75::-;15668:6;15701:2;15695:9;15685:19;;15635:75;:::o;15716:307::-;15777:4;15867:18;15859:6;15856:30;15853:56;;;15889:18;;:::i;:::-;15853:56;15927:29;15949:6;15927:29;:::i;:::-;15919:37;;16011:4;16005;16001:15;15993:23;;15716:307;;;:::o;16029:308::-;16091:4;16181:18;16173:6;16170:30;16167:56;;;16203:18;;:::i;:::-;16167:56;16241:29;16263:6;16241:29;:::i;:::-;16233:37;;16325:4;16319;16315:15;16307:23;;16029:308;;;:::o;16343:98::-;16394:6;16428:5;16422:12;16412:22;;16343:98;;;:::o;16447:99::-;16499:6;16533:5;16527:12;16517:22;;16447:99;;;:::o;16552:168::-;16635:11;16669:6;16664:3;16657:19;16709:4;16704:3;16700:14;16685:29;;16552:168;;;;:::o;16726:169::-;16810:11;16844:6;16839:3;16832:19;16884:4;16879:3;16875:14;16860:29;;16726:169;;;;:::o;16901:148::-;17003:11;17040:3;17025:18;;16901:148;;;;:::o;17055:305::-;17095:3;17114:20;17132:1;17114:20;:::i;:::-;17109:25;;17148:20;17166:1;17148:20;:::i;:::-;17143:25;;17302:1;17234:66;17230:74;17227:1;17224:81;17221:107;;;17308:18;;:::i;:::-;17221:107;17352:1;17349;17345:9;17338:16;;17055:305;;;;:::o;17366:96::-;17403:7;17432:24;17450:5;17432:24;:::i;:::-;17421:35;;17366:96;;;:::o;17468:90::-;17502:7;17545:5;17538:13;17531:21;17520:32;;17468:90;;;:::o;17564:149::-;17600:7;17640:66;17633:5;17629:78;17618:89;;17564:149;;;:::o;17719:126::-;17756:7;17796:42;17789:5;17785:54;17774:65;;17719:126;;;:::o;17851:77::-;17888:7;17917:5;17906:16;;17851:77;;;:::o;17934:154::-;18018:6;18013:3;18008;17995:30;18080:1;18071:6;18066:3;18062:16;18055:27;17934:154;;;:::o;18094:307::-;18162:1;18172:113;18186:6;18183:1;18180:13;18172:113;;;18271:1;18266:3;18262:11;18256:18;18252:1;18247:3;18243:11;18236:39;18208:2;18205:1;18201:10;18196:15;;18172:113;;;18303:6;18300:1;18297:13;18294:101;;;18383:1;18374:6;18369:3;18365:16;18358:27;18294:101;18143:258;18094:307;;;:::o;18407:320::-;18451:6;18488:1;18482:4;18478:12;18468:22;;18535:1;18529:4;18525:12;18556:18;18546:81;;18612:4;18604:6;18600:17;18590:27;;18546:81;18674:2;18666:6;18663:14;18643:18;18640:38;18637:84;;;18693:18;;:::i;:::-;18637:84;18458:269;18407:320;;;:::o;18733:281::-;18816:27;18838:4;18816:27;:::i;:::-;18808:6;18804:40;18946:6;18934:10;18931:22;18910:18;18898:10;18895:34;18892:62;18889:88;;;18957:18;;:::i;:::-;18889:88;18997:10;18993:2;18986:22;18776:238;18733:281;;:::o;19020:180::-;19068:77;19065:1;19058:88;19165:4;19162:1;19155:15;19189:4;19186:1;19179:15;19206:180;19254:77;19251:1;19244:88;19351:4;19348:1;19341:15;19375:4;19372:1;19365:15;19392:180;19440:77;19437:1;19430:88;19537:4;19534:1;19527:15;19561:4;19558:1;19551:15;19578:117;19687:1;19684;19677:12;19701:117;19810:1;19807;19800:12;19824:117;19933:1;19930;19923:12;19947:117;20056:1;20053;20046:12;20070:102;20111:6;20162:2;20158:7;20153:2;20146:5;20142:14;20138:28;20128:38;;20070:102;;;:::o;20178:225::-;20318:34;20314:1;20306:6;20302:14;20295:58;20387:8;20382:2;20374:6;20370:15;20363:33;20178:225;:::o;20409:181::-;20549:33;20545:1;20537:6;20533:14;20526:57;20409:181;:::o;20596:226::-;20736:34;20732:1;20724:6;20720:14;20713:58;20805:9;20800:2;20792:6;20788:15;20781:34;20596:226;:::o;20828:177::-;20968:29;20964:1;20956:6;20952:14;20945:53;20828:177;:::o;21011:227::-;21151:34;21147:1;21139:6;21135:14;21128:58;21220:10;21215:2;21207:6;21203:15;21196:35;21011:227;:::o;21244:182::-;21384:34;21380:1;21372:6;21368:14;21361:58;21244:182;:::o;21432:122::-;21505:24;21523:5;21505:24;:::i;:::-;21498:5;21495:35;21485:63;;21544:1;21541;21534:12;21485:63;21432:122;:::o;21560:116::-;21630:21;21645:5;21630:21;:::i;:::-;21623:5;21620:32;21610:60;;21666:1;21663;21656:12;21610:60;21560:116;:::o;21682:120::-;21754:23;21771:5;21754:23;:::i;:::-;21747:5;21744:34;21734:62;;21792:1;21789;21782:12;21734:62;21682:120;:::o;21808:122::-;21881:24;21899:5;21881:24;:::i;:::-;21874:5;21871:35;21861:63;;21920:1;21917;21910:12;21861:63;21808:122;:::o

Swarm Source

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