AVAX Price: $50.17 (+0.74%)
 

Overview

Max Total Supply

3,501 EXPERIMENT

Holders

2,393

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
AVAXEXPERIMENTFF0339

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at snowscan.xyz on 2023-03-25
*/

// SPDX-License-Identifier: MIT
// Basic ERC721A 

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

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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 0x80 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: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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


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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

interface IERC2981Royalties {
	function royaltyInfo(uint256 tokenID, uint256 value) external view returns(address receiver, uint256 royaltyAmount);
}

pragma solidity ^0.8.0;

// Change Name
contract AVAXEXPERIMENTFF0339 is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;

    // Change URI
    string public baseURI = "ipfs://bafybeifd3rgxpqlbf5mubg3jficapoisi4ktlde5wqkzwkz3bndgm7e5me/";
    string public baseExtension = ".json";

    bool public paused = false;
    bool public onlyAllowList = false;

    // Change Supply
    uint256 public constant MAX_SUPPLY = 12000;
    // Change Cost
    uint256 public cost = 0.0144 ether;
    // Change Royalty Amount (number divided by 100 is the percentage)
    uint256 public royalty = 2000; // (1000 / 100 = 20% royalty)
    // Change Max Per TX
    uint256 public maxPerTx = 10;
    // Change Max Per Wallet
    uint256 public maxPerWallet = 100;

    mapping(address => uint8) public allowList;
    mapping(address => uint256) public addressMinted;

    // Change Name and Token Symbol
    constructor() ERC721A("Avax EXPERIMENT #FF0339", "EXPERIMENT") {
        // Mint the first token to deployer address
        
        _mint(msg.sender, 2500);
    }

    function mint(uint256 amount) public payable nonReentrant {
        require(totalSupply() + amount <= MAX_SUPPLY, "Amount exceeds supply!");

        if (msg.sender != owner()) {
            if (onlyAllowList) {
                require(allowList[msg.sender] == 1, "You aren't on Allow List!");
            }    

            require(amount <= maxPerTx &&
                    addressMinted[msg.sender] + amount <= maxPerWallet, "You can't mint that many!");

            require(!paused, "Minting is paused!");
            require(msg.value == cost * amount, "Insufficient funds!");
        }

        (bool success, ) = payable(owner()).call{ value: msg.value }("");
		require(success, "Failed to transfer funds to owner!");

        addressMinted[msg.sender] += amount;
        _mint(msg.sender, amount);  
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
        
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), baseExtension)) : '';
    }

    function updateCost(uint256 _newAmount) public onlyOwner {
        cost = _newAmount;
    }

    function updateRoyalty(uint256 _newAmount) public onlyOwner {
        royalty = _newAmount;
    }

    function flipPaused() public onlyOwner {
        paused = !paused;
    }

    function flipAllowList() public onlyOwner {
        onlyAllowList = !onlyAllowList;
    }

    function updateBaseURI(string calldata _newURI) public onlyOwner {
        baseURI = _newURI;
    }

    function updateBaseExtension(string memory _newExtension) public onlyOwner {
        baseExtension = _newExtension;
    }

    function addAllowList(address[] calldata _addresses) public onlyOwner {
        for (uint256 i = 0; i < _addresses.length; i++) {
            allowList[_addresses[i]] = 1;
        }
    }

    //overrides
    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    //royalties
    function supportsInterface(bytes4 interfaceID) public view override returns(bool) {
        return interfaceID == type(IERC2981Royalties).interfaceId || super.supportsInterface(interfaceID);
    }

    function royaltyInfo(uint256, uint256 value) external view returns(address, uint256) {
        return (owner() , value * royalty / 10000);
    } 

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"addAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowList","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royalty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"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":[{"internalType":"string","name":"_newExtension","type":"string"}],"name":"updateBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"updateBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"updateCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"updateRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"}]

61010060405260436080818152906200213560a03980516200002a91600a9160209091019062000269565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200005991600b9162000269565b50600c805461ffff19169055663328b944c40000600d556107d0600e55600a600f5560646010553480156200008d57600080fd5b50604080518082018252601781527f41766178204558504552494d454e54202346463033333900000000000000000060208083019182528351808501909452600a8452691156141154925351539560b21b908401528151919291620000f59160029162000269565b5080516200010b90600390602084019062000269565b50506001600055506200011e3362000137565b600160095562000131336109c462000189565b6200034b565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000805490829003620001af5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b17831790558284019083908390600080516020620021788339815191528180a4600183015b8181146200023e578083600060008051602062002178833981519152600080a460010162000215565b50816000036200026057604051622e076360e81b815260040160405180910390fd5b60005550505050565b82805462000277906200030f565b90600052602060002090601f0160209004810192826200029b5760008555620002e6565b82601f10620002b657805160ff1916838001178555620002e6565b82800160010185558215620002e6579182015b82811115620002e6578251825591602001919060010190620002c9565b50620002f4929150620002f8565b5090565b5b80821115620002f45760008155600101620002f9565b600181811c908216806200032457607f821691505b6020821081036200034557634e487b7160e01b600052602260045260246000fd5b50919050565b611dda806200035b6000396000f3fe60806040526004361061021a5760003560e01c8063453c23101161012357806395d89b41116100ab578063c87b56dd1161006f578063c87b56dd1461061c578063e985e9c51461063c578063f2fde38b14610685578063f968adbe146106a5578063fa30297e146106bb57600080fd5b806395d89b411461059f578063a0712d68146105b4578063a22cb465146105c7578063b88d4fde146105e7578063c66828621461060757600080fd5b806370a08231116100f257806370a082311461050c578063715018a61461052c5780638da5cb5b146105415780638fffd8b51461055f578063931688cb1461057f57600080fd5b8063453c2310146104a75780635c975abb146104bd5780636352211e146104d75780636c0360eb146104f757600080fd5b8063252e3ab9116101a65780632a55205a116101755780632a55205a146103fd5780633232c10b1461043c57806332cb6b0c1461045c578063333171bb1461047257806342842e0e1461048757600080fd5b8063252e3ab914610366578063255323ff146103855780632848aeaf146103a557806329ee566c146103e757600080fd5b806313faede6116101ed57806313faede6146102d057806318160ddd146102f457806320843e871461031157806323b872dd1461032657806323c5a0881461034657600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a36600461177e565b6106e8565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b50610269610713565b60405161024b91906117f3565b34801561028257600080fd5b50610296610291366004611806565b6107a5565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c936600461183b565b6107e9565b005b3480156102dc57600080fd5b506102e6600d5481565b60405190815260200161024b565b34801561030057600080fd5b5060015460005403600019016102e6565b34801561031d57600080fd5b506102ce610889565b34801561033257600080fd5b506102ce610341366004611865565b6108ae565b34801561035257600080fd5b506102ce610361366004611806565b610a46565b34801561037257600080fd5b50600c5461023f90610100900460ff1681565b34801561039157600080fd5b506102ce6103a03660046118a1565b610a53565b3480156103b157600080fd5b506103d56103c0366004611916565b60116020526000908152604090205460ff1681565b60405160ff909116815260200161024b565b3480156103f357600080fd5b506102e6600e5481565b34801561040957600080fd5b5061041d610418366004611931565b610ad5565b604080516001600160a01b03909316835260208301919091520161024b565b34801561044857600080fd5b506102ce6104573660046119df565b610b10565b34801561046857600080fd5b506102e6612ee081565b34801561047e57600080fd5b506102ce610b2f565b34801561049357600080fd5b506102ce6104a2366004611865565b610b4b565b3480156104b357600080fd5b506102e660105481565b3480156104c957600080fd5b50600c5461023f9060ff1681565b3480156104e357600080fd5b506102966104f2366004611806565b610b66565b34801561050357600080fd5b50610269610b71565b34801561051857600080fd5b506102e6610527366004611916565b610bff565b34801561053857600080fd5b506102ce610c4e565b34801561054d57600080fd5b506008546001600160a01b0316610296565b34801561056b57600080fd5b506102ce61057a366004611806565b610c62565b34801561058b57600080fd5b506102ce61059a366004611a28565b610c6f565b3480156105ab57600080fd5b50610269610c83565b6102ce6105c2366004611806565b610c92565b3480156105d357600080fd5b506102ce6105e2366004611a88565b610fdf565b3480156105f357600080fd5b506102ce610602366004611ac4565b611074565b34801561061357600080fd5b506102696110be565b34801561062857600080fd5b50610269610637366004611806565b6110cb565b34801561064857600080fd5b5061023f610657366004611b40565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561069157600080fd5b506102ce6106a0366004611916565b611152565b3480156106b157600080fd5b506102e6600f5481565b3480156106c757600080fd5b506102e66106d6366004611916565b60126020526000908152604090205481565b60006001600160e01b0319821663152a902d60e11b148061070d575061070d826111cb565b92915050565b60606002805461072290611b73565b80601f016020809104026020016040519081016040528092919081815260200182805461074e90611b73565b801561079b5780601f106107705761010080835404028352916020019161079b565b820191906000526020600020905b81548152906001019060200180831161077e57829003601f168201915b5050505050905090565b60006107b082611219565b6107cd576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107f482610b66565b9050336001600160a01b0382161461082d576108108133610657565b61082d576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61089161124e565b600c805461ff001981166101009182900460ff1615909102179055565b60006108b9826112a8565b9050836001600160a01b0316816001600160a01b0316146108ec5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176109395761091c8633610657565b61093957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661096057604051633a954ecd60e21b815260040160405180910390fd5b801561096b57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036109fd576001840160008181526004602052604081205490036109fb5760005481146109fb5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610a4e61124e565b600d55565b610a5b61124e565b60005b81811015610ad057600160116000858585818110610a7e57610a7e611bad565b9050602002016020810190610a939190611916565b6001600160a01b031681526020810191909152604001600020805460ff191660ff9290921691909117905580610ac881611bd9565b915050610a5e565b505050565b600080610aea6008546001600160a01b031690565b612710600e5485610afb9190611bf2565b610b059190611c27565b915091509250929050565b610b1861124e565b8051610b2b90600b90602084019061165b565b5050565b610b3761124e565b600c805460ff19811660ff90911615179055565b610ad083838360405180602001604052806000815250611074565b600061070d826112a8565b600a8054610b7e90611b73565b80601f0160208091040260200160405190810160405280929190818152602001828054610baa90611b73565b8015610bf75780601f10610bcc57610100808354040283529160200191610bf7565b820191906000526020600020905b815481529060010190602001808311610bda57829003601f168201915b505050505081565b60006001600160a01b038216610c28576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610c5661124e565b610c60600061131e565b565b610c6a61124e565b600e55565b610c7761124e565b610ad0600a83836116df565b60606003805461072290611b73565b600260095403610ce95760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600955600154600054612ee09183910360001901610d099190611c3b565b1115610d505760405162461bcd60e51b8152602060048201526016602482015275416d6f756e74206578636565647320737570706c792160501b6044820152606401610ce0565b6008546001600160a01b03163314610ee857600c54610100900460ff1615610dd4573360009081526011602052604090205460ff16600114610dd45760405162461bcd60e51b815260206004820152601960248201527f596f75206172656e2774206f6e20416c6c6f77204c69737421000000000000006044820152606401610ce0565b600f548111158015610e02575060105433600090815260126020526040902054610dff908390611c3b565b11155b610e4e5760405162461bcd60e51b815260206004820152601960248201527f596f752063616e2774206d696e742074686174206d616e7921000000000000006044820152606401610ce0565b600c5460ff1615610e965760405162461bcd60e51b81526020600482015260126024820152714d696e74696e67206973207061757365642160701b6044820152606401610ce0565b80600d54610ea49190611bf2565b3414610ee85760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610ce0565b6000610efc6008546001600160a01b031690565b6001600160a01b03163460405160006040518083038185875af1925050503d8060008114610f46576040519150601f19603f3d011682016040523d82523d6000602084013e610f4b565b606091505b5050905080610fa75760405162461bcd60e51b815260206004820152602260248201527f4661696c656420746f207472616e736665722066756e647320746f206f776e65604482015261722160f01b6064820152608401610ce0565b3360009081526012602052604081208054849290610fc6908490611c3b565b90915550610fd690503383611370565b50506001600955565b336001600160a01b038316036110085760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61107f8484846108ae565b6001600160a01b0383163b156110b85761109b8484848461146e565b6110b8576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600b8054610b7e90611b73565b60606110d682611219565b6110f357604051630a14c4b560e41b815260040160405180910390fd5b600a805461110090611b73565b905060000361111e576040518060200160405280600081525061070d565b600a6111298361155a565b600b60405160200161113d93929190611cec565b60405160208183030381529060405292915050565b61115a61124e565b6001600160a01b0381166111bf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ce0565b6111c88161131e565b50565b60006301ffc9a760e01b6001600160e01b0319831614806111fc57506380ac58cd60e01b6001600160e01b03198316145b8061070d5750506001600160e01b031916635b5e139f60e01b1490565b60008160011115801561122d575060005482105b801561070d575050600090815260046020526040902054600160e01b161590565b6008546001600160a01b03163314610c605760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ce0565b60008180600111611305576000548110156113055760008181526004602052604081205490600160e01b82169003611303575b806000036112fc5750600019016000818152600460205260409020546112db565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008054908290036113955760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461144457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460010161140c565b508160000361146557604051622e076360e81b815260040160405180910390fd5b60005550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906114a3903390899088908890600401611d1f565b6020604051808303816000875af19250505080156114de575060408051601f3d908101601f191682019092526114db91810190611d5c565b60015b61153c573d80801561150c576040519150601f19603f3d011682016040523d82523d6000602084013e611511565b606091505b508051600003611534576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036115815750506040805180820190915260018152600360fc1b602082015290565b8160005b81156115ab578061159581611bd9565b91506115a49050600a83611c27565b9150611585565b60008167ffffffffffffffff8111156115c6576115c6611953565b6040519080825280601f01601f1916602001820160405280156115f0576020820181803683370190505b5090505b841561155257611605600183611d79565b9150611612600a86611d90565b61161d906030611c3b565b60f81b81838151811061163257611632611bad565b60200101906001600160f81b031916908160001a905350611654600a86611c27565b94506115f4565b82805461166790611b73565b90600052602060002090601f01602090048101928261168957600085556116cf565b82601f106116a257805160ff19168380011785556116cf565b828001600101855582156116cf579182015b828111156116cf5782518255916020019190600101906116b4565b506116db929150611753565b5090565b8280546116eb90611b73565b90600052602060002090601f01602090048101928261170d57600085556116cf565b82601f106117265782800160ff198235161785556116cf565b828001600101855582156116cf579182015b828111156116cf578235825591602001919060010190611738565b5b808211156116db5760008155600101611754565b6001600160e01b0319811681146111c857600080fd5b60006020828403121561179057600080fd5b81356112fc81611768565b60005b838110156117b657818101518382015260200161179e565b838111156110b85750506000910152565b600081518084526117df81602086016020860161179b565b601f01601f19169290920160200192915050565b6020815260006112fc60208301846117c7565b60006020828403121561181857600080fd5b5035919050565b80356001600160a01b038116811461183657600080fd5b919050565b6000806040838503121561184e57600080fd5b6118578361181f565b946020939093013593505050565b60008060006060848603121561187a57600080fd5b6118838461181f565b92506118916020850161181f565b9150604084013590509250925092565b600080602083850312156118b457600080fd5b823567ffffffffffffffff808211156118cc57600080fd5b818501915085601f8301126118e057600080fd5b8135818111156118ef57600080fd5b8660208260051b850101111561190457600080fd5b60209290920196919550909350505050565b60006020828403121561192857600080fd5b6112fc8261181f565b6000806040838503121561194457600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561198457611984611953565b604051601f8501601f19908116603f011681019082821181831017156119ac576119ac611953565b816040528093508581528686860111156119c557600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156119f157600080fd5b813567ffffffffffffffff811115611a0857600080fd5b8201601f81018413611a1957600080fd5b61155284823560208401611969565b60008060208385031215611a3b57600080fd5b823567ffffffffffffffff80821115611a5357600080fd5b818501915085601f830112611a6757600080fd5b813581811115611a7657600080fd5b86602082850101111561190457600080fd5b60008060408385031215611a9b57600080fd5b611aa48361181f565b915060208301358015158114611ab957600080fd5b809150509250929050565b60008060008060808587031215611ada57600080fd5b611ae38561181f565b9350611af16020860161181f565b925060408501359150606085013567ffffffffffffffff811115611b1457600080fd5b8501601f81018713611b2557600080fd5b611b3487823560208401611969565b91505092959194509250565b60008060408385031215611b5357600080fd5b611b5c8361181f565b9150611b6a6020840161181f565b90509250929050565b600181811c90821680611b8757607f821691505b602082108103611ba757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611beb57611beb611bc3565b5060010190565b6000816000190483118215151615611c0c57611c0c611bc3565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611c3657611c36611c11565b500490565b60008219821115611c4e57611c4e611bc3565b500190565b8054600090600181811c9080831680611c6d57607f831692505b60208084108203611c8e57634e487b7160e01b600052602260045260246000fd5b818015611ca25760018114611cb357611ce0565b60ff19861689528489019650611ce0565b60008881526020902060005b86811015611cd85781548b820152908501908301611cbf565b505084890196505b50505050505092915050565b6000611cf88286611c53565b8451611d0881836020890161179b565b611d1481830186611c53565b979650505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d52908301846117c7565b9695505050505050565b600060208284031215611d6e57600080fd5b81516112fc81611768565b600082821015611d8b57611d8b611bc3565b500390565b600082611d9f57611d9f611c11565b50069056fea26469706673582212204ad11e92382fd249d463f5aa51ba648cd98307936163dcdaf53d32bebdbc549764736f6c634300080d0033697066733a2f2f6261667962656966643372677870716c6266356d756267336a66696361706f697369346b746c64653577716b7a776b7a33626e64676d3765356d652fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef

Deployed Bytecode

0x60806040526004361061021a5760003560e01c8063453c23101161012357806395d89b41116100ab578063c87b56dd1161006f578063c87b56dd1461061c578063e985e9c51461063c578063f2fde38b14610685578063f968adbe146106a5578063fa30297e146106bb57600080fd5b806395d89b411461059f578063a0712d68146105b4578063a22cb465146105c7578063b88d4fde146105e7578063c66828621461060757600080fd5b806370a08231116100f257806370a082311461050c578063715018a61461052c5780638da5cb5b146105415780638fffd8b51461055f578063931688cb1461057f57600080fd5b8063453c2310146104a75780635c975abb146104bd5780636352211e146104d75780636c0360eb146104f757600080fd5b8063252e3ab9116101a65780632a55205a116101755780632a55205a146103fd5780633232c10b1461043c57806332cb6b0c1461045c578063333171bb1461047257806342842e0e1461048757600080fd5b8063252e3ab914610366578063255323ff146103855780632848aeaf146103a557806329ee566c146103e757600080fd5b806313faede6116101ed57806313faede6146102d057806318160ddd146102f457806320843e871461031157806323b872dd1461032657806323c5a0881461034657600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a36600461177e565b6106e8565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b50610269610713565b60405161024b91906117f3565b34801561028257600080fd5b50610296610291366004611806565b6107a5565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c936600461183b565b6107e9565b005b3480156102dc57600080fd5b506102e6600d5481565b60405190815260200161024b565b34801561030057600080fd5b5060015460005403600019016102e6565b34801561031d57600080fd5b506102ce610889565b34801561033257600080fd5b506102ce610341366004611865565b6108ae565b34801561035257600080fd5b506102ce610361366004611806565b610a46565b34801561037257600080fd5b50600c5461023f90610100900460ff1681565b34801561039157600080fd5b506102ce6103a03660046118a1565b610a53565b3480156103b157600080fd5b506103d56103c0366004611916565b60116020526000908152604090205460ff1681565b60405160ff909116815260200161024b565b3480156103f357600080fd5b506102e6600e5481565b34801561040957600080fd5b5061041d610418366004611931565b610ad5565b604080516001600160a01b03909316835260208301919091520161024b565b34801561044857600080fd5b506102ce6104573660046119df565b610b10565b34801561046857600080fd5b506102e6612ee081565b34801561047e57600080fd5b506102ce610b2f565b34801561049357600080fd5b506102ce6104a2366004611865565b610b4b565b3480156104b357600080fd5b506102e660105481565b3480156104c957600080fd5b50600c5461023f9060ff1681565b3480156104e357600080fd5b506102966104f2366004611806565b610b66565b34801561050357600080fd5b50610269610b71565b34801561051857600080fd5b506102e6610527366004611916565b610bff565b34801561053857600080fd5b506102ce610c4e565b34801561054d57600080fd5b506008546001600160a01b0316610296565b34801561056b57600080fd5b506102ce61057a366004611806565b610c62565b34801561058b57600080fd5b506102ce61059a366004611a28565b610c6f565b3480156105ab57600080fd5b50610269610c83565b6102ce6105c2366004611806565b610c92565b3480156105d357600080fd5b506102ce6105e2366004611a88565b610fdf565b3480156105f357600080fd5b506102ce610602366004611ac4565b611074565b34801561061357600080fd5b506102696110be565b34801561062857600080fd5b50610269610637366004611806565b6110cb565b34801561064857600080fd5b5061023f610657366004611b40565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561069157600080fd5b506102ce6106a0366004611916565b611152565b3480156106b157600080fd5b506102e6600f5481565b3480156106c757600080fd5b506102e66106d6366004611916565b60126020526000908152604090205481565b60006001600160e01b0319821663152a902d60e11b148061070d575061070d826111cb565b92915050565b60606002805461072290611b73565b80601f016020809104026020016040519081016040528092919081815260200182805461074e90611b73565b801561079b5780601f106107705761010080835404028352916020019161079b565b820191906000526020600020905b81548152906001019060200180831161077e57829003601f168201915b5050505050905090565b60006107b082611219565b6107cd576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107f482610b66565b9050336001600160a01b0382161461082d576108108133610657565b61082d576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61089161124e565b600c805461ff001981166101009182900460ff1615909102179055565b60006108b9826112a8565b9050836001600160a01b0316816001600160a01b0316146108ec5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176109395761091c8633610657565b61093957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661096057604051633a954ecd60e21b815260040160405180910390fd5b801561096b57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036109fd576001840160008181526004602052604081205490036109fb5760005481146109fb5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610a4e61124e565b600d55565b610a5b61124e565b60005b81811015610ad057600160116000858585818110610a7e57610a7e611bad565b9050602002016020810190610a939190611916565b6001600160a01b031681526020810191909152604001600020805460ff191660ff9290921691909117905580610ac881611bd9565b915050610a5e565b505050565b600080610aea6008546001600160a01b031690565b612710600e5485610afb9190611bf2565b610b059190611c27565b915091509250929050565b610b1861124e565b8051610b2b90600b90602084019061165b565b5050565b610b3761124e565b600c805460ff19811660ff90911615179055565b610ad083838360405180602001604052806000815250611074565b600061070d826112a8565b600a8054610b7e90611b73565b80601f0160208091040260200160405190810160405280929190818152602001828054610baa90611b73565b8015610bf75780601f10610bcc57610100808354040283529160200191610bf7565b820191906000526020600020905b815481529060010190602001808311610bda57829003601f168201915b505050505081565b60006001600160a01b038216610c28576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610c5661124e565b610c60600061131e565b565b610c6a61124e565b600e55565b610c7761124e565b610ad0600a83836116df565b60606003805461072290611b73565b600260095403610ce95760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600955600154600054612ee09183910360001901610d099190611c3b565b1115610d505760405162461bcd60e51b8152602060048201526016602482015275416d6f756e74206578636565647320737570706c792160501b6044820152606401610ce0565b6008546001600160a01b03163314610ee857600c54610100900460ff1615610dd4573360009081526011602052604090205460ff16600114610dd45760405162461bcd60e51b815260206004820152601960248201527f596f75206172656e2774206f6e20416c6c6f77204c69737421000000000000006044820152606401610ce0565b600f548111158015610e02575060105433600090815260126020526040902054610dff908390611c3b565b11155b610e4e5760405162461bcd60e51b815260206004820152601960248201527f596f752063616e2774206d696e742074686174206d616e7921000000000000006044820152606401610ce0565b600c5460ff1615610e965760405162461bcd60e51b81526020600482015260126024820152714d696e74696e67206973207061757365642160701b6044820152606401610ce0565b80600d54610ea49190611bf2565b3414610ee85760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610ce0565b6000610efc6008546001600160a01b031690565b6001600160a01b03163460405160006040518083038185875af1925050503d8060008114610f46576040519150601f19603f3d011682016040523d82523d6000602084013e610f4b565b606091505b5050905080610fa75760405162461bcd60e51b815260206004820152602260248201527f4661696c656420746f207472616e736665722066756e647320746f206f776e65604482015261722160f01b6064820152608401610ce0565b3360009081526012602052604081208054849290610fc6908490611c3b565b90915550610fd690503383611370565b50506001600955565b336001600160a01b038316036110085760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61107f8484846108ae565b6001600160a01b0383163b156110b85761109b8484848461146e565b6110b8576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600b8054610b7e90611b73565b60606110d682611219565b6110f357604051630a14c4b560e41b815260040160405180910390fd5b600a805461110090611b73565b905060000361111e576040518060200160405280600081525061070d565b600a6111298361155a565b600b60405160200161113d93929190611cec565b60405160208183030381529060405292915050565b61115a61124e565b6001600160a01b0381166111bf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ce0565b6111c88161131e565b50565b60006301ffc9a760e01b6001600160e01b0319831614806111fc57506380ac58cd60e01b6001600160e01b03198316145b8061070d5750506001600160e01b031916635b5e139f60e01b1490565b60008160011115801561122d575060005482105b801561070d575050600090815260046020526040902054600160e01b161590565b6008546001600160a01b03163314610c605760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ce0565b60008180600111611305576000548110156113055760008181526004602052604081205490600160e01b82169003611303575b806000036112fc5750600019016000818152600460205260409020546112db565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008054908290036113955760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461144457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460010161140c565b508160000361146557604051622e076360e81b815260040160405180910390fd5b60005550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906114a3903390899088908890600401611d1f565b6020604051808303816000875af19250505080156114de575060408051601f3d908101601f191682019092526114db91810190611d5c565b60015b61153c573d80801561150c576040519150601f19603f3d011682016040523d82523d6000602084013e611511565b606091505b508051600003611534576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036115815750506040805180820190915260018152600360fc1b602082015290565b8160005b81156115ab578061159581611bd9565b91506115a49050600a83611c27565b9150611585565b60008167ffffffffffffffff8111156115c6576115c6611953565b6040519080825280601f01601f1916602001820160405280156115f0576020820181803683370190505b5090505b841561155257611605600183611d79565b9150611612600a86611d90565b61161d906030611c3b565b60f81b81838151811061163257611632611bad565b60200101906001600160f81b031916908160001a905350611654600a86611c27565b94506115f4565b82805461166790611b73565b90600052602060002090601f01602090048101928261168957600085556116cf565b82601f106116a257805160ff19168380011785556116cf565b828001600101855582156116cf579182015b828111156116cf5782518255916020019190600101906116b4565b506116db929150611753565b5090565b8280546116eb90611b73565b90600052602060002090601f01602090048101928261170d57600085556116cf565b82601f106117265782800160ff198235161785556116cf565b828001600101855582156116cf579182015b828111156116cf578235825591602001919060010190611738565b5b808211156116db5760008155600101611754565b6001600160e01b0319811681146111c857600080fd5b60006020828403121561179057600080fd5b81356112fc81611768565b60005b838110156117b657818101518382015260200161179e565b838111156110b85750506000910152565b600081518084526117df81602086016020860161179b565b601f01601f19169290920160200192915050565b6020815260006112fc60208301846117c7565b60006020828403121561181857600080fd5b5035919050565b80356001600160a01b038116811461183657600080fd5b919050565b6000806040838503121561184e57600080fd5b6118578361181f565b946020939093013593505050565b60008060006060848603121561187a57600080fd5b6118838461181f565b92506118916020850161181f565b9150604084013590509250925092565b600080602083850312156118b457600080fd5b823567ffffffffffffffff808211156118cc57600080fd5b818501915085601f8301126118e057600080fd5b8135818111156118ef57600080fd5b8660208260051b850101111561190457600080fd5b60209290920196919550909350505050565b60006020828403121561192857600080fd5b6112fc8261181f565b6000806040838503121561194457600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561198457611984611953565b604051601f8501601f19908116603f011681019082821181831017156119ac576119ac611953565b816040528093508581528686860111156119c557600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156119f157600080fd5b813567ffffffffffffffff811115611a0857600080fd5b8201601f81018413611a1957600080fd5b61155284823560208401611969565b60008060208385031215611a3b57600080fd5b823567ffffffffffffffff80821115611a5357600080fd5b818501915085601f830112611a6757600080fd5b813581811115611a7657600080fd5b86602082850101111561190457600080fd5b60008060408385031215611a9b57600080fd5b611aa48361181f565b915060208301358015158114611ab957600080fd5b809150509250929050565b60008060008060808587031215611ada57600080fd5b611ae38561181f565b9350611af16020860161181f565b925060408501359150606085013567ffffffffffffffff811115611b1457600080fd5b8501601f81018713611b2557600080fd5b611b3487823560208401611969565b91505092959194509250565b60008060408385031215611b5357600080fd5b611b5c8361181f565b9150611b6a6020840161181f565b90509250929050565b600181811c90821680611b8757607f821691505b602082108103611ba757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611beb57611beb611bc3565b5060010190565b6000816000190483118215151615611c0c57611c0c611bc3565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611c3657611c36611c11565b500490565b60008219821115611c4e57611c4e611bc3565b500190565b8054600090600181811c9080831680611c6d57607f831692505b60208084108203611c8e57634e487b7160e01b600052602260045260246000fd5b818015611ca25760018114611cb357611ce0565b60ff19861689528489019650611ce0565b60008881526020902060005b86811015611cd85781548b820152908501908301611cbf565b505084890196505b50505050505092915050565b6000611cf88286611c53565b8451611d0881836020890161179b565b611d1481830186611c53565b979650505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d52908301846117c7565b9695505050505050565b600060208284031215611d6e57600080fd5b81516112fc81611768565b600082821015611d8b57611d8b611bc3565b500390565b600082611d9f57611d9f611c11565b50069056fea26469706673582212204ad11e92382fd249d463f5aa51ba648cd98307936163dcdaf53d32bebdbc549764736f6c634300080d0033

Deployed Bytecode Sourcemap

59463:3544:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62649:198;;;;;;;;;;-1:-1:-1;62649:198:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;62649:198:0;;;;;;;;22057:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28540:218::-;;;;;;;;;;-1:-1:-1;28540:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;28540:218:0;1528:203:1;27981:400:0;;;;;;;;;;-1:-1:-1;27981:400:0;;;;;:::i;:::-;;:::i;:::-;;59902:34;;;;;;;;;;;;;;;;;;;2319:25:1;;;2307:2;2292:18;59902:34:0;2173:177:1;17808:323:0;;;;;;;;;;-1:-1:-1;62615:1:0;18082:12;17869:7;18066:13;:28;-1:-1:-1;;18066:46:0;17808:323;;61968:91;;;;;;;;;;;;;:::i;32247:2817::-;;;;;;;;;;-1:-1:-1;32247:2817:0;;;;;:::i;:::-;;:::i;61678:93::-;;;;;;;;;;-1:-1:-1;61678:93:0;;;;;:::i;:::-;;:::i;59769:33::-;;;;;;;;;;-1:-1:-1;59769:33:0;;;;;;;;;;;62307:191;;;;;;;;;;-1:-1:-1;62307:191:0;;;;;:::i;:::-;;:::i;60214:42::-;;;;;;;;;;-1:-1:-1;60214:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3671:4:1;3659:17;;;3641:36;;3629:2;3614:18;60214:42:0;3499:184:1;60015:29:0;;;;;;;;;;;;;;;;62855:146;;;;;;;;;;-1:-1:-1;62855:146:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;4133:32:1;;;4115:51;;4197:2;4182:18;;4175:34;;;;4088:18;62855:146:0;3941:274:1;62176:123:0;;;;;;;;;;-1:-1:-1;62176:123:0;;;;;:::i;:::-;;:::i;59833:42::-;;;;;;;;;;;;59870:5;59833:42;;61886:74;;;;;;;;;;;;;:::i;35160:185::-;;;;;;;;;;-1:-1:-1;35160:185:0;;;;;:::i;:::-;;:::i;60172:33::-;;;;;;;;;;;;;;;;59736:26;;;;;;;;;;-1:-1:-1;59736:26:0;;;;;;;;23450:152;;;;;;;;;;-1:-1:-1;23450:152:0;;;;;:::i;:::-;;:::i;59590:93::-;;;;;;;;;;;;;:::i;18992:233::-;;;;;;;;;;-1:-1:-1;18992:233:0;;;;;:::i;:::-;;:::i;58448:103::-;;;;;;;;;;;;;:::i;57800:87::-;;;;;;;;;;-1:-1:-1;57873:6:0;;-1:-1:-1;;;;;57873:6:0;57800:87;;61779:99;;;;;;;;;;-1:-1:-1;61779:99:0;;;;;:::i;:::-;;:::i;62067:101::-;;;;;;;;;;-1:-1:-1;62067:101:0;;;;;:::i;:::-;;:::i;22233:104::-;;;;;;;;;;;;;:::i;60533:833::-;;;;;;:::i;:::-;;:::i;29098:308::-;;;;;;;;;;-1:-1:-1;29098:308:0;;;;;:::i;:::-;;:::i;35943:399::-;;;;;;;;;;-1:-1:-1;35943:399:0;;;;;:::i;:::-;;:::i;59690:37::-;;;;;;;;;;;;;:::i;61374:296::-;;;;;;;;;;-1:-1:-1;61374:296:0;;;;;:::i;:::-;;:::i;29563:164::-;;;;;;;;;;-1:-1:-1;29563:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29684:25:0;;;29660:4;29684:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29563:164;58706:201;;;;;;;;;;-1:-1:-1;58706:201:0;;;;;:::i;:::-;;:::i;60107:28::-;;;;;;;;;;;;;;;;60263:48;;;;;;;;;;-1:-1:-1;60263:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;62649:198;62725:4;-1:-1:-1;;;;;;62749:50:0;;-1:-1:-1;;;62749:50:0;;:90;;;62803:36;62827:11;62803:23;:36::i;:::-;62742:97;62649:198;-1:-1:-1;;62649:198:0:o;22057:100::-;22111:13;22144:5;22137:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22057:100;:::o;28540:218::-;28616:7;28641:16;28649:7;28641;:16::i;:::-;28636:64;;28666:34;;-1:-1:-1;;;28666:34:0;;;;;;;;;;;28636:64;-1:-1:-1;28720:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;28720:30:0;;28540:218::o;27981:400::-;28062:13;28078:16;28086:7;28078;:16::i;:::-;28062:32;-1:-1:-1;51838:10:0;-1:-1:-1;;;;;28111:28:0;;;28107:175;;28159:44;28176:5;51838:10;29563:164;:::i;28159:44::-;28154:128;;28231:35;;-1:-1:-1;;;28231:35:0;;;;;;;;;;;28154:128;28294:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;28294:35:0;-1:-1:-1;;;;;28294:35:0;;;;;;;;;28345:28;;28294:24;;28345:28;;;;;;;28051:330;27981:400;;:::o;61968:91::-;57686:13;:11;:13::i;:::-;62038::::1;::::0;;-1:-1:-1;;62021:30:0;::::1;62038:13;::::0;;;::::1;;;62037:14;62021:30:::0;;::::1;;::::0;;61968:91::o;32247:2817::-;32381:27;32411;32430:7;32411:18;:27::i;:::-;32381:57;;32496:4;-1:-1:-1;;;;;32455:45:0;32471:19;-1:-1:-1;;;;;32455:45:0;;32451:86;;32509:28;;-1:-1:-1;;;32509:28:0;;;;;;;;;;;32451:86;32551:27;31361:24;;;:15;:24;;;;;31583:26;;51838:10;30986:30;;;-1:-1:-1;;;;;30679:28:0;;30964:20;;;30961:56;32737:180;;32830:43;32847:4;51838:10;29563:164;:::i;32830:43::-;32825:92;;32882:35;;-1:-1:-1;;;32882:35:0;;;;;;;;;;;32825:92;-1:-1:-1;;;;;32934:16:0;;32930:52;;32959:23;;-1:-1:-1;;;32959:23:0;;;;;;;;;;;32930:52;33131:15;33128:160;;;33271:1;33250:19;33243:30;33128:160;-1:-1:-1;;;;;33668:24:0;;;;;;;:18;:24;;;;;;33666:26;;-1:-1:-1;;33666:26:0;;;33737:22;;;;;;;;;33735:24;;-1:-1:-1;33735:24:0;;;26839:11;26814:23;26810:41;26797:63;-1:-1:-1;;;26797:63:0;34030:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;34325:47:0;;:52;;34321:627;;34430:1;34420:11;;34398:19;34553:30;;;:17;:30;;;;;;:35;;34549:384;;34691:13;;34676:11;:28;34672:242;;34838:30;;;;:17;:30;;;;;:52;;;34672:242;34379:569;34321:627;34995:7;34991:2;-1:-1:-1;;;;;34976:27:0;34985:4;-1:-1:-1;;;;;34976:27:0;;;;;;;;;;;32370:2694;;;32247:2817;;;:::o;61678:93::-;57686:13;:11;:13::i;:::-;61746:4:::1;:17:::0;61678:93::o;62307:191::-;57686:13;:11;:13::i;:::-;62393:9:::1;62388:103;62408:21:::0;;::::1;62388:103;;;62478:1;62451:9;:24;62461:10;;62472:1;62461:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;62451:24:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;62451:24:0;:28;;-1:-1:-1;;62451:28:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;62431:3;::::1;::::0;::::1;:::i;:::-;;;;62388:103;;;;62307:191:::0;;:::o;62855:146::-;62922:7;62931;62959;57873:6;;-1:-1:-1;;;;;57873:6:0;;57800:87;62959:7;62987:5;62977:7;;62969:5;:15;;;;:::i;:::-;:23;;;;:::i;:::-;62951:42;;;;62855:146;;;;;:::o;62176:123::-;57686:13;:11;:13::i;:::-;62262:29;;::::1;::::0;:13:::1;::::0;:29:::1;::::0;::::1;::::0;::::1;:::i;:::-;;62176:123:::0;:::o;61886:74::-;57686:13;:11;:13::i;:::-;61946:6:::1;::::0;;-1:-1:-1;;61936:16:0;::::1;61946:6;::::0;;::::1;61945:7;61936:16;::::0;;61886:74::o;35160:185::-;35298:39;35315:4;35321:2;35325:7;35298:39;;;;;;;;;;;;:16;:39::i;23450:152::-;23522:7;23565:27;23584:7;23565:18;:27::i;59590:93::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;18992:233::-;19064:7;-1:-1:-1;;;;;19088:19:0;;19084:60;;19116:28;;-1:-1:-1;;;19116:28:0;;;;;;;;;;;19084:60;-1:-1:-1;;;;;;19162:25:0;;;;;:18;:25;;;;;;13151:13;19162:55;;18992:233::o;58448:103::-;57686:13;:11;:13::i;:::-;58513:30:::1;58540:1;58513:18;:30::i;:::-;58448:103::o:0;61779:99::-;57686:13;:11;:13::i;:::-;61850:7:::1;:20:::0;61779:99::o;62067:101::-;57686:13;:11;:13::i;:::-;62143:17:::1;:7;62153::::0;;62143:17:::1;:::i;22233:104::-:0;22289:13;22322:7;22315:14;;;;;:::i;60533:833::-;1862:1;2460:7;;:19;2452:63;;;;-1:-1:-1;;;2452:63:0;;8752:2:1;2452:63:0;;;8734:21:1;8791:2;8771:18;;;8764:30;8830:33;8810:18;;;8803:61;8881:18;;2452:63:0;;;;;;;;;1862:1;2593:7;:18;62615:1;18082:12;17869:7;18066:13;59870:5:::1;::::0;60626:6;;18066:28;-1:-1:-1;;18066:46:0;60610:22:::1;;;;:::i;:::-;:36;;60602:71;;;::::0;-1:-1:-1;;;60602:71:0;;9245:2:1;60602:71:0::1;::::0;::::1;9227:21:1::0;9284:2;9264:18;;;9257:30;-1:-1:-1;;;9303:18:1;;;9296:52;9365:18;;60602:71:0::1;9043:346:1::0;60602:71:0::1;57873:6:::0;;-1:-1:-1;;;;;57873:6:0;60690:10:::1;:21;60686:451;;60732:13;::::0;::::1;::::0;::::1;;;60728:118;;;60784:10;60774:21;::::0;;;:9:::1;:21;::::0;;;;;::::1;;::::0;:26:::1;60766:64;;;::::0;-1:-1:-1;;;60766:64:0;;9596:2:1;60766:64:0::1;::::0;::::1;9578:21:1::0;9635:2;9615:18;;;9608:30;9674:27;9654:18;;;9647:55;9719:18;;60766:64:0::1;9394:349:1::0;60766:64:0::1;60884:8;;60874:6;:18;;:93;;;;-1:-1:-1::0;60955:12:0::1;::::0;60931:10:::1;60917:25;::::0;;;:13:::1;:25;::::0;;;;;:34:::1;::::0;60945:6;;60917:34:::1;:::i;:::-;:50;;60874:93;60866:131;;;::::0;-1:-1:-1;;;60866:131:0;;9950:2:1;60866:131:0::1;::::0;::::1;9932:21:1::0;9989:2;9969:18;;;9962:30;10028:27;10008:18;;;10001:55;10073:18;;60866:131:0::1;9748:349:1::0;60866:131:0::1;61023:6;::::0;::::1;;61022:7;61014:38;;;::::0;-1:-1:-1;;;61014:38:0;;10304:2:1;61014:38:0::1;::::0;::::1;10286:21:1::0;10343:2;10323:18;;;10316:30;-1:-1:-1;;;10362:18:1;;;10355:48;10420:18;;61014:38:0::1;10102:342:1::0;61014:38:0::1;61095:6;61088:4;;:13;;;;:::i;:::-;61075:9;:26;61067:58;;;::::0;-1:-1:-1;;;61067:58:0;;10651:2:1;61067:58:0::1;::::0;::::1;10633:21:1::0;10690:2;10670:18;;;10663:30;-1:-1:-1;;;10709:18:1;;;10702:49;10768:18;;61067:58:0::1;10449:343:1::0;61067:58:0::1;61150:12;61176:7;57873:6:::0;;-1:-1:-1;;;;;57873:6:0;;57800:87;61176:7:::1;-1:-1:-1::0;;;;;61168:21:0::1;61198:9;61168:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61149:64;;;61226:7;61218:54;;;::::0;-1:-1:-1;;;61218:54:0;;11209:2:1;61218:54:0::1;::::0;::::1;11191:21:1::0;11248:2;11228:18;;;11221:30;11287:34;11267:18;;;11260:62;-1:-1:-1;;;11338:18:1;;;11331:32;11380:19;;61218:54:0::1;11007:398:1::0;61218:54:0::1;61299:10;61285:25;::::0;;;:13:::1;:25;::::0;;;;:35;;61314:6;;61285:25;:35:::1;::::0;61314:6;;61285:35:::1;:::i;:::-;::::0;;;-1:-1:-1;61331:25:0::1;::::0;-1:-1:-1;61337:10:0::1;61349:6:::0;61331:5:::1;:25::i;:::-;-1:-1:-1::0;;1818:1:0;2772:7;:22;60533:833::o;29098:308::-;51838:10;-1:-1:-1;;;;;29197:31:0;;;29193:61;;29237:17;;-1:-1:-1;;;29237:17:0;;;;;;;;;;;29193:61;51838:10;29267:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;29267:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;29267:60:0;;;;;;;;;;29343:55;;540:41:1;;;29267:49:0;;51838:10;29343:55;;513:18:1;29343:55:0;;;;;;;29098:308;;:::o;35943:399::-;36110:31;36123:4;36129:2;36133:7;36110:12;:31::i;:::-;-1:-1:-1;;;;;36156:14:0;;;:19;36152:183;;36195:56;36226:4;36232:2;36236:7;36245:5;36195:30;:56::i;:::-;36190:145;;36279:40;;-1:-1:-1;;;36279:40:0;;;;;;;;;;;36190:145;35943:399;;;;:::o;59690:37::-;;;;;;;:::i;61374:296::-;61447:13;61478:16;61486:7;61478;:16::i;:::-;61473:59;;61503:29;;-1:-1:-1;;;61503:29:0;;;;;;;;;;;61473:59;61566:7;61560:21;;;;;:::i;:::-;;;61585:1;61560:26;:102;;;;;;;;;;;;;;;;;61613:7;61622:18;:7;:16;:18::i;:::-;61642:13;61596:60;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61553:109;61374:296;-1:-1:-1;;61374:296:0:o;58706:201::-;57686:13;:11;:13::i;:::-;-1:-1:-1;;;;;58795:22:0;::::1;58787:73;;;::::0;-1:-1:-1;;;58787:73:0;;13177:2:1;58787:73:0::1;::::0;::::1;13159:21:1::0;13216:2;13196:18;;;13189:30;13255:34;13235:18;;;13228:62;-1:-1:-1;;;13306:18:1;;;13299:36;13352:19;;58787:73:0::1;12975:402:1::0;58787:73:0::1;58871:28;58890:8;58871:18;:28::i;:::-;58706:201:::0;:::o;21155:639::-;21240:4;-1:-1:-1;;;;;;;;;21564:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;21641:25:0;;;21564:102;:179;;;-1:-1:-1;;;;;;;;21718:25:0;-1:-1:-1;;;21718:25:0;;21155:639::o;29985:282::-;30050:4;30106:7;62615:1;30087:26;;:66;;;;;30140:13;;30130:7;:23;30087:66;:153;;;;-1:-1:-1;;30191:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;30191:44:0;:49;;29985:282::o;57965:132::-;57873:6;;-1:-1:-1;;;;;57873:6:0;51838:10;58029:23;58021:68;;;;-1:-1:-1;;;58021:68:0;;13584:2:1;58021:68:0;;;13566:21:1;;;13603:18;;;13596:30;13662:34;13642:18;;;13635:62;13714:18;;58021:68:0;13382:356:1;24605:1275:0;24672:7;24707;;62615:1;24756:23;24752:1061;;24809:13;;24802:4;:20;24798:1015;;;24847:14;24864:23;;;:17;:23;;;;;;;-1:-1:-1;;;24953:24:0;;:29;;24949:845;;25618:113;25625:6;25635:1;25625:11;25618:113;;-1:-1:-1;;;25696:6:0;25678:25;;;;:17;:25;;;;;;25618:113;;;25764:6;24605:1275;-1:-1:-1;;;24605:1275:0:o;24949:845::-;24824:989;24798:1015;25841:31;;-1:-1:-1;;;25841:31:0;;;;;;;;;;;59067:191;59160:6;;;-1:-1:-1;;;;;59177:17:0;;;-1:-1:-1;;;;;;59177:17:0;;;;;;;59210:40;;59160:6;;;59177:17;59160:6;;59210:40;;59141:16;;59210:40;59130:128;59067:191;:::o;39604:2454::-;39677:20;39700:13;;;39728;;;39724:44;;39750:18;;-1:-1:-1;;;39750:18:0;;;;;;;;;;;39724:44;-1:-1:-1;;;;;40256:22:0;;;;;;:18;:22;;;;13289:2;40256:22;;;:71;;40294:32;40282:45;;40256:71;;;40570:31;;;:17;:31;;;;;-1:-1:-1;27270:15:0;;27244:24;27240:46;26839:11;26814:23;26810:41;26807:52;26797:63;;40570:173;;40805:23;;;;40570:31;;40256:22;;41304:25;40256:22;;41157:335;41572:1;41558:12;41554:20;41512:346;41613:3;41604:7;41601:16;41512:346;;41831:7;41821:8;41818:1;41791:25;41788:1;41785;41780:59;41666:1;41653:15;41512:346;;;41516:77;41891:8;41903:1;41891:13;41887:45;;41913:19;;-1:-1:-1;;;41913:19:0;;;;;;;;;;;41887:45;41949:13;:19;-1:-1:-1;62388:103:0::1;62307:191:::0;;:::o;38426:716::-;38610:88;;-1:-1:-1;;;38610:88:0;;38589:4;;-1:-1:-1;;;;;38610:45:0;;;;;:88;;51838:10;;38677:4;;38683:7;;38692:5;;38610:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38610:88:0;;;;;;;;-1:-1:-1;;38610:88:0;;;;;;;;;;;;:::i;:::-;;;38606:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38893:6;:13;38910:1;38893:18;38889:235;;38939:40;;-1:-1:-1;;;38939:40:0;;;;;;;;;;;38889:235;39082:6;39076:13;39067:6;39063:2;39059:15;39052:38;38606:529;-1:-1:-1;;;;;;38769:64:0;-1:-1:-1;;;38769:64:0;;-1:-1:-1;38606:529:0;38426:716;;;;;;:::o;53911:723::-;53967:13;54188:5;54197:1;54188:10;54184:53;;-1:-1:-1;;54215:10:0;;;;;;;;;;;;-1:-1:-1;;;54215:10:0;;;;;53911:723::o;54184:53::-;54262:5;54247:12;54303:78;54310:9;;54303:78;;54336:8;;;;:::i;:::-;;-1:-1:-1;54359:10:0;;-1:-1:-1;54367:2:0;54359:10;;:::i;:::-;;;54303:78;;;54391:19;54423:6;54413:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54413:17:0;;54391:39;;54441:154;54448:10;;54441:154;;54475:11;54485:1;54475:11;;:::i;:::-;;-1:-1:-1;54544:10:0;54552:2;54544:5;:10;:::i;:::-;54531:24;;:2;:24;:::i;:::-;54518:39;;54501:6;54508;54501:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;54501:56:0;;;;;;;;-1:-1:-1;54572:11:0;54581:2;54572:11;;:::i;:::-;;;54441:154;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:615::-;2774:6;2782;2835:2;2823:9;2814:7;2810:23;2806:32;2803:52;;;2851:1;2848;2841:12;2803:52;2891:9;2878:23;2920:18;2961:2;2953:6;2950:14;2947:34;;;2977:1;2974;2967:12;2947:34;3015:6;3004:9;3000:22;2990:32;;3060:7;3053:4;3049:2;3045:13;3041:27;3031:55;;3082:1;3079;3072:12;3031:55;3122:2;3109:16;3148:2;3140:6;3137:14;3134:34;;;3164:1;3161;3154:12;3134:34;3217:7;3212:2;3202:6;3199:1;3195:14;3191:2;3187:23;3183:32;3180:45;3177:65;;;3238:1;3235;3228:12;3177:65;3269:2;3261:11;;;;;3291:6;;-1:-1:-1;2688:615:1;;-1:-1:-1;;;;2688:615:1:o;3308:186::-;3367:6;3420:2;3408:9;3399:7;3395:23;3391:32;3388:52;;;3436:1;3433;3426:12;3388:52;3459:29;3478:9;3459:29;:::i;3688:248::-;3756:6;3764;3817:2;3805:9;3796:7;3792:23;3788:32;3785:52;;;3833:1;3830;3823:12;3785:52;-1:-1:-1;;3856:23:1;;;3926:2;3911:18;;;3898:32;;-1:-1:-1;3688:248:1:o;4220:127::-;4281:10;4276:3;4272:20;4269:1;4262:31;4312:4;4309:1;4302:15;4336:4;4333:1;4326:15;4352:632;4417:5;4447:18;4488:2;4480:6;4477:14;4474:40;;;4494:18;;:::i;:::-;4569:2;4563:9;4537:2;4623:15;;-1:-1:-1;;4619:24:1;;;4645:2;4615:33;4611:42;4599:55;;;4669:18;;;4689:22;;;4666:46;4663:72;;;4715:18;;:::i;:::-;4755:10;4751:2;4744:22;4784:6;4775:15;;4814:6;4806;4799:22;4854:3;4845:6;4840:3;4836:16;4833:25;4830:45;;;4871:1;4868;4861:12;4830:45;4921:6;4916:3;4909:4;4901:6;4897:17;4884:44;4976:1;4969:4;4960:6;4952;4948:19;4944:30;4937:41;;;;4352:632;;;;;:::o;4989:451::-;5058:6;5111:2;5099:9;5090:7;5086:23;5082:32;5079:52;;;5127:1;5124;5117:12;5079:52;5167:9;5154:23;5200:18;5192:6;5189:30;5186:50;;;5232:1;5229;5222:12;5186:50;5255:22;;5308:4;5300:13;;5296:27;-1:-1:-1;5286:55:1;;5337:1;5334;5327:12;5286:55;5360:74;5426:7;5421:2;5408:16;5403:2;5399;5395:11;5360:74;:::i;5445:592::-;5516:6;5524;5577:2;5565:9;5556:7;5552:23;5548:32;5545:52;;;5593:1;5590;5583:12;5545:52;5633:9;5620:23;5662:18;5703:2;5695:6;5692:14;5689:34;;;5719:1;5716;5709:12;5689:34;5757:6;5746:9;5742:22;5732:32;;5802:7;5795:4;5791:2;5787:13;5783:27;5773:55;;5824:1;5821;5814:12;5773:55;5864:2;5851:16;5890:2;5882:6;5879:14;5876:34;;;5906:1;5903;5896:12;5876:34;5951:7;5946:2;5937:6;5933:2;5929:15;5925:24;5922:37;5919:57;;;5972:1;5969;5962:12;6042:347;6107:6;6115;6168:2;6156:9;6147:7;6143:23;6139:32;6136:52;;;6184:1;6181;6174:12;6136:52;6207:29;6226:9;6207:29;:::i;:::-;6197:39;;6286:2;6275:9;6271:18;6258:32;6333:5;6326:13;6319:21;6312:5;6309:32;6299:60;;6355:1;6352;6345:12;6299:60;6378:5;6368:15;;;6042:347;;;;;:::o;6394:667::-;6489:6;6497;6505;6513;6566:3;6554:9;6545:7;6541:23;6537:33;6534:53;;;6583:1;6580;6573:12;6534:53;6606:29;6625:9;6606:29;:::i;:::-;6596:39;;6654:38;6688:2;6677:9;6673:18;6654:38;:::i;:::-;6644:48;;6739:2;6728:9;6724:18;6711:32;6701:42;;6794:2;6783:9;6779:18;6766:32;6821:18;6813:6;6810:30;6807:50;;;6853:1;6850;6843:12;6807:50;6876:22;;6929:4;6921:13;;6917:27;-1:-1:-1;6907:55:1;;6958:1;6955;6948:12;6907:55;6981:74;7047:7;7042:2;7029:16;7024:2;7020;7016:11;6981:74;:::i;:::-;6971:84;;;6394:667;;;;;;;:::o;7066:260::-;7134:6;7142;7195:2;7183:9;7174:7;7170:23;7166:32;7163:52;;;7211:1;7208;7201:12;7163:52;7234:29;7253:9;7234:29;:::i;:::-;7224:39;;7282:38;7316:2;7305:9;7301:18;7282:38;:::i;:::-;7272:48;;7066:260;;;;;:::o;7331:380::-;7410:1;7406:12;;;;7453;;;7474:61;;7528:4;7520:6;7516:17;7506:27;;7474:61;7581:2;7573:6;7570:14;7550:18;7547:38;7544:161;;7627:10;7622:3;7618:20;7615:1;7608:31;7662:4;7659:1;7652:15;7690:4;7687:1;7680:15;7544:161;;7331:380;;;:::o;7716:127::-;7777:10;7772:3;7768:20;7765:1;7758:31;7808:4;7805:1;7798:15;7832:4;7829:1;7822:15;7848:127;7909:10;7904:3;7900:20;7897:1;7890:31;7940:4;7937:1;7930:15;7964:4;7961:1;7954:15;7980:135;8019:3;8040:17;;;8037:43;;8060:18;;:::i;:::-;-1:-1:-1;8107:1:1;8096:13;;7980:135::o;8120:168::-;8160:7;8226:1;8222;8218:6;8214:14;8211:1;8208:21;8203:1;8196:9;8189:17;8185:45;8182:71;;;8233:18;;:::i;:::-;-1:-1:-1;8273:9:1;;8120:168::o;8293:127::-;8354:10;8349:3;8345:20;8342:1;8335:31;8385:4;8382:1;8375:15;8409:4;8406:1;8399:15;8425:120;8465:1;8491;8481:35;;8496:18;;:::i;:::-;-1:-1:-1;8530:9:1;;8425:120::o;8910:128::-;8950:3;8981:1;8977:6;8974:1;8971:13;8968:39;;;8987:18;;:::i;:::-;-1:-1:-1;9023:9:1;;8910:128::o;11536:973::-;11621:12;;11586:3;;11676:1;11696:18;;;;11749;;;;11776:61;;11830:4;11822:6;11818:17;11808:27;;11776:61;11856:2;11904;11896:6;11893:14;11873:18;11870:38;11867:161;;11950:10;11945:3;11941:20;11938:1;11931:31;11985:4;11982:1;11975:15;12013:4;12010:1;12003:15;11867:161;12044:18;12071:104;;;;12189:1;12184:319;;;;12037:466;;12071:104;-1:-1:-1;;12104:24:1;;12092:37;;12149:16;;;;-1:-1:-1;12071:104:1;;12184:319;11483:1;11476:14;;;11520:4;11507:18;;12278:1;12292:165;12306:6;12303:1;12300:13;12292:165;;;12384:14;;12371:11;;;12364:35;12427:16;;;;12321:10;;12292:165;;;12296:3;;12486:6;12481:3;12477:16;12470:23;;12037:466;;;;;;;11536:973;;;;:::o;12514:456::-;12735:3;12763:38;12797:3;12789:6;12763:38;:::i;:::-;12830:6;12824:13;12846:52;12891:6;12887:2;12880:4;12872:6;12868:17;12846:52;:::i;:::-;12914:50;12956:6;12952:2;12948:15;12940:6;12914:50;:::i;:::-;12907:57;12514:456;-1:-1:-1;;;;;;;12514:456:1:o;13743:489::-;-1:-1:-1;;;;;14012:15:1;;;13994:34;;14064:15;;14059:2;14044:18;;14037:43;14111:2;14096:18;;14089:34;;;14159:3;14154:2;14139:18;;14132:31;;;13937:4;;14180:46;;14206:19;;14198:6;14180:46;:::i;:::-;14172:54;13743:489;-1:-1:-1;;;;;;13743:489:1:o;14237:249::-;14306:6;14359:2;14347:9;14338:7;14334:23;14330:32;14327:52;;;14375:1;14372;14365:12;14327:52;14407:9;14401:16;14426:30;14450:5;14426:30;:::i;14491:125::-;14531:4;14559:1;14556;14553:8;14550:34;;;14564:18;;:::i;:::-;-1:-1:-1;14601:9:1;;14491:125::o;14621:112::-;14653:1;14679;14669:35;;14684:18;;:::i;:::-;-1:-1:-1;14718:9:1;;14621:112::o

Swarm Source

ipfs://4ad11e92382fd249d463f5aa51ba648cd98307936163dcdaf53d32bebdbc5497
[ 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.