ETH Price: $3,364.60 (-2.32%)
Gas: 2 Gwei

Token

Jidori Boy (JIDORI-BOY)
 

Overview

Max Total Supply

3,950 JIDORI-BOY

Holders

2,780

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
19921111.eth
Balance
1 JIDORI-BOY
0xdE4E81A778b99e8412ea3a3F765EB6179b87f198
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

This is hand-painted NFT collection which creative idea comes from people's usual selfie habits, and maybe it's similar to you.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
JidoriBoy

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/*
┌───────┐        ┌─┐                       ┌────────┐
└──┐ ┌──┘        | |                       |      ○ | 
   | |           | |                       |        | 
   | |         __| |   ___    _  __        |        | 
   | |   ●   / __  |  / _ \  | |/ / ●      |  FIND  | 
__ | |  ┌─┐ / /  | | | | | | |  /  ┌─┐     |  YOUR  |          
\ \/ /  | | | \__| | | |_| | | |   | |     | SELFIE | 
 \__/   |_|  \_____|  \___/  |_|   |_|     └────────┘

*/
// SPDX-License-Identifier: MIT

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 tokenId of the next token 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`
    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 => address) private _tokenApprovals;

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

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

    /**
     * @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 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 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 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 returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    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: 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.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view 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 auxillary 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 auxillary 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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * 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 ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        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, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));
        if (to == owner) revert ApprovalToCurrentOwner();

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

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

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, 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.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @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.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

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

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

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // 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 `_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));

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

        // 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] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // 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++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _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))
                }
            }
        }
    }

    /**
     * @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 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 returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: contracts/jidori_boy.sol


pragma solidity ^0.8.4;




contract JidoriBoy is Ownable, ERC721A, ReentrancyGuard {
    mapping(address => uint256) public buyed;
    uint256 public freeMintSlots = 0;

    struct JidoriConfig {
        uint256 stage;
        uint256 publicSaleMaxMint;
        uint256 publicSalePrice;
        uint256 maxSupply;
    }

    JidoriConfig public jidoriConfig;

    constructor() ERC721A("Jidori Boy", "JIDORI-BOY") {
        initConfig(1, 1, 12500000000000000, 3950);
    }

    function initConfig(
        uint256 stage,
        uint256 publicSaleMaxMint,
        uint256 publicSalePrice,
        uint256 maxSupply
    ) private onlyOwner {
        jidoriConfig.stage = stage;
        jidoriConfig.publicSaleMaxMint = publicSaleMaxMint;
        jidoriConfig.publicSalePrice = publicSalePrice;
        jidoriConfig.maxSupply = maxSupply;
    }

    function airdrop(address[] calldata addresses, uint256[] calldata quantity) external onlyOwner airdropEnabled nonReentrant {
        for (uint256 i; i < addresses.length; ++i) {
            _mint(addresses[i], quantity[i]);
        }
    }

    function devMint(uint256 quantity) external onlyOwner {
        require(
            totalSupply() + quantity <= getMaxSupply(),
            "Insufficient quantity left."
        );

        _safeMint(msg.sender, quantity);
    }

    function mint(uint256 quantity) external saleEnabled payable {
        JidoriConfig memory config = jidoriConfig;
        uint256 publicSalePrice = uint256(config.publicSalePrice);
        uint256 publicSaleMaxMint = uint256(config.publicSaleMaxMint);

        require(
            totalSupply() + quantity <= getMaxSupply(),
            "Insufficient quantity left."
        );
        require(
            getAddressBuyed(msg.sender) + quantity <= publicSaleMaxMint,
            "You mint too much."
        );

        if (freeMintSlots <= 0) {
            require(
                quantity * publicSalePrice <= msg.value,
                "Insufficient balance."
            );
        } else {
            freeMintSlots -= quantity;
        }

        _safeMint(msg.sender, quantity);
        buyed[msg.sender] += quantity;
    }

    function setStage(uint256 _stage) external onlyOwner {
        require(_stage > 2, "unable revert");
        jidoriConfig.stage = _stage;
    }

    function setPrice(uint256 _price) external onlyOwner {
        jidoriConfig.publicSalePrice = _price;
    }

    function setFreeMintSlots(uint256 _slots) external onlyOwner {
        freeMintSlots = _slots;
    }

    function getAddressBuyed(address owner) public view returns (uint256) {
        return buyed[owner];
    }
    function getStage() private view returns (uint256) {
        JidoriConfig memory config = jidoriConfig;
        uint256 stage = uint256(config.stage);
        return stage;
    }
    function getMaxSupply() private view returns (uint256) {
        JidoriConfig memory config = jidoriConfig;
        uint256 max = uint256(config.maxSupply);
        return max;
    }

    string private _baseTokenURI;

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

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

    function withdraw() external onlyOwner nonReentrant {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }

    // modifiers
    modifier airdropEnabled() {
        require(getStage() == 1, "Unable to airdrop.");
        _;
    }

    modifier saleEnabled() {
        require(getStage() == 3, "Unable to mint.");
        _;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"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":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"quantity","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"buyed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintSlots","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getAddressBuyed","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":"jidoriConfig","outputs":[{"internalType":"uint256","name":"stage","type":"uint256"},{"internalType":"uint256","name":"publicSaleMaxMint","type":"uint256"},{"internalType":"uint256","name":"publicSalePrice","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_slots","type":"uint256"}],"name":"setFreeMintSlots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_stage","type":"uint256"}],"name":"setStage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600b553480156200001657600080fd5b506040518060400160405280600a8152602001694a69646f726920426f7960b01b8152506040518060400160405280600a8152602001694a49444f52492d424f5960b01b8152506200007762000071620000ce60201b60201c565b620000d2565b81516200008c90600390602085019062000195565b508051620000a290600490602084019062000195565b5050600060019081556009819055620000c8915080662c68af0bb14000610f6e62000122565b62000278565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000546001600160a01b03163314620001815760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b600c93909355600d91909155600e55600f55565b828054620001a3906200023b565b90600052602060002090601f016020900481019282620001c7576000855562000212565b82601f10620001e257805160ff191683800117855562000212565b8280016001018555821562000212579182015b8281111562000212578251825591602001919060010190620001f5565b506200022092915062000224565b5090565b5b8082111562000220576000815560010162000225565b600181811c908216806200025057607f821691505b602082108114156200027257634e487b7160e01b600052602260045260246000fd5b50919050565b611d5c80620002886000396000f3fe6080604052600436106101c25760003560e01c806367243482116100f7578063a22cb46511610095578063e8f05f4911610064578063e8f05f491461050e578063e985e9c514610524578063f2fde38b1461056d578063f92134c71461058d57600080fd5b8063a22cb4651461048e578063a918ac35146104ae578063b88d4fde146104ce578063c87b56dd146104ee57600080fd5b80638da5cb5b116100d15780638da5cb5b1461042857806391b7f5ed1461044657806395d89b4114610466578063a0712d681461047b57600080fd5b806367243482146103d357806370a08231146103f3578063715018a61461041357600080fd5b8063375a069a116101645780633eb1d7771161013e5780633eb1d7771461035357806342842e0e1461037357806355f804b3146103935780636352211e146103b357600080fd5b8063375a069a146102f15780633b233a61146103115780633ccfd60b1461033e57600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd146102785780631fc895db1461029b57806323b872dd146102d157600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611a39565b6105d0565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b50610211610622565b6040516101f39190611b96565b34801561022a57600080fd5b5061023e610239366004611ae5565b6106b4565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b506102766102713660046119a3565b6106f8565b005b34801561028457600080fd5b50600254600154035b6040519081526020016101f3565b3480156102a757600080fd5b5061028d6102b6366004611801565b6001600160a01b03166000908152600a602052604090205490565b3480156102dd57600080fd5b506102766102ec36600461184f565b6107cb565b3480156102fd57600080fd5b5061027661030c366004611ae5565b6107db565b34801561031d57600080fd5b5061028d61032c366004611801565b600a6020526000908152604090205481565b34801561034a57600080fd5b506102766108ad565b34801561035f57600080fd5b5061027661036e366004611ae5565b6109c2565b34801561037f57600080fd5b5061027661038e36600461184f565b610a31565b34801561039f57600080fd5b506102766103ae366004611a73565b610a4c565b3480156103bf57600080fd5b5061023e6103ce366004611ae5565b610a82565b3480156103df57600080fd5b506102766103ee3660046119cd565b610a8d565b3480156103ff57600080fd5b5061028d61040e366004611801565b610bed565b34801561041f57600080fd5b50610276610c3c565b34801561043457600080fd5b506000546001600160a01b031661023e565b34801561045257600080fd5b50610276610461366004611ae5565b610c72565b34801561047257600080fd5b50610211610ca1565b610276610489366004611ae5565b610cb0565b34801561049a57600080fd5b506102766104a9366004611967565b610edf565b3480156104ba57600080fd5b506102766104c9366004611ae5565b610f75565b3480156104da57600080fd5b506102766104e936600461188b565b610fa4565b3480156104fa57600080fd5b50610211610509366004611ae5565b610fee565b34801561051a57600080fd5b5061028d600b5481565b34801561053057600080fd5b506101e761053f36600461181c565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561057957600080fd5b50610276610588366004611801565b611073565b34801561059957600080fd5b50600c54600d54600e54600f546105b09392919084565b6040805194855260208501939093529183015260608201526080016101f3565b60006301ffc9a760e01b6001600160e01b03198316148061060157506380ac58cd60e01b6001600160e01b03198316145b8061061c5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606003805461063190611c58565b80601f016020809104026020016040519081016040528092919081815260200182805461065d90611c58565b80156106aa5780601f1061067f576101008083540402835291602001916106aa565b820191906000526020600020905b81548152906001019060200180831161068d57829003601f168201915b5050505050905090565b60006106bf8261110b565b6106dc576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061070382611133565b9050806001600160a01b0316836001600160a01b031614156107385760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461076f57610752813361053f565b61076f576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6107d6838383611194565b505050565b6000546001600160a01b0316331461080e5760405162461bcd60e51b815260040161080590611ba9565b60405180910390fd5b60408051608081018252600c548152600d546020820152600e5491810191909152600f546060909101819052816108486002546001540390565b6108529190611bde565b11156108a05760405162461bcd60e51b815260206004820152601b60248201527f496e73756666696369656e74207175616e74697479206c6566742e00000000006044820152606401610805565b6108aa3382611325565b50565b6000546001600160a01b031633146108d75760405162461bcd60e51b815260040161080590611ba9565b6002600954141561092a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610805565b6002600955604051600090339047908381818185875af1925050503d8060008114610971576040519150601f19603f3d011682016040523d82523d6000602084013e610976565b606091505b50509050806109ba5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610805565b506001600955565b6000546001600160a01b031633146109ec5760405162461bcd60e51b815260040161080590611ba9565b60028111610a2c5760405162461bcd60e51b815260206004820152600d60248201526c1d5b98589b19481c995d995c9d609a1b6044820152606401610805565b600c55565b6107d683838360405180602001604052806000815250610fa4565b6000546001600160a01b03163314610a765760405162461bcd60e51b815260040161080590611ba9565b6107d660108383611700565b600061061c82611133565b6000546001600160a01b03163314610ab75760405162461bcd60e51b815260040161080590611ba9565b60408051608081018252600c54808252600d546020830152600e5492820192909252600f54606090910152600114610b265760405162461bcd60e51b81526020600482015260126024820152712ab730b13632903a379030b4b9323937b81760711b6044820152606401610805565b60026009541415610b795760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610805565b600260095560005b83811015610be157610bd1858583818110610b9e57610b9e611cc4565b9050602002016020810190610bb39190611801565b848484818110610bc557610bc5611cc4565b90506020020135611343565b610bda81611c93565b9050610b81565b50506001600955505050565b60006001600160a01b038216610c16576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610c665760405162461bcd60e51b815260040161080590611ba9565b610c70600061140f565b565b6000546001600160a01b03163314610c9c5760405162461bcd60e51b815260040161080590611ba9565b600e55565b60606004805461063190611c58565b60408051608081018252600c54808252600d546020830152600e5492820192909252600f54606090910152600314610d1c5760405162461bcd60e51b815260206004820152600f60248201526e2ab730b13632903a379036b4b73a1760891b6044820152606401610805565b6040805160808082018352600c54808352600d546020808501829052600e54858701819052600f54606080880182905288519687018952948652918501839052958401869052929091018290529192919084610d7b6002546001540390565b610d859190611bde565b1115610dd35760405162461bcd60e51b815260206004820152601b60248201527f496e73756666696369656e74207175616e74697479206c6566742e00000000006044820152606401610805565b336000908152600a60205260409020548190610df0908690611bde565b1115610e335760405162461bcd60e51b81526020600482015260126024820152712cb7ba9036b4b73a103a37b79036bab1b41760711b6044820152606401610805565b6000600b5411610e935734610e488386611bf6565b1115610e8e5760405162461bcd60e51b815260206004820152601560248201527424b739bab33334b1b4b2b73a103130b630b731b29760591b6044820152606401610805565b610eab565b83600b6000828254610ea59190611c15565b90915550505b610eb53385611325565b336000908152600a602052604081208054869290610ed4908490611bde565b909155505050505050565b6001600160a01b038216331415610f095760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314610f9f5760405162461bcd60e51b815260040161080590611ba9565b600b55565b610faf848484611194565b6001600160a01b0383163b15610fe857610fcb8484848461145f565b610fe8576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610ff98261110b565b61101657604051630a14c4b560e41b815260040160405180910390fd5b6000611020611556565b9050805160001415611041576040518060200160405280600081525061106c565b8061104b84611565565b60405160200161105c929190611b2a565b6040516020818303038152906040525b9392505050565b6000546001600160a01b0316331461109d5760405162461bcd60e51b815260040161080590611ba9565b6001600160a01b0381166111025760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610805565b6108aa8161140f565b60006001548210801561061c575050600090815260056020526040902054600160e01b161590565b60008160015481101561117b57600081815260056020526040902054600160e01b8116611179575b8061106c57506000190160008181526005602052604090205461115b565b505b604051636f96cda160e11b815260040160405180910390fd5b600061119f82611133565b9050836001600160a01b0316816001600160a01b0316146111d25760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806111f057506111f0853361053f565b8061120b575033611200846106b4565b6001600160a01b0316145b90508061122b57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661125257604051633a954ecd60e21b815260040160405180910390fd5b600083815260076020908152604080832080546001600160a01b03191690556001600160a01b038881168452600683528184208054600019019055871683528083208054600101905585835260059091529020600160e11b4260a01b8617811790915582166112ef57600183016000818152600560205260409020546112ed5760015481146112ed5760008181526005602052604090208390555b505b82846001600160a01b0316866001600160a01b0316600080516020611d0783398151915260405160405180910390a45050505050565b61133f8282604051806020016040528060008152506115b4565b5050565b6001546001600160a01b03831661136c57604051622e076360e81b815260040160405180910390fd5b8161138a5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526006602090815260408083208054680100000000000000018702019055838352600590915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b03871690600090600080516020611d07833981519152908290a48082106113d55750600155505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611494903390899088908890600401611b59565b602060405180830381600087803b1580156114ae57600080fd5b505af19250505080156114de575060408051601f3d908101601f191682019092526114db91810190611a56565b60015b611539573d80801561150c576040519150601f19603f3d011682016040523d82523d6000602084013e611511565b606091505b508051611531576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60606010805461063190611c58565b604080516080810191829052607f0190826030600a8206018353600a90045b80156115a257600183039250600a81066030018353600a9004611584565b50819003601f19909101908152919050565b6001546001600160a01b0384166115dd57604051622e076360e81b815260040160405180910390fd5b826115fb5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526006602090815260408083208054680100000000000000018902019055848352600590915290204260a01b86176001861460e11b1790558190818501903b156116be575b60405182906001600160a01b03881690600090600080516020611d07833981519152908290a4611687600087848060010195508761145f565b6116a4576040516368d2bf6b60e11b815260040160405180910390fd5b80821061164e5782600154146116b957600080fd5b6116f1565b5b6040516001830192906001600160a01b03881690600090600080516020611d07833981519152908290a48082106116bf575b50600155610fe8600085838684565b82805461170c90611c58565b90600052602060002090601f01602090048101928261172e5760008555611774565b82601f106117475782800160ff19823516178555611774565b82800160010185558215611774579182015b82811115611774578235825591602001919060010190611759565b50611780929150611784565b5090565b5b808211156117805760008155600101611785565b80356001600160a01b03811681146117b057600080fd5b919050565b60008083601f8401126117c757600080fd5b50813567ffffffffffffffff8111156117df57600080fd5b6020830191508360208260051b85010111156117fa57600080fd5b9250929050565b60006020828403121561181357600080fd5b61106c82611799565b6000806040838503121561182f57600080fd5b61183883611799565b915061184660208401611799565b90509250929050565b60008060006060848603121561186457600080fd5b61186d84611799565b925061187b60208501611799565b9150604084013590509250925092565b600080600080608085870312156118a157600080fd5b6118aa85611799565b93506118b860208601611799565b925060408501359150606085013567ffffffffffffffff808211156118dc57600080fd5b818701915087601f8301126118f057600080fd5b81358181111561190257611902611cda565b604051601f8201601f19908116603f0116810190838211818310171561192a5761192a611cda565b816040528281528a602084870101111561194357600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561197a57600080fd5b61198383611799565b91506020830135801515811461199857600080fd5b809150509250929050565b600080604083850312156119b657600080fd5b6119bf83611799565b946020939093013593505050565b600080600080604085870312156119e357600080fd5b843567ffffffffffffffff808211156119fb57600080fd5b611a07888389016117b5565b90965094506020870135915080821115611a2057600080fd5b50611a2d878288016117b5565b95989497509550505050565b600060208284031215611a4b57600080fd5b813561106c81611cf0565b600060208284031215611a6857600080fd5b815161106c81611cf0565b60008060208385031215611a8657600080fd5b823567ffffffffffffffff80821115611a9e57600080fd5b818501915085601f830112611ab257600080fd5b813581811115611ac157600080fd5b866020828501011115611ad357600080fd5b60209290920196919550909350505050565b600060208284031215611af757600080fd5b5035919050565b60008151808452611b16816020860160208601611c2c565b601f01601f19169290920160200192915050565b60008351611b3c818460208801611c2c565b835190830190611b50818360208801611c2c565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b8c90830184611afe565b9695505050505050565b60208152600061106c6020830184611afe565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611bf157611bf1611cae565b500190565b6000816000190483118215151615611c1057611c10611cae565b500290565b600082821015611c2757611c27611cae565b500390565b60005b83811015611c47578181015183820152602001611c2f565b83811115610fe85750506000910152565b600181811c90821680611c6c57607f821691505b60208210811415611c8d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611ca757611ca7611cae565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108aa57600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220edab0f77b8a5719b8e14c768109f2091ae39f1ec0dd3a7aec51028ce3b9e652f64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101c25760003560e01c806367243482116100f7578063a22cb46511610095578063e8f05f4911610064578063e8f05f491461050e578063e985e9c514610524578063f2fde38b1461056d578063f92134c71461058d57600080fd5b8063a22cb4651461048e578063a918ac35146104ae578063b88d4fde146104ce578063c87b56dd146104ee57600080fd5b80638da5cb5b116100d15780638da5cb5b1461042857806391b7f5ed1461044657806395d89b4114610466578063a0712d681461047b57600080fd5b806367243482146103d357806370a08231146103f3578063715018a61461041357600080fd5b8063375a069a116101645780633eb1d7771161013e5780633eb1d7771461035357806342842e0e1461037357806355f804b3146103935780636352211e146103b357600080fd5b8063375a069a146102f15780633b233a61146103115780633ccfd60b1461033e57600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd146102785780631fc895db1461029b57806323b872dd146102d157600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611a39565b6105d0565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b50610211610622565b6040516101f39190611b96565b34801561022a57600080fd5b5061023e610239366004611ae5565b6106b4565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b506102766102713660046119a3565b6106f8565b005b34801561028457600080fd5b50600254600154035b6040519081526020016101f3565b3480156102a757600080fd5b5061028d6102b6366004611801565b6001600160a01b03166000908152600a602052604090205490565b3480156102dd57600080fd5b506102766102ec36600461184f565b6107cb565b3480156102fd57600080fd5b5061027661030c366004611ae5565b6107db565b34801561031d57600080fd5b5061028d61032c366004611801565b600a6020526000908152604090205481565b34801561034a57600080fd5b506102766108ad565b34801561035f57600080fd5b5061027661036e366004611ae5565b6109c2565b34801561037f57600080fd5b5061027661038e36600461184f565b610a31565b34801561039f57600080fd5b506102766103ae366004611a73565b610a4c565b3480156103bf57600080fd5b5061023e6103ce366004611ae5565b610a82565b3480156103df57600080fd5b506102766103ee3660046119cd565b610a8d565b3480156103ff57600080fd5b5061028d61040e366004611801565b610bed565b34801561041f57600080fd5b50610276610c3c565b34801561043457600080fd5b506000546001600160a01b031661023e565b34801561045257600080fd5b50610276610461366004611ae5565b610c72565b34801561047257600080fd5b50610211610ca1565b610276610489366004611ae5565b610cb0565b34801561049a57600080fd5b506102766104a9366004611967565b610edf565b3480156104ba57600080fd5b506102766104c9366004611ae5565b610f75565b3480156104da57600080fd5b506102766104e936600461188b565b610fa4565b3480156104fa57600080fd5b50610211610509366004611ae5565b610fee565b34801561051a57600080fd5b5061028d600b5481565b34801561053057600080fd5b506101e761053f36600461181c565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561057957600080fd5b50610276610588366004611801565b611073565b34801561059957600080fd5b50600c54600d54600e54600f546105b09392919084565b6040805194855260208501939093529183015260608201526080016101f3565b60006301ffc9a760e01b6001600160e01b03198316148061060157506380ac58cd60e01b6001600160e01b03198316145b8061061c5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606003805461063190611c58565b80601f016020809104026020016040519081016040528092919081815260200182805461065d90611c58565b80156106aa5780601f1061067f576101008083540402835291602001916106aa565b820191906000526020600020905b81548152906001019060200180831161068d57829003601f168201915b5050505050905090565b60006106bf8261110b565b6106dc576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061070382611133565b9050806001600160a01b0316836001600160a01b031614156107385760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461076f57610752813361053f565b61076f576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6107d6838383611194565b505050565b6000546001600160a01b0316331461080e5760405162461bcd60e51b815260040161080590611ba9565b60405180910390fd5b60408051608081018252600c548152600d546020820152600e5491810191909152600f546060909101819052816108486002546001540390565b6108529190611bde565b11156108a05760405162461bcd60e51b815260206004820152601b60248201527f496e73756666696369656e74207175616e74697479206c6566742e00000000006044820152606401610805565b6108aa3382611325565b50565b6000546001600160a01b031633146108d75760405162461bcd60e51b815260040161080590611ba9565b6002600954141561092a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610805565b6002600955604051600090339047908381818185875af1925050503d8060008114610971576040519150601f19603f3d011682016040523d82523d6000602084013e610976565b606091505b50509050806109ba5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610805565b506001600955565b6000546001600160a01b031633146109ec5760405162461bcd60e51b815260040161080590611ba9565b60028111610a2c5760405162461bcd60e51b815260206004820152600d60248201526c1d5b98589b19481c995d995c9d609a1b6044820152606401610805565b600c55565b6107d683838360405180602001604052806000815250610fa4565b6000546001600160a01b03163314610a765760405162461bcd60e51b815260040161080590611ba9565b6107d660108383611700565b600061061c82611133565b6000546001600160a01b03163314610ab75760405162461bcd60e51b815260040161080590611ba9565b60408051608081018252600c54808252600d546020830152600e5492820192909252600f54606090910152600114610b265760405162461bcd60e51b81526020600482015260126024820152712ab730b13632903a379030b4b9323937b81760711b6044820152606401610805565b60026009541415610b795760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610805565b600260095560005b83811015610be157610bd1858583818110610b9e57610b9e611cc4565b9050602002016020810190610bb39190611801565b848484818110610bc557610bc5611cc4565b90506020020135611343565b610bda81611c93565b9050610b81565b50506001600955505050565b60006001600160a01b038216610c16576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610c665760405162461bcd60e51b815260040161080590611ba9565b610c70600061140f565b565b6000546001600160a01b03163314610c9c5760405162461bcd60e51b815260040161080590611ba9565b600e55565b60606004805461063190611c58565b60408051608081018252600c54808252600d546020830152600e5492820192909252600f54606090910152600314610d1c5760405162461bcd60e51b815260206004820152600f60248201526e2ab730b13632903a379036b4b73a1760891b6044820152606401610805565b6040805160808082018352600c54808352600d546020808501829052600e54858701819052600f54606080880182905288519687018952948652918501839052958401869052929091018290529192919084610d7b6002546001540390565b610d859190611bde565b1115610dd35760405162461bcd60e51b815260206004820152601b60248201527f496e73756666696369656e74207175616e74697479206c6566742e00000000006044820152606401610805565b336000908152600a60205260409020548190610df0908690611bde565b1115610e335760405162461bcd60e51b81526020600482015260126024820152712cb7ba9036b4b73a103a37b79036bab1b41760711b6044820152606401610805565b6000600b5411610e935734610e488386611bf6565b1115610e8e5760405162461bcd60e51b815260206004820152601560248201527424b739bab33334b1b4b2b73a103130b630b731b29760591b6044820152606401610805565b610eab565b83600b6000828254610ea59190611c15565b90915550505b610eb53385611325565b336000908152600a602052604081208054869290610ed4908490611bde565b909155505050505050565b6001600160a01b038216331415610f095760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314610f9f5760405162461bcd60e51b815260040161080590611ba9565b600b55565b610faf848484611194565b6001600160a01b0383163b15610fe857610fcb8484848461145f565b610fe8576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610ff98261110b565b61101657604051630a14c4b560e41b815260040160405180910390fd5b6000611020611556565b9050805160001415611041576040518060200160405280600081525061106c565b8061104b84611565565b60405160200161105c929190611b2a565b6040516020818303038152906040525b9392505050565b6000546001600160a01b0316331461109d5760405162461bcd60e51b815260040161080590611ba9565b6001600160a01b0381166111025760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610805565b6108aa8161140f565b60006001548210801561061c575050600090815260056020526040902054600160e01b161590565b60008160015481101561117b57600081815260056020526040902054600160e01b8116611179575b8061106c57506000190160008181526005602052604090205461115b565b505b604051636f96cda160e11b815260040160405180910390fd5b600061119f82611133565b9050836001600160a01b0316816001600160a01b0316146111d25760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806111f057506111f0853361053f565b8061120b575033611200846106b4565b6001600160a01b0316145b90508061122b57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661125257604051633a954ecd60e21b815260040160405180910390fd5b600083815260076020908152604080832080546001600160a01b03191690556001600160a01b038881168452600683528184208054600019019055871683528083208054600101905585835260059091529020600160e11b4260a01b8617811790915582166112ef57600183016000818152600560205260409020546112ed5760015481146112ed5760008181526005602052604090208390555b505b82846001600160a01b0316866001600160a01b0316600080516020611d0783398151915260405160405180910390a45050505050565b61133f8282604051806020016040528060008152506115b4565b5050565b6001546001600160a01b03831661136c57604051622e076360e81b815260040160405180910390fd5b8161138a5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526006602090815260408083208054680100000000000000018702019055838352600590915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b03871690600090600080516020611d07833981519152908290a48082106113d55750600155505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611494903390899088908890600401611b59565b602060405180830381600087803b1580156114ae57600080fd5b505af19250505080156114de575060408051601f3d908101601f191682019092526114db91810190611a56565b60015b611539573d80801561150c576040519150601f19603f3d011682016040523d82523d6000602084013e611511565b606091505b508051611531576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60606010805461063190611c58565b604080516080810191829052607f0190826030600a8206018353600a90045b80156115a257600183039250600a81066030018353600a9004611584565b50819003601f19909101908152919050565b6001546001600160a01b0384166115dd57604051622e076360e81b815260040160405180910390fd5b826115fb5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526006602090815260408083208054680100000000000000018902019055848352600590915290204260a01b86176001861460e11b1790558190818501903b156116be575b60405182906001600160a01b03881690600090600080516020611d07833981519152908290a4611687600087848060010195508761145f565b6116a4576040516368d2bf6b60e11b815260040160405180910390fd5b80821061164e5782600154146116b957600080fd5b6116f1565b5b6040516001830192906001600160a01b03881690600090600080516020611d07833981519152908290a48082106116bf575b50600155610fe8600085838684565b82805461170c90611c58565b90600052602060002090601f01602090048101928261172e5760008555611774565b82601f106117475782800160ff19823516178555611774565b82800160010185558215611774579182015b82811115611774578235825591602001919060010190611759565b50611780929150611784565b5090565b5b808211156117805760008155600101611785565b80356001600160a01b03811681146117b057600080fd5b919050565b60008083601f8401126117c757600080fd5b50813567ffffffffffffffff8111156117df57600080fd5b6020830191508360208260051b85010111156117fa57600080fd5b9250929050565b60006020828403121561181357600080fd5b61106c82611799565b6000806040838503121561182f57600080fd5b61183883611799565b915061184660208401611799565b90509250929050565b60008060006060848603121561186457600080fd5b61186d84611799565b925061187b60208501611799565b9150604084013590509250925092565b600080600080608085870312156118a157600080fd5b6118aa85611799565b93506118b860208601611799565b925060408501359150606085013567ffffffffffffffff808211156118dc57600080fd5b818701915087601f8301126118f057600080fd5b81358181111561190257611902611cda565b604051601f8201601f19908116603f0116810190838211818310171561192a5761192a611cda565b816040528281528a602084870101111561194357600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561197a57600080fd5b61198383611799565b91506020830135801515811461199857600080fd5b809150509250929050565b600080604083850312156119b657600080fd5b6119bf83611799565b946020939093013593505050565b600080600080604085870312156119e357600080fd5b843567ffffffffffffffff808211156119fb57600080fd5b611a07888389016117b5565b90965094506020870135915080821115611a2057600080fd5b50611a2d878288016117b5565b95989497509550505050565b600060208284031215611a4b57600080fd5b813561106c81611cf0565b600060208284031215611a6857600080fd5b815161106c81611cf0565b60008060208385031215611a8657600080fd5b823567ffffffffffffffff80821115611a9e57600080fd5b818501915085601f830112611ab257600080fd5b813581811115611ac157600080fd5b866020828501011115611ad357600080fd5b60209290920196919550909350505050565b600060208284031215611af757600080fd5b5035919050565b60008151808452611b16816020860160208601611c2c565b601f01601f19169290920160200192915050565b60008351611b3c818460208801611c2c565b835190830190611b50818360208801611c2c565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b8c90830184611afe565b9695505050505050565b60208152600061106c6020830184611afe565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611bf157611bf1611cae565b500190565b6000816000190483118215151615611c1057611c10611cae565b500290565b600082821015611c2757611c27611cae565b500390565b60005b83811015611c47578181015183820152602001611c2f565b83811115610fe85750506000910152565b600181811c90821680611c6c57607f821691505b60208210811415611c8d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611ca757611ca7611cae565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108aa57600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220edab0f77b8a5719b8e14c768109f2091ae39f1ec0dd3a7aec51028ce3b9e652f64736f6c63430008070033

Deployed Bytecode Sourcemap

45199:3785:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13671:615;;;;;;;;;;-1:-1:-1;13671:615:0;;;;;:::i;:::-;;:::i;:::-;;;6984:14:1;;6977:22;6959:41;;6947:2;6932:18;13671:615:0;;;;;;;;18684:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;20752:204::-;;;;;;;;;;-1:-1:-1;20752:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6282:32:1;;;6264:51;;6252:2;6237:18;20752:204:0;6118:203:1;20212:474:0;;;;;;;;;;-1:-1:-1;20212:474:0;;;;;:::i;:::-;;:::i;:::-;;12725:315;;;;;;;;;;-1:-1:-1;12991:12:0;;12975:13;;:28;12725:315;;;10940:25:1;;;10928:2;10913:18;12725:315:0;10794:177:1;47792:108:0;;;;;;;;;;-1:-1:-1;47792:108:0;;;;;:::i;:::-;-1:-1:-1;;;;;47880:12:0;47853:7;47880:12;;;:5;:12;;;;;;;47792:108;21638:170;;;;;;;;;;-1:-1:-1;21638:170:0;;;;;:::i;:::-;;:::i;46301:236::-;;;;;;;;;;-1:-1:-1;46301:236:0;;;;;:::i;:::-;;:::i;45262:40::-;;;;;;;;;;-1:-1:-1;45262:40:0;;;;;:::i;:::-;;;;;;;;;;;;;;48561:186;;;;;;;;;;;;;:::i;47411:146::-;;;;;;;;;;-1:-1:-1;47411:146:0;;;;;:::i;:::-;;:::i;21879:185::-;;;;;;;;;;-1:-1:-1;21879:185:0;;;;;:::i;:::-;;:::i;48447:106::-;;;;;;;;;;-1:-1:-1;48447:106:0;;;;;:::i;:::-;;:::i;18473:144::-;;;;;;;;;;-1:-1:-1;18473:144:0;;;;;:::i;:::-;;:::i;46050:243::-;;;;;;;;;;-1:-1:-1;46050:243:0;;;;;:::i;:::-;;:::i;14350:224::-;;;;;;;;;;-1:-1:-1;14350:224:0;;;;;:::i;:::-;;:::i;44310:103::-;;;;;;;;;;;;;:::i;43659:87::-;;;;;;;;;;-1:-1:-1;43705:7:0;43732:6;-1:-1:-1;;;;;43732:6:0;43659:87;;47565:109;;;;;;;;;;-1:-1:-1;47565:109:0;;;;;:::i;:::-;;:::i;18853:104::-;;;;;;;;;;;;;:::i;46545:858::-;;;;;;:::i;:::-;;:::i;21028:308::-;;;;;;;;;;-1:-1:-1;21028:308:0;;;;;:::i;:::-;;:::i;47682:102::-;;;;;;;;;;-1:-1:-1;47682:102:0;;;;;:::i;:::-;;:::i;22135:396::-;;;;;;;;;;-1:-1:-1;22135:396:0;;;;;:::i;:::-;;:::i;19028:318::-;;;;;;;;;;-1:-1:-1;19028:318:0;;;;;:::i;:::-;;:::i;45309:32::-;;;;;;;;;;;;;;;;21407:164;;;;;;;;;;-1:-1:-1;21407:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;21528:25:0;;;21504:4;21528:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;21407:164;44568:201;;;;;;;;;;-1:-1:-1;44568:201:0;;;;;:::i;:::-;;:::i;45508:32::-;;;;;;;;;;-1:-1:-1;45508:32:0;;;;;;;;;;;;;;;;;;;11207:25:1;;;11263:2;11248:18;;11241:34;;;;11291:18;;;11284:34;11349:2;11334:18;;11327:34;11194:3;11179:19;45508:32:0;10976:391:1;13671:615:0;13756:4;-1:-1:-1;;;;;;;;;14056:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;14133:25:0;;;14056:102;:179;;;-1:-1:-1;;;;;;;;;;14210:25:0;;;14056:179;14036:199;13671:615;-1:-1:-1;;13671:615:0:o;18684:100::-;18738:13;18771:5;18764:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18684:100;:::o;20752:204::-;20820:7;20845:16;20853:7;20845;:16::i;:::-;20840:64;;20870:34;;-1:-1:-1;;;20870:34:0;;;;;;;;;;;20840:64;-1:-1:-1;20924:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;20924:24:0;;20752:204::o;20212:474::-;20285:13;20317:27;20336:7;20317:18;:27::i;:::-;20285:61;;20367:5;-1:-1:-1;;;;;20361:11:0;:2;-1:-1:-1;;;;;20361:11:0;;20357:48;;;20381:24;;-1:-1:-1;;;20381:24:0;;;;;;;;;;;20357:48;36855:10;-1:-1:-1;;;;;20422:28:0;;;20418:175;;20470:44;20487:5;36855:10;21407:164;:::i;20470:44::-;20465:128;;20542:35;;-1:-1:-1;;;20542:35:0;;;;;;;;;;;20465:128;20605:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;20605:29:0;-1:-1:-1;;;;;20605:29:0;;;;;;;;;20650:28;;20605:24;;20650:28;;;;;;;20274:412;20212:474;;:::o;21638:170::-;21772:28;21782:4;21788:2;21792:7;21772:9;:28::i;:::-;21638:170;;;:::o;46301:236::-;43705:7;43732:6;-1:-1:-1;;;;;43732:6:0;36855:10;43879:23;43871:68;;;;-1:-1:-1;;;43871:68:0;;;;;;;:::i;:::-;;;;;;;;;48160:41;;;;;;;;48189:12;48160:41;;;;;;;;;;;;;;;;;;;;;;;;;;;46404:8:::1;46388:13;12991:12:::0;;12975:13;;:28;;12725:315;46388:13:::1;:24;;;;:::i;:::-;:42;;46366:119;;;::::0;-1:-1:-1;;;46366:119:0;;10640:2:1;46366:119:0::1;::::0;::::1;10622:21:1::0;10679:2;10659:18;;;10652:30;10718:29;10698:18;;;10691:57;10765:18;;46366:119:0::1;10438:351:1::0;46366:119:0::1;46498:31;46508:10;46520:8;46498:9;:31::i;:::-;46301:236:::0;:::o;48561:186::-;43705:7;43732:6;-1:-1:-1;;;;;43732:6:0;36855:10;43879:23;43871:68;;;;-1:-1:-1;;;43871:68:0;;;;;;;:::i;:::-;40757:1:::1;41355:7;;:19;;41347:63;;;::::0;-1:-1:-1;;;41347:63:0;;9933:2:1;41347:63:0::1;::::0;::::1;9915:21:1::0;9972:2;9952:18;;;9945:30;10011:33;9991:18;;;9984:61;10062:18;;41347:63:0::1;9731:355:1::0;41347:63:0::1;40757:1;41488:7;:18:::0;48643:49:::2;::::0;48625:12:::2;::::0;48643:10:::2;::::0;48666:21:::2;::::0;48625:12;48643:49;48625:12;48643:49;48666:21;48643:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48624:68;;;48711:7;48703:36;;;::::0;-1:-1:-1;;;48703:36:0;;9241:2:1;48703:36:0::2;::::0;::::2;9223:21:1::0;9280:2;9260:18;;;9253:30;-1:-1:-1;;;9299:18:1;;;9292:46;9355:18;;48703:36:0::2;9039:340:1::0;48703:36:0::2;-1:-1:-1::0;40713:1:0::1;41667:7;:22:::0;48561:186::o;47411:146::-;43705:7;43732:6;-1:-1:-1;;;;;43732:6:0;36855:10;43879:23;43871:68;;;;-1:-1:-1;;;43871:68:0;;;;;;;:::i;:::-;47492:1:::1;47483:6;:10;47475:36;;;::::0;-1:-1:-1;;;47475:36:0;;7844:2:1;47475:36:0::1;::::0;::::1;7826:21:1::0;7883:2;7863:18;;;7856:30;-1:-1:-1;;;7902:18:1;;;7895:43;7955:18;;47475:36:0::1;7642:337:1::0;47475:36:0::1;47522:12;:27:::0;47411:146::o;21879:185::-;22017:39;22034:4;22040:2;22044:7;22017:39;;;;;;;;;;;;:16;:39::i;48447:106::-;43705:7;43732:6;-1:-1:-1;;;;;43732:6:0;36855:10;43879:23;43871:68;;;;-1:-1:-1;;;43871:68:0;;;;;;;:::i;:::-;48522:23:::1;:13;48538:7:::0;;48522:23:::1;:::i;18473:144::-:0;18537:7;18580:27;18599:7;18580:18;:27::i;46050:243::-;43705:7;43732:6;-1:-1:-1;;;;;43732:6:0;36855:10;43879:23;43871:68;;;;-1:-1:-1;;;43871:68:0;;;;;;;:::i;:::-;47968:41;;;;;;;;47997:12;47968:41;;;;;;;;;;;;;;;;;;;;;;;;;;48832:1:::1;48818:15;48810:46;;;::::0;-1:-1:-1;;;48810:46:0;;10293:2:1;48810:46:0::1;::::0;::::1;10275:21:1::0;10332:2;10312:18;;;10305:30;-1:-1:-1;;;10351:18:1;;;10344:48;10409:18;;48810:46:0::1;10091:342:1::0;48810:46:0::1;40757:1:::2;41355:7;;:19;;41347:63;;;::::0;-1:-1:-1;;;41347:63:0;;9933:2:1;41347:63:0::2;::::0;::::2;9915:21:1::0;9972:2;9952:18;;;9945:30;10011:33;9991:18;;;9984:61;10062:18;;41347:63:0::2;9731:355:1::0;41347:63:0::2;40757:1;41488:7;:18:::0;46189:9:::3;46184:102;46200:20:::0;;::::3;46184:102;;;46242:32;46248:9;;46258:1;46248:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;46262:8;;46271:1;46262:11;;;;;;;:::i;:::-;;;;;;;46242:5;:32::i;:::-;46222:3;::::0;::::3;:::i;:::-;;;46184:102;;;-1:-1:-1::0;;40713:1:0::2;41667:7;:22:::0;-1:-1:-1;;;46050:243:0:o;14350:224::-;14414:7;-1:-1:-1;;;;;14438:19:0;;14434:60;;14466:28;;-1:-1:-1;;;14466:28:0;;;;;;;;;;;14434:60;-1:-1:-1;;;;;;14512:25:0;;;;;:18;:25;;;;;;9689:13;14512:54;;14350:224::o;44310:103::-;43705:7;43732:6;-1:-1:-1;;;;;43732:6:0;36855:10;43879:23;43871:68;;;;-1:-1:-1;;;43871:68:0;;;;;;;:::i;:::-;44375:30:::1;44402:1;44375:18;:30::i;:::-;44310:103::o:0;47565:109::-;43705:7;43732:6;-1:-1:-1;;;;;43732:6:0;36855:10;43879:23;43871:68;;;;-1:-1:-1;;;43871:68:0;;;;;;;:::i;:::-;47629:28;:37;47565:109::o;18853:104::-;18909:13;18942:7;18935:14;;;;;:::i;46545:858::-;47968:41;;;;;;;;47997:12;47968:41;;;;;;;;;;;;;;;;;;;;;;;;;;48940:1;48926:15;48918:43;;;;-1:-1:-1;;;48918:43:0;;8897:2:1;48918:43:0;;;8879:21:1;8936:2;8916:18;;;8909:30;-1:-1:-1;;;8955:18:1;;;8948:45;9010:18;;48918:43:0;8695:339:1;48918:43:0;46617:41:::1;::::0;;::::1;::::0;;::::1;::::0;;46646:12:::1;46617:41:::0;;;;;;::::1;::::0;;::::1;::::0;;;;;;;;;;;;;;;;;;;;48160;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46617;;;;46849:8:::1;46833:13;12991:12:::0;;12975:13;;:28;;12725:315;46833:13:::1;:24;;;;:::i;:::-;:42;;46811:119;;;::::0;-1:-1:-1;;;46811:119:0;;10640:2:1;46811:119:0::1;::::0;::::1;10622:21:1::0;10679:2;10659:18;;;10652:30;10718:29;10698:18;;;10691:57;10765:18;;46811:119:0::1;10438:351:1::0;46811:119:0::1;46979:10;47853:7:::0;47880:12;;;:5;:12;;;;;;47005:17;;46963:38:::1;::::0;46993:8;;46963:38:::1;:::i;:::-;:59;;46941:127;;;::::0;-1:-1:-1;;;46941:127:0;;9586:2:1;46941:127:0::1;::::0;::::1;9568:21:1::0;9625:2;9605:18;;;9598:30;-1:-1:-1;;;9644:18:1;;;9637:48;9702:18;;46941:127:0::1;9384:342:1::0;46941:127:0::1;47102:1;47085:13;;:18;47081:231;;47176:9;47146:26;47157:15:::0;47146:8;:26:::1;:::i;:::-;:39;;47120:122;;;::::0;-1:-1:-1;;;47120:122:0;;8186:2:1;47120:122:0::1;::::0;::::1;8168:21:1::0;8225:2;8205:18;;;8198:30;-1:-1:-1;;;8244:18:1;;;8237:51;8305:18;;47120:122:0::1;7984:345:1::0;47120:122:0::1;47081:231;;;47292:8;47275:13;;:25;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;47081:231:0::1;47324:31;47334:10;47346:8;47324:9;:31::i;:::-;47372:10;47366:17;::::0;;;:5:::1;:17;::::0;;;;:29;;47387:8;;47366:17;:29:::1;::::0;47387:8;;47366:29:::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;46545:858:0:o;21028:308::-;-1:-1:-1;;;;;21127:31:0;;36855:10;21127:31;21123:61;;;21167:17;;-1:-1:-1;;;21167:17:0;;;;;;;;;;;21123:61;36855:10;21197:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;21197:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;21197:60:0;;;;;;;;;;21273:55;;6959:41:1;;;21197:49:0;;36855:10;21273:55;;6932:18:1;21273:55:0;;;;;;;21028:308;;:::o;47682:102::-;43705:7;43732:6;-1:-1:-1;;;;;43732:6:0;36855:10;43879:23;43871:68;;;;-1:-1:-1;;;43871:68:0;;;;;;;:::i;:::-;47754:13:::1;:22:::0;47682:102::o;22135:396::-;22302:28;22312:4;22318:2;22322:7;22302:9;:28::i;:::-;-1:-1:-1;;;;;22345:14:0;;;:19;22341:183;;22384:56;22415:4;22421:2;22425:7;22434:5;22384:30;:56::i;:::-;22379:145;;22468:40;;-1:-1:-1;;;22468:40:0;;;;;;;;;;;22379:145;22135:396;;;;:::o;19028:318::-;19101:13;19132:16;19140:7;19132;:16::i;:::-;19127:59;;19157:29;;-1:-1:-1;;;19157:29:0;;;;;;;;;;;19127:59;19199:21;19223:10;:8;:10::i;:::-;19199:34;;19257:7;19251:21;19276:1;19251:26;;:87;;;;;;;;;;;;;;;;;19304:7;19313:18;19323:7;19313:9;:18::i;:::-;19287:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;19251:87;19244:94;19028:318;-1:-1:-1;;;19028:318:0:o;44568:201::-;43705:7;43732:6;-1:-1:-1;;;;;43732:6:0;36855:10;43879:23;43871:68;;;;-1:-1:-1;;;43871:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44657:22:0;::::1;44649:73;;;::::0;-1:-1:-1;;;44649:73:0;;7437:2:1;44649:73:0::1;::::0;::::1;7419:21:1::0;7476:2;7456:18;;;7449:30;7515:34;7495:18;;;7488:62;-1:-1:-1;;;7566:18:1;;;7559:36;7612:19;;44649:73:0::1;7235:402:1::0;44649:73:0::1;44733:28;44752:8;44733:18;:28::i;22786:273::-:0;22843:4;22933:13;;22923:7;:23;22880:152;;;;-1:-1:-1;;22984:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;22984:43:0;:48;;22786:273::o;15988:1129::-;16055:7;16090;16192:13;;16185:4;:20;16181:869;;;16230:14;16247:23;;;:17;:23;;;;;;-1:-1:-1;;;16336:23:0;;16332:699;;16855:113;16862:11;16855:113;;-1:-1:-1;;;16933:6:0;16915:25;;;;:17;:25;;;;;;16855:113;;16332:699;16207:843;16181:869;17078:31;;-1:-1:-1;;;17078:31:0;;;;;;;;;;;28025:2515;28140:27;28170;28189:7;28170:18;:27::i;:::-;28140:57;;28255:4;-1:-1:-1;;;;;28214:45:0;28230:19;-1:-1:-1;;;;;28214:45:0;;28210:86;;28268:28;;-1:-1:-1;;;28268:28:0;;;;;;;;;;;28210:86;28309:22;36855:10;-1:-1:-1;;;;;28335:27:0;;;;:87;;-1:-1:-1;28379:43:0;28396:4;36855:10;21407:164;:::i;28379:43::-;28335:147;;;-1:-1:-1;36855:10:0;28439:20;28451:7;28439:11;:20::i;:::-;-1:-1:-1;;;;;28439:43:0;;28335:147;28309:174;;28501:17;28496:66;;28527:35;;-1:-1:-1;;;28527:35:0;;;;;;;;;;;28496:66;-1:-1:-1;;;;;28577:16:0;;28573:52;;28602:23;;-1:-1:-1;;;28602:23:0;;;;;;;;;;;28573:52;28754:24;;;;:15;:24;;;;;;;;28747:31;;-1:-1:-1;;;;;;28747:31:0;;;-1:-1:-1;;;;;29146:24:0;;;;;:18;:24;;;;;29144:26;;-1:-1:-1;;29144:26:0;;;29215:22;;;;;;;29213:24;;-1:-1:-1;29213:24:0;;;29508:26;;;:17;:26;;;;;-1:-1:-1;;;29596:15:0;10343:3;29596:41;29554:84;;:128;;29508:174;;;29802:46;;29798:626;;29906:1;29896:11;;29874:19;30029:30;;;:17;:30;;;;;;30025:384;;30167:13;;30152:11;:28;30148:242;;30314:30;;;;:17;:30;;;;;:52;;;30148:242;29855:569;29798:626;30471:7;30467:2;-1:-1:-1;;;;;30452:27:0;30461:4;-1:-1:-1;;;;;30452:27:0;-1:-1:-1;;;;;;;;;;;30452:27:0;;;;;;;;;28129:2411;;28025:2515;;;:::o;23143:104::-;23212:27;23222:2;23226:8;23212:27;;;;;;;;;;;;:9;:27::i;:::-;23143:104;;:::o;26115:1656::-;26203:13;;-1:-1:-1;;;;;26231:16:0;;26227:48;;26256:19;;-1:-1:-1;;;26256:19:0;;;;;;;;;;;26227:48;26290:13;26286:44;;26312:18;;-1:-1:-1;;;26312:18:0;;;;;;;;;;;26286:44;-1:-1:-1;;;;;26879:22:0;;;;;;:18;:22;;;;9826:2;26879:22;;;:70;;26917:31;26905:44;;26879:70;;;27192:31;;;:17;:31;;;;;27285:15;10343:3;27285:41;27243:84;;-1:-1:-1;27363:13:0;;10606:3;27348:56;27243:162;27192:213;;:31;27486:23;;;27526:111;27553:40;;27578:14;;;;;-1:-1:-1;;;;;27553:40:0;;;27570:1;;-1:-1:-1;;;;;;;;;;;27553:40:0;27570:1;;27553:40;27632:3;27617:12;:18;27526:111;;-1:-1:-1;27653:13:0;:28;21638:170;;;:::o;44929:191::-;45003:16;45022:6;;-1:-1:-1;;;;;45039:17:0;;;-1:-1:-1;;;;;;45039:17:0;;;;;;45072:40;;45022:6;;;;;;;45072:40;;45003:16;45072:40;44992:128;44929:191;:::o;34237:716::-;34421:88;;-1:-1:-1;;;34421:88:0;;34400:4;;-1:-1:-1;;;;;34421:45:0;;;;;:88;;36855:10;;34488:4;;34494:7;;34503:5;;34421:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34421:88:0;;;;;;;;-1:-1:-1;;34421:88:0;;;;;;;;;;;;:::i;:::-;;;34417:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34704:13:0;;34700:235;;34750:40;;-1:-1:-1;;;34750:40:0;;;;;;;;;;;34700:235;34893:6;34887:13;34878:6;34874:2;34870:15;34863:38;34417:529;-1:-1:-1;;;;;;34580:64:0;-1:-1:-1;;;34580:64:0;;-1:-1:-1;34237:716:0;;;;;;:::o;48325:114::-;48385:13;48418;48411:20;;;;;:::i;36979:1959::-;37450:4;37444:11;;37457:3;37440:21;;37535:17;;;;38232:11;;;38111:5;38364:2;38378;38368:13;;38360:22;38232:11;38347:36;38419:2;38409:13;;38002:682;38438:4;38002:682;;;38613:1;38608:3;38604:11;38597:18;;38664:2;38658:4;38654:13;38650:2;38646:22;38641:3;38633:36;38534:2;38524:13;;38002:682;;;-1:-1:-1;38726:13:0;;;-1:-1:-1;;38841:12:0;;;38901:19;;;38841:12;36979:1959;-1:-1:-1;36979:1959:0:o;23620:2236::-;23766:13;;-1:-1:-1;;;;;23794:16:0;;23790:48;;23819:19;;-1:-1:-1;;;23819:19:0;;;;;;;;;;;23790:48;23853:13;23849:44;;23875:18;;-1:-1:-1;;;23875:18:0;;;;;;;;;;;23849:44;-1:-1:-1;;;;;24442:22:0;;;;;;:18;:22;;;;9826:2;24442:22;;;:70;;24480:31;24468:44;;24442:70;;;24755:31;;;:17;:31;;;;;24848:15;10343:3;24848:41;24806:84;;-1:-1:-1;24926:13:0;;10606:3;24911:56;24806:162;24755:213;;:31;;25049:23;;;;25093:14;:19;25089:635;;25133:313;25164:38;;25189:12;;-1:-1:-1;;;;;25164:38:0;;;25181:1;;-1:-1:-1;;;;;;;;;;;25164:38:0;25181:1;;25164:38;25230:69;25269:1;25273:2;25277:14;;;;;;25293:5;25230:30;:69::i;:::-;25225:174;;25335:40;;-1:-1:-1;;;25335:40:0;;;;;;;;;;;25225:174;25441:3;25426:12;:18;25133:313;;25527:12;25510:13;;:29;25506:43;;25541:8;;;25506:43;25089:635;;;25590:119;25621:40;;25646:14;;;;;-1:-1:-1;;;;;25621:40:0;;;25638:1;;-1:-1:-1;;;;;;;;;;;25621:40:0;25638:1;;25621:40;25704:3;25689:12;:18;25590:119;;25089:635;-1:-1:-1;25738:13:0;:28;25788:60;25817:1;25821:2;25825:12;25839:8;25788:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:367::-;255:8;265:6;319:3;312:4;304:6;300:17;296:27;286:55;;337:1;334;327:12;286:55;-1:-1:-1;360:20:1;;403:18;392:30;;389:50;;;435:1;432;425:12;389:50;472:4;464:6;460:17;448:29;;532:3;525:4;515:6;512:1;508:14;500:6;496:27;492:38;489:47;486:67;;;549:1;546;539:12;486:67;192:367;;;;;:::o;564:186::-;623:6;676:2;664:9;655:7;651:23;647:32;644:52;;;692:1;689;682:12;644:52;715:29;734:9;715:29;:::i;755:260::-;823:6;831;884:2;872:9;863:7;859:23;855:32;852:52;;;900:1;897;890:12;852:52;923:29;942:9;923:29;:::i;:::-;913:39;;971:38;1005:2;994:9;990:18;971:38;:::i;:::-;961:48;;755:260;;;;;:::o;1020:328::-;1097:6;1105;1113;1166:2;1154:9;1145:7;1141:23;1137:32;1134:52;;;1182:1;1179;1172:12;1134:52;1205:29;1224:9;1205:29;:::i;:::-;1195:39;;1253:38;1287:2;1276:9;1272:18;1253:38;:::i;:::-;1243:48;;1338:2;1327:9;1323:18;1310:32;1300:42;;1020:328;;;;;:::o;1353:1138::-;1448:6;1456;1464;1472;1525:3;1513:9;1504:7;1500:23;1496:33;1493:53;;;1542:1;1539;1532:12;1493:53;1565:29;1584:9;1565:29;:::i;:::-;1555:39;;1613:38;1647:2;1636:9;1632:18;1613:38;:::i;:::-;1603:48;;1698:2;1687:9;1683:18;1670:32;1660:42;;1753:2;1742:9;1738:18;1725:32;1776:18;1817:2;1809:6;1806:14;1803:34;;;1833:1;1830;1823:12;1803:34;1871:6;1860:9;1856:22;1846:32;;1916:7;1909:4;1905:2;1901:13;1897:27;1887:55;;1938:1;1935;1928:12;1887:55;1974:2;1961:16;1996:2;1992;1989:10;1986:36;;;2002:18;;:::i;:::-;2077:2;2071:9;2045:2;2131:13;;-1:-1:-1;;2127:22:1;;;2151:2;2123:31;2119:40;2107:53;;;2175:18;;;2195:22;;;2172:46;2169:72;;;2221:18;;:::i;:::-;2261:10;2257:2;2250:22;2296:2;2288:6;2281:18;2336:7;2331:2;2326;2322;2318:11;2314:20;2311:33;2308:53;;;2357:1;2354;2347:12;2308:53;2413:2;2408;2404;2400:11;2395:2;2387:6;2383:15;2370:46;2458:1;2453:2;2448;2440:6;2436:15;2432:24;2425:35;2479:6;2469:16;;;;;;;1353:1138;;;;;;;:::o;2496:347::-;2561:6;2569;2622:2;2610:9;2601:7;2597:23;2593:32;2590:52;;;2638:1;2635;2628:12;2590:52;2661:29;2680:9;2661:29;:::i;:::-;2651:39;;2740:2;2729:9;2725:18;2712:32;2787:5;2780:13;2773:21;2766:5;2763:32;2753:60;;2809:1;2806;2799:12;2753:60;2832:5;2822:15;;;2496:347;;;;;:::o;2848:254::-;2916:6;2924;2977:2;2965:9;2956:7;2952:23;2948:32;2945:52;;;2993:1;2990;2983:12;2945:52;3016:29;3035:9;3016:29;:::i;:::-;3006:39;3092:2;3077:18;;;;3064:32;;-1:-1:-1;;;2848:254:1:o;3107:773::-;3229:6;3237;3245;3253;3306:2;3294:9;3285:7;3281:23;3277:32;3274:52;;;3322:1;3319;3312:12;3274:52;3362:9;3349:23;3391:18;3432:2;3424:6;3421:14;3418:34;;;3448:1;3445;3438:12;3418:34;3487:70;3549:7;3540:6;3529:9;3525:22;3487:70;:::i;:::-;3576:8;;-1:-1:-1;3461:96:1;-1:-1:-1;3664:2:1;3649:18;;3636:32;;-1:-1:-1;3680:16:1;;;3677:36;;;3709:1;3706;3699:12;3677:36;;3748:72;3812:7;3801:8;3790:9;3786:24;3748:72;:::i;:::-;3107:773;;;;-1:-1:-1;3839:8:1;-1:-1:-1;;;;3107:773:1:o;3885:245::-;3943:6;3996:2;3984:9;3975:7;3971:23;3967:32;3964:52;;;4012:1;4009;4002:12;3964:52;4051:9;4038:23;4070:30;4094:5;4070:30;:::i;4135:249::-;4204:6;4257:2;4245:9;4236:7;4232:23;4228:32;4225:52;;;4273:1;4270;4263:12;4225:52;4305:9;4299:16;4324:30;4348:5;4324:30;:::i;4389:592::-;4460:6;4468;4521:2;4509:9;4500:7;4496:23;4492:32;4489:52;;;4537:1;4534;4527:12;4489:52;4577:9;4564:23;4606:18;4647:2;4639:6;4636:14;4633:34;;;4663:1;4660;4653:12;4633:34;4701:6;4690:9;4686:22;4676:32;;4746:7;4739:4;4735:2;4731:13;4727:27;4717:55;;4768:1;4765;4758:12;4717:55;4808:2;4795:16;4834:2;4826:6;4823:14;4820:34;;;4850:1;4847;4840:12;4820:34;4895:7;4890:2;4881:6;4877:2;4873:15;4869:24;4866:37;4863:57;;;4916:1;4913;4906:12;4863:57;4947:2;4939:11;;;;;4969:6;;-1:-1:-1;4389:592:1;;-1:-1:-1;;;;4389:592:1:o;4986:180::-;5045:6;5098:2;5086:9;5077:7;5073:23;5069:32;5066:52;;;5114:1;5111;5104:12;5066:52;-1:-1:-1;5137:23:1;;4986:180;-1:-1:-1;4986:180:1:o;5171:257::-;5212:3;5250:5;5244:12;5277:6;5272:3;5265:19;5293:63;5349:6;5342:4;5337:3;5333:14;5326:4;5319:5;5315:16;5293:63;:::i;:::-;5410:2;5389:15;-1:-1:-1;;5385:29:1;5376:39;;;;5417:4;5372:50;;5171:257;-1:-1:-1;;5171:257:1:o;5433:470::-;5612:3;5650:6;5644:13;5666:53;5712:6;5707:3;5700:4;5692:6;5688:17;5666:53;:::i;:::-;5782:13;;5741:16;;;;5804:57;5782:13;5741:16;5838:4;5826:17;;5804:57;:::i;:::-;5877:20;;5433:470;-1:-1:-1;;;;5433:470:1:o;6326:488::-;-1:-1:-1;;;;;6595:15:1;;;6577:34;;6647:15;;6642:2;6627:18;;6620:43;6694:2;6679:18;;6672:34;;;6742:3;6737:2;6722:18;;6715:31;;;6520:4;;6763:45;;6788:19;;6780:6;6763:45;:::i;:::-;6755:53;6326:488;-1:-1:-1;;;;;;6326:488:1:o;7011:219::-;7160:2;7149:9;7142:21;7123:4;7180:44;7220:2;7209:9;7205:18;7197:6;7180:44;:::i;8334:356::-;8536:2;8518:21;;;8555:18;;;8548:30;8614:34;8609:2;8594:18;;8587:62;8681:2;8666:18;;8334:356::o;11372:128::-;11412:3;11443:1;11439:6;11436:1;11433:13;11430:39;;;11449:18;;:::i;:::-;-1:-1:-1;11485:9:1;;11372:128::o;11505:168::-;11545:7;11611:1;11607;11603:6;11599:14;11596:1;11593:21;11588:1;11581:9;11574:17;11570:45;11567:71;;;11618:18;;:::i;:::-;-1:-1:-1;11658:9:1;;11505:168::o;11678:125::-;11718:4;11746:1;11743;11740:8;11737:34;;;11751:18;;:::i;:::-;-1:-1:-1;11788:9:1;;11678:125::o;11808:258::-;11880:1;11890:113;11904:6;11901:1;11898:13;11890:113;;;11980:11;;;11974:18;11961:11;;;11954:39;11926:2;11919:10;11890:113;;;12021:6;12018:1;12015:13;12012:48;;;-1:-1:-1;;12056:1:1;12038:16;;12031:27;11808:258::o;12071:380::-;12150:1;12146:12;;;;12193;;;12214:61;;12268:4;12260:6;12256:17;12246:27;;12214:61;12321:2;12313:6;12310:14;12290:18;12287:38;12284:161;;;12367:10;12362:3;12358:20;12355:1;12348:31;12402:4;12399:1;12392:15;12430:4;12427:1;12420:15;12284:161;;12071:380;;;:::o;12456:135::-;12495:3;-1:-1:-1;;12516:17:1;;12513:43;;;12536:18;;:::i;:::-;-1:-1:-1;12583:1:1;12572:13;;12456:135::o;12596:127::-;12657:10;12652:3;12648:20;12645:1;12638:31;12688:4;12685:1;12678:15;12712:4;12709:1;12702:15;12728:127;12789:10;12784:3;12780:20;12777:1;12770:31;12820:4;12817:1;12810:15;12844:4;12841:1;12834:15;12860:127;12921:10;12916:3;12912:20;12909:1;12902:31;12952:4;12949:1;12942:15;12976:4;12973:1;12966:15;12992:131;-1:-1:-1;;;;;;13066:32:1;;13056:43;;13046:71;;13113:1;13110;13103:12

Swarm Source

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