Sepolia Testnet

Token

Mint By ERC20 (MBERC20)
ERC-721

Overview

Max Total Supply

13 MBERC20

Holders

2

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
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MintByERC20

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-07-21
*/

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * `_sequentialUpTo()` must be greater than `_startTokenId()`.
     */
    error SequentialUpToTooSmall();

    /**
     * The `tokenId` of a sequential mint exceeds `_sequentialUpTo()`.
     */
    error SequentialMintExceedsLimit();

    /**
     * Spot minting requires a `tokenId` greater than `_sequentialUpTo()`.
     */
    error SpotMintTokenIdTooSmall();

    /**
     * Cannot mint over a token that already exists.
     */
    error TokenAlreadyExists();

    /**
     * The feature is not compatible with spot mints.
     */
    error NotCompatibleWithSpotMints();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.3.0
// 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()`.
 *
 * The `_sequentialUpTo()` function can be overriden to enable spot mints
 * (i.e. non-consecutive mints) for `tokenId`s greater than `_sequentialUpTo()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

    // The amount of tokens minted above `_sequentialUpTo()`.
    // We call these spot mints (i.e. non-sequential mints).
    uint256 private _spotMinted;

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

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

        if (_sequentialUpTo() < _startTokenId()) _revert(SequentialUpToTooSmall.selector);
    }

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

    /**
     * @dev Returns the starting token ID for sequential mints.
     *
     * Override this function to change the starting token ID for sequential mints.
     *
     * Note: The value returned must never change after any tokens have been minted.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the maximum token ID (inclusive) for sequential mints.
     *
     * Override this function to return a value less than 2**256 - 1,
     * but greater than `_startTokenId()`, to enable spot (non-sequential) mints.
     *
     * Note: The value returned must never change after any tokens have been minted.
     */
    function _sequentialUpTo() internal view virtual returns (uint256) {
        return type(uint256).max;
    }

    /**
     * @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 result) {
        // Counter underflow is impossible as `_burnCounter` cannot be incremented
        // more than `_currentIndex + _spotMinted - _startTokenId()` times.
        unchecked {
            // With spot minting, the intermediate `result` can be temporarily negative,
            // and the computation must be unchecked.
            result = _currentIndex - _burnCounter - _startTokenId();
            if (_sequentialUpTo() != type(uint256).max) result += _spotMinted;
        }
    }

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

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

    /**
     * @dev Returns the total number of tokens that are spot-minted.
     */
    function _totalSpotMinted() internal view virtual returns (uint256) {
        return _spotMinted;
    }

    // =============================================================
    //                    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.selector);
        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.selector);

        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 Returns whether the ownership slot at `index` is initialized.
     * An uninitialized slot does not necessarily mean that the slot has no owner.
     */
    function _ownershipIsInitialized(uint256 index) internal view virtual returns (bool) {
        return _packedOwnerships[index] != 0;
    }

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

    /**
     * @dev Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256 packed) {
        if (_startTokenId() <= tokenId) {
            packed = _packedOwnerships[tokenId];

            if (tokenId > _sequentialUpTo()) {
                if (_packedOwnershipExists(packed)) return packed;
                _revert(OwnerQueryForNonexistentToken.selector);
            }

            // If the data at the starting slot does not exist, start the scan.
            if (packed == 0) {
                if (tokenId >= _currentIndex) _revert(OwnerQueryForNonexistentToken.selector);
                // 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, `tokenId` will not underflow.
                //
                // We can directly compare the packed value.
                // If the address is zero, packed will be zero.
                for (;;) {
                    unchecked {
                        packed = _packedOwnerships[--tokenId];
                    }
                    if (packed == 0) continue;
                    if (packed & _BITMASK_BURNED == 0) return packed;
                    // Otherwise, the token is burned, and we must revert.
                    // This handles the case of batch burned tokens, where only the burned bit
                    // of the starting slot is set, and remaining slots are left uninitialized.
                    _revert(OwnerQueryForNonexistentToken.selector);
                }
            }
            // Otherwise, the data exists and we can skip the scan.
            // This is possible because we have already achieved the target condition.
            // This saves 2143 gas on transfers of initialized tokens.
            // If the token is not burned, return `packed`. Otherwise, revert.
            if (packed & _BITMASK_BURNED == 0) return packed;
        }
        _revert(OwnerQueryForNonexistentToken.selector);
    }

    /**
     * @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. See {ERC721A-_approve}.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     */
    function approve(address to, uint256 tokenId) public payable virtual override {
        _approve(to, tokenId, true);
    }

    /**
     * @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.selector);

        return _tokenApprovals[tokenId].value;
    }

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

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool result) {
        if (_startTokenId() <= tokenId) {
            if (tokenId > _sequentialUpTo()) return _packedOwnershipExists(_packedOwnerships[tokenId]);

            if (tokenId < _currentIndex) {
                uint256 packed;
                while ((packed = _packedOwnerships[tokenId]) == 0) --tokenId;
                result = packed & _BITMASK_BURNED == 0;
            }
        }
    }

    /**
     * @dev Returns whether `packed` represents a token that exists.
     */
    function _packedOwnershipExists(uint256 packed) private pure returns (bool result) {
        assembly {
            // The following is equivalent to `owner != address(0) && burned == false`.
            // Symbolically tested.
            result := gt(and(packed, _BITMASK_ADDRESS), and(packed, _BITMASK_BURNED))
        }
    }

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

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

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

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

        // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
        from = address(uint160(uint256(uint160(from)) & _BITMASK_ADDRESS));

        if (address(uint160(prevOwnershipPacked)) != from) _revert(TransferFromIncorrectOwner.selector);

        (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.selector);

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

        // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
        uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS;
        assembly {
            // 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.
                from, // `from`.
                toMasked, // `to`.
                tokenId // `tokenId`.
            )
        }
        if (toMasked == 0) _revert(TransferToZeroAddress.selector);

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

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

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

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

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

            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
            uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS;

            if (toMasked == 0) _revert(MintToZeroAddress.selector);

            uint256 end = startTokenId + quantity;
            uint256 tokenId = startTokenId;

            if (end - 1 > _sequentialUpTo()) _revert(SequentialMintExceedsLimit.selector);

            do {
                assembly {
                    // 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`.
                        tokenId // `tokenId`.
                    )
                }
                // The `!=` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
            } while (++tokenId != end);

            _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.selector);
        if (quantity == 0) _revert(MintZeroQuantity.selector);
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) _revert(MintERC2309QuantityExceedsLimit.selector);

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

            if (startTokenId + quantity - 1 > _sequentialUpTo()) _revert(SequentialMintExceedsLimit.selector);

            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.selector);
                    }
                } while (index < end);
                // This prevents reentrancy to `_safeMint`.
                // It does not prevent reentrancy to `_safeMintSpot`.
                if (_currentIndex != end) revert();
            }
        }
    }

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

    /**
     * @dev Mints a single token at `tokenId`.
     *
     * Note: A spot-minted `tokenId` that has been burned can be re-minted again.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` must be greater than `_sequentialUpTo()`.
     * - `tokenId` must not exist.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mintSpot(address to, uint256 tokenId) internal virtual {
        if (tokenId <= _sequentialUpTo()) _revert(SpotMintTokenIdTooSmall.selector);
        uint256 prevOwnershipPacked = _packedOwnerships[tokenId];
        if (_packedOwnershipExists(prevOwnershipPacked)) _revert(TokenAlreadyExists.selector);

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

        // Overflows are incredibly unrealistic.
        // The `numberMinted` for `to` is incremented by 1, and has a max limit of 2**64 - 1.
        // `_spotMinted` is incremented by 1, and has a max limit of 2**256 - 1.
        unchecked {
            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `true` (as `quantity == 1`).
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(1) | _nextExtraData(address(0), to, prevOwnershipPacked)
            );

            // Updates:
            // - `balance += 1`.
            // - `numberMinted += 1`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += (1 << _BITPOS_NUMBER_MINTED) | 1;

            // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
            uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS;

            if (toMasked == 0) _revert(MintToZeroAddress.selector);

            assembly {
                // 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`.
                    tokenId // `tokenId`.
                )
            }

            ++_spotMinted;
        }

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

    /**
     * @dev Safely mints a single token at `tokenId`.
     *
     * Note: A spot-minted `tokenId` that has been burned can be re-minted again.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}.
     * - `tokenId` must be greater than `_sequentialUpTo()`.
     * - `tokenId` must not exist.
     *
     * See {_mintSpot}.
     *
     * Emits a {Transfer} event.
     */
    function _safeMintSpot(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mintSpot(to, tokenId);

        unchecked {
            if (to.code.length != 0) {
                uint256 currentSpotMinted = _spotMinted;
                if (!_checkContractOnERC721Received(address(0), to, tokenId, _data)) {
                    _revert(TransferToNonERC721ReceiverImplementer.selector);
                }
                // This prevents reentrancy to `_safeMintSpot`.
                // It does not prevent reentrancy to `_safeMint`.
                if (_spotMinted != currentSpotMinted) revert();
            }
        }
    }

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

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

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

    /**
     * @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:
     *
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        bool approvalCheck
    ) internal virtual {
        address owner = ownerOf(tokenId);

        if (approvalCheck && _msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                _revert(ApprovalCallerNotOwnerNorApproved.selector);
            }

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

    // =============================================================
    //                        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.selector);
        }

        _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 + _spotMinted` 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.selector);
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

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

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

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

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

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

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

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

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

    /**
     * @dev For more efficient reverts.
     */
    function _revert(bytes4 errorSelector) internal pure {
        assembly {
            mstore(0x00, errorSelector)
            revert(0x00, 0x04)
        }
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;


/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Muldiv operation overflow.
     */
    error MathOverflowedMulDiv();

    enum Rounding {
        Floor, // Toward negative infinity
        Ceil, // Toward positive infinity
        Trunc, // Toward zero
        Expand // Away from zero
    }

    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds towards infinity instead
     * of rounding towards zero.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        if (b == 0) {
            // Guarantee the same behavior as in a regular Solidity division.
            return a / b;
        }

        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

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

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            if (denominator <= prod1) {
                revert MathOverflowedMulDiv();
            }

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

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

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

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

            uint256 twos = denominator & (0 - denominator);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
     */
    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
        return uint8(rounding) % 2 == 1;
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

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

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol)

pragma solidity ^0.8.20;



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

    /**
     * @dev The `value` string doesn't fit in the specified `length`.
     */
    error StringsInsufficientHexLength(uint256 value, uint256 length);

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

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toStringSigned(int256 value) internal pure returns (string memory) {
        return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value)));
    }

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        uint256 localValue = value;
        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_DIGITS[localValue & 0xf];
            localValue >>= 4;
        }
        if (localValue != 0) {
            revert StringsInsufficientHexLength(value, length);
        }
        return string(buffer);
    }

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

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

// File: template/MintByERC20.sol


pragma solidity ^0.8.20;





contract MintByERC20 is ERC721A, Ownable {

    // config
    constructor(address initialOwner)
        ERC721A("Mint By ERC20", "MBERC20")
        Ownable(initialOwner) {
    }
    uint256 public MAX_SUPPLY = 10_000;
    uint256 public MAX_MINT_PER_WALLET = 10;
    uint256 public START_ID = 1;

    bool public mintEnabled = true;
    string public baseURI = "ipfs://bafybeia3xoh2kgd6hhvn5gwk2s7en7fh5jf4gpw4zk5asho4pit4ozzyfu/";
    IERC20 public token;
    uint256 public mintPrice = 1_000_000 * 10**18; // 1M token

    // start token id
    function _startTokenId() internal view virtual override returns (uint256) {
        return START_ID;
    }

    // metadata
    function setBaseURI(string calldata _newBaseURI) external onlyOwner {
        baseURI = _newBaseURI;
    }
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        return string.concat(baseURI, Strings.toString(tokenId), ".json");
    }

    // token
    function setToken(address newToken) external onlyOwner {
        token = IERC20(newToken);
    }
    function setMintPrice(uint256 _newMintPrice) external onlyOwner {
        mintPrice = _newMintPrice;
    }
    function withdraw(uint256 amount) external onlyOwner {
        require(token.transfer(msg.sender, amount), "Transfer token failed");
    }

    // toggle sale
    function toggleSale() external onlyOwner {
        mintEnabled = !mintEnabled;
    }

    // mint
    function mint(uint quantity, bytes32[] calldata _merkleProof) external {
        require(mintEnabled, "Sale is not enabled");
        require(_numberMinted(msg.sender) + quantity <= MAX_MINT_PER_WALLET, "Over wallet limit");

        uint256 totalPrice = mintPrice * quantity;
        require(token.balanceOf(msg.sender) >= totalPrice, "Insufficient funds");
        require(token.transferFrom(msg.sender, address(this), totalPrice), "Payment failed");
        
        _checkSupplyAndMint(msg.sender, quantity);
    }
    function adminMint(uint quantity) external onlyOwner {
        _checkSupplyAndMint(msg.sender, quantity);
    }
    function _checkSupplyAndMint(address to, uint256 quantity) private {
        require(_totalMinted() + quantity <= MAX_SUPPLY, "Over supply");

        _mint(to, quantity);
    }

    // aliases
    function numberMinted(address owner) external view returns (uint256) {
        return _numberMinted(owner);
    }
    function remainingSupply() external view returns (uint256) {
        return MAX_SUPPLY - _totalMinted();
    }

}

Contract ABI

[{"inputs":[{"internalType":"address","name":"initialOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NotCompatibleWithSpotMints","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"SequentialMintExceedsLimit","type":"error"},{"inputs":[],"name":"SequentialUpToTooSmall","type":"error"},{"inputs":[],"name":"SpotMintTokenIdTooSmall","type":"error"},{"inputs":[],"name":"TokenAlreadyExists","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_MINT_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"START_ID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"remainingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newToken","type":"address"}],"name":"setToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"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":"result","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052612710600a55600a600b556001600c556001600d5f6101000a81548160ff0219169083151502179055506040518060800160405280604381526020016200384d60439139600e90816200005891906200056c565b5069d3c21bcecceda100000060105534801562000073575f80fd5b5060405162003890380380620038908339818101604052810190620000999190620006b5565b806040518060400160405280600d81526020017f4d696e74204279204552433230000000000000000000000000000000000000008152506040518060400160405280600781526020017f4d4245524332300000000000000000000000000000000000000000000000000081525081600290816200011791906200056c565b5080600390816200012991906200056c565b506200013a6200020d60201b60201c565b5f819055506200014f6200020d60201b60201c565b6200015f6200021660201b60201c565b10156200017f576200017e63fed8210f60e01b6200023d60201b60201c565b5b50505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620001f4575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620001eb9190620006f6565b60405180910390fd5b62000205816200024560201b60201c565b505062000711565b5f600c54905090565b5f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff905090565b805f5260045ffd5b5f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200038457607f821691505b6020821081036200039a57620003996200033f565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620003fe7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003c1565b6200040a8683620003c1565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620004546200044e620004488462000422565b6200042b565b62000422565b9050919050565b5f819050919050565b6200046f8362000434565b620004876200047e826200045b565b848454620003cd565b825550505050565b5f90565b6200049d6200048f565b620004aa81848462000464565b505050565b5b81811015620004d157620004c55f8262000493565b600181019050620004b0565b5050565b601f8211156200052057620004ea81620003a0565b620004f584620003b2565b8101602085101562000505578190505b6200051d6200051485620003b2565b830182620004af565b50505b505050565b5f82821c905092915050565b5f620005425f198460080262000525565b1980831691505092915050565b5f6200055c838362000531565b9150826002028217905092915050565b620005778262000308565b67ffffffffffffffff81111562000593576200059262000312565b5b6200059f82546200036c565b620005ac828285620004d5565b5f60209050601f831160018114620005e2575f8415620005cd578287015190505b620005d985826200054f565b86555062000648565b601f198416620005f286620003a0565b5f5b828110156200061b57848901518255600182019150602085019450602081019050620005f4565b868310156200063b578489015162000637601f89168262000531565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200067f8262000654565b9050919050565b620006918162000673565b81146200069c575f80fd5b50565b5f81519050620006af8162000686565b92915050565b5f60208284031215620006cd57620006cc62000650565b5b5f620006dc848285016200069f565b91505092915050565b620006f08162000673565b82525050565b5f6020820190506200070b5f830184620006e5565b92915050565b61312e806200071f5f395ff3fe6080604052600436106101ed575f3560e01c80637d8966e41161010c578063c1f261231161009f578063dc33e6811161006e578063dc33e68114610677578063e985e9c5146106b3578063f2fde38b146106ef578063f4a0a52814610717578063fc0c546a1461073f576101ed565b8063c1f26123146105bf578063c87b56dd146105e7578063d123973014610623578063da0239a61461064d576101ed565b8063aa39fbbe116100db578063aa39fbbe14610527578063b19960e614610551578063b88d4fde1461057b578063ba41b0c614610597576101ed565b80637d8966e4146104955780638da5cb5b146104ab57806395d89b41146104d5578063a22cb465146104ff576101ed565b806332cb6b0c116101845780636817c76c116101535780636817c76c146103ef5780636c0360eb1461041957806370a0823114610443578063715018a61461047f576101ed565b806332cb6b0c1461034557806342842e0e1461036f57806355f804b31461038b5780636352211e146103b3576101ed565b8063144fa6d7116101c0578063144fa6d7146102af57806318160ddd146102d757806323b872dd146103015780632e1a7d4d1461031d576101ed565b806301ffc9a7146101f157806306fdde031461022d578063081812fc14610257578063095ea7b314610293575b5f80fd5b3480156101fc575f80fd5b50610217600480360381019061021291906120e8565b610769565b604051610224919061212d565b60405180910390f35b348015610238575f80fd5b506102416107fa565b60405161024e91906121d0565b60405180910390f35b348015610262575f80fd5b5061027d60048036038101906102789190612223565b61088a565b60405161028a919061228d565b60405180910390f35b6102ad60048036038101906102a891906122d0565b6108e3565b005b3480156102ba575f80fd5b506102d560048036038101906102d0919061230e565b6108f3565b005b3480156102e2575f80fd5b506102eb61093e565b6040516102f89190612348565b60405180910390f35b61031b60048036038101906103169190612361565b610989565b005b348015610328575f80fd5b50610343600480360381019061033e9190612223565b610c34565b005b348015610350575f80fd5b50610359610d1a565b6040516103669190612348565b60405180910390f35b61038960048036038101906103849190612361565b610d20565b005b348015610396575f80fd5b506103b160048036038101906103ac9190612412565b610d3f565b005b3480156103be575f80fd5b506103d960048036038101906103d49190612223565b610d5d565b6040516103e6919061228d565b60405180910390f35b3480156103fa575f80fd5b50610403610d6e565b6040516104109190612348565b60405180910390f35b348015610424575f80fd5b5061042d610d74565b60405161043a91906121d0565b60405180910390f35b34801561044e575f80fd5b506104696004803603810190610464919061230e565b610e00565b6040516104769190612348565b60405180910390f35b34801561048a575f80fd5b50610493610e94565b005b3480156104a0575f80fd5b506104a9610ea7565b005b3480156104b6575f80fd5b506104bf610ed9565b6040516104cc919061228d565b60405180910390f35b3480156104e0575f80fd5b506104e9610f01565b6040516104f691906121d0565b60405180910390f35b34801561050a575f80fd5b5061052560048036038101906105209190612487565b610f91565b005b348015610532575f80fd5b5061053b611097565b6040516105489190612348565b60405180910390f35b34801561055c575f80fd5b5061056561109d565b6040516105729190612348565b60405180910390f35b610595600480360381019061059091906125ed565b6110a3565b005b3480156105a2575f80fd5b506105bd60048036038101906105b891906126c2565b6110f4565b005b3480156105ca575f80fd5b506105e560048036038101906105e09190612223565b611373565b005b3480156105f2575f80fd5b5061060d60048036038101906106089190612223565b611388565b60405161061a91906121d0565b60405180910390f35b34801561062e575f80fd5b506106376113bc565b604051610644919061212d565b60405180910390f35b348015610658575f80fd5b506106616113ce565b60405161066e9190612348565b60405180910390f35b348015610682575f80fd5b5061069d6004803603810190610698919061230e565b6113e9565b6040516106aa9190612348565b60405180910390f35b3480156106be575f80fd5b506106d960048036038101906106d4919061271f565b6113fa565b6040516106e6919061212d565b60405180910390f35b3480156106fa575f80fd5b506107156004803603810190610710919061230e565b611488565b005b348015610722575f80fd5b5061073d60048036038101906107389190612223565b61150c565b005b34801561074a575f80fd5b5061075361151e565b60405161076091906127b8565b60405180910390f35b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107f35750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610809906127fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610835906127fe565b80156108805780601f1061085757610100808354040283529160200191610880565b820191905f5260205f20905b81548152906001019060200180831161086357829003601f168201915b5050505050905090565b5f61089482611543565b6108a9576108a863cf4700e460e01b6115e6565b5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6108ef828260016115ee565b5050565b6108fb611718565b80600f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f61094761179f565b6001545f54030390507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6109796117a8565b1461098657600854810190505b90565b5f610993826117cf565b905073ffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff161693508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a0857610a0763a114810060e01b6115e6565b5b5f80610a13846118de565b91509150610a298187610a24611901565b611908565b610a5457610a3e86610a39611901565b6113fa565b610a5357610a526359c896be60e01b6115e6565b5b5b610a61868686600161194b565b8015610a6b575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610b3385610b0f888887611951565b7c020000000000000000000000000000000000000000000000000000000017611978565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610baf575f6001850190505f60045f8381526020019081526020015f205403610bad575f548114610bac578360045f8381526020019081526020015f20819055505b5b505b5f73ffffffffffffffffffffffffffffffffffffffff8673ffffffffffffffffffffffffffffffffffffffff161690508481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a45f8103610c1e57610c1d63ea553b3460e01b6115e6565b5b610c2b87878760016119a2565b50505050505050565b610c3c611718565b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610c9892919061282e565b6020604051808303815f875af1158015610cb4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cd89190612869565b610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e906128de565b60405180910390fd5b50565b600a5481565b610d3a83838360405180602001604052805f8152506110a3565b505050565b610d47611718565b8181600e9182610d58929190612a9a565b505050565b5f610d67826117cf565b9050919050565b60105481565b600e8054610d81906127fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610dad906127fe565b8015610df85780601f10610dcf57610100808354040283529160200191610df8565b820191905f5260205f20905b815481529060010190602001808311610ddb57829003601f168201915b505050505081565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e4557610e44638f4eb60460e01b6115e6565b5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610e9c611718565b610ea55f6119a8565b565b610eaf611718565b600d5f9054906101000a900460ff1615600d5f6101000a81548160ff021916908315150217905550565b5f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f10906127fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3c906127fe565b8015610f875780601f10610f5e57610100808354040283529160200191610f87565b820191905f5260205f20905b815481529060010190602001808311610f6a57829003601f168201915b5050505050905090565b8060075f610f9d611901565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611046611901565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161108b919061212d565b60405180910390a35050565b600c5481565b600b5481565b6110ae848484610989565b5f8373ffffffffffffffffffffffffffffffffffffffff163b146110ee576110d884848484611a6b565b6110ed576110ec63d1a57ed660e01b6115e6565b5b5b50505050565b600d5f9054906101000a900460ff16611142576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113990612bb1565b60405180910390fd5b600b548361114f33611b95565b6111599190612bfc565b111561119a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119190612c79565b60405180910390fd5b5f836010546111a99190612c97565b905080600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401611206919061228d565b602060405180830381865afa158015611221573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112459190612cec565b1015611286576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127d90612d61565b60405180910390fd5b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b81526004016112e493929190612d7f565b6020604051808303815f875af1158015611300573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113249190612869565b611363576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135a90612dfe565b60405180910390fd5b61136d3385611be9565b50505050565b61137b611718565b6113853382611be9565b50565b6060600e61139583611c4e565b6040516020016113a6929190612efc565b6040516020818303038152906040529050919050565b600d5f9054906101000a900460ff1681565b5f6113d7611d18565b600a546113e49190612f2e565b905090565b5f6113f382611b95565b9050919050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b611490611718565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611500575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016114f7919061228d565b60405180910390fd5b611509816119a8565b50565b611514611718565b8060108190555050565b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f8161154d61179f565b116115e05761155a6117a8565b8211156115825761157b60045f8481526020019081526020015f2054611d5f565b90506115e1565b5f548210156115df575f5b5f60045f8581526020019081526020015f2054915081036115b957826115b290612f61565b925061158d565b5f7c01000000000000000000000000000000000000000000000000000000008216149150505b5b5b919050565b805f5260045ffd5b5f6115f883610d5d565b905081801561163a57508073ffffffffffffffffffffffffffffffffffffffff16611621611901565b73ffffffffffffffffffffffffffffffffffffffff1614155b15611666576116508161164b611901565b6113fa565b6116655761166463cfb3b94260e01b6115e6565b5b5b8360065f8581526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550828473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a450505050565b611720611d9f565b73ffffffffffffffffffffffffffffffffffffffff1661173e610ed9565b73ffffffffffffffffffffffffffffffffffffffff161461179d57611761611d9f565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611794919061228d565b60405180910390fd5b565b5f600c54905090565b5f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff905090565b5f816117d961179f565b116118c85760045f8381526020019081526020015f205490506117fa6117a8565b82111561181f5761180a81611d5f565b6118d95761181e63df2d9b4260e01b6115e6565b5b5f81036118a0575f54821061183f5761183e63df2d9b4260e01b6115e6565b5b5b60045f836001900393508381526020019081526020015f205490505f81031561189b575f7c0100000000000000000000000000000000000000000000000000000000821603156118d95761189a63df2d9b4260e01b6115e6565b5b611840565b5f7c0100000000000000000000000000000000000000000000000000000000821603156118d9575b6118d863df2d9b4260e01b6115e6565b5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e8611967868684611da6565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b5f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a90611901565b8786866040518563ffffffff1660e01b8152600401611ab29493929190612fda565b6020604051808303815f875af1925050508015611aed57506040513d601f19601f82011682018060405250810190611aea9190613038565b60015b611b42573d805f8114611b1b576040519150601f19603f3d011682016040523d82523d5f602084013e611b20565b606091505b505f815103611b3a57611b3963d1a57ed660e01b6115e6565b5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b5f67ffffffffffffffff604060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054901c169050919050565b600a5481611bf5611d18565b611bff9190612bfc565b1115611c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c37906130ad565b60405180910390fd5b611c4a8282611dae565b5050565b60605f6001611c5c84611f22565b0190505f8167ffffffffffffffff811115611c7a57611c796124c9565b5b6040519080825280601f01601f191660200182016040528015611cac5781602001600182028036833780820191505090505b5090505f82602001820190505b600115611d0d578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611d0257611d016130cb565b5b0494505f8503611cb9575b819350505050919050565b5f611d2161179f565b5f540390507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611d4f6117a8565b14611d5c57600854810190505b90565b5f7c0100000000000000000000000000000000000000000000000000000000821673ffffffffffffffffffffffffffffffffffffffff8316119050919050565b5f33905090565b5f9392505050565b5f805490505f8203611dcb57611dca63b562e8dd60e01b6115e6565b5b611dd75f84838561194b565b611df583611de65f865f611951565b611def85612073565b17611978565b60045f8381526020019081526020015f2081905550600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505f73ffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff161690505f8103611ea657611ea5632e07630060e01b6115e6565b5b5f83830190505f839050611eb86117a8565b600183031115611ed357611ed26381647e3a60e01b6115e6565b5b5b80835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4818160010191508103611ed457815f81905550505050611f1d5f8483856119a2565b505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611f7e577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611f7457611f736130cb565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611fbb576d04ee2d6d415b85acef81000000008381611fb157611fb06130cb565b5b0492506020810190505b662386f26fc100008310611fea57662386f26fc100008381611fe057611fdf6130cb565b5b0492506010810190505b6305f5e1008310612013576305f5e1008381612009576120086130cb565b5b0492506008810190505b612710831061203857612710838161202e5761202d6130cb565b5b0492506004810190505b6064831061205b5760648381612051576120506130cb565b5b0492506002810190505b600a831061206a576001810190505b80915050919050565b5f6001821460e11b9050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6120c781612093565b81146120d1575f80fd5b50565b5f813590506120e2816120be565b92915050565b5f602082840312156120fd576120fc61208b565b5b5f61210a848285016120d4565b91505092915050565b5f8115159050919050565b61212781612113565b82525050565b5f6020820190506121405f83018461211e565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561217d578082015181840152602081019050612162565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6121a282612146565b6121ac8185612150565b93506121bc818560208601612160565b6121c581612188565b840191505092915050565b5f6020820190508181035f8301526121e88184612198565b905092915050565b5f819050919050565b612202816121f0565b811461220c575f80fd5b50565b5f8135905061221d816121f9565b92915050565b5f602082840312156122385761223761208b565b5b5f6122458482850161220f565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6122778261224e565b9050919050565b6122878161226d565b82525050565b5f6020820190506122a05f83018461227e565b92915050565b6122af8161226d565b81146122b9575f80fd5b50565b5f813590506122ca816122a6565b92915050565b5f80604083850312156122e6576122e561208b565b5b5f6122f3858286016122bc565b92505060206123048582860161220f565b9150509250929050565b5f602082840312156123235761232261208b565b5b5f612330848285016122bc565b91505092915050565b612342816121f0565b82525050565b5f60208201905061235b5f830184612339565b92915050565b5f805f606084860312156123785761237761208b565b5b5f612385868287016122bc565b9350506020612396868287016122bc565b92505060406123a78682870161220f565b9150509250925092565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126123d2576123d16123b1565b5b8235905067ffffffffffffffff8111156123ef576123ee6123b5565b5b60208301915083600182028301111561240b5761240a6123b9565b5b9250929050565b5f80602083850312156124285761242761208b565b5b5f83013567ffffffffffffffff8111156124455761244461208f565b5b612451858286016123bd565b92509250509250929050565b61246681612113565b8114612470575f80fd5b50565b5f813590506124818161245d565b92915050565b5f806040838503121561249d5761249c61208b565b5b5f6124aa858286016122bc565b92505060206124bb85828601612473565b9150509250929050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6124ff82612188565b810181811067ffffffffffffffff8211171561251e5761251d6124c9565b5b80604052505050565b5f612530612082565b905061253c82826124f6565b919050565b5f67ffffffffffffffff82111561255b5761255a6124c9565b5b61256482612188565b9050602081019050919050565b828183375f83830152505050565b5f61259161258c84612541565b612527565b9050828152602081018484840111156125ad576125ac6124c5565b5b6125b8848285612571565b509392505050565b5f82601f8301126125d4576125d36123b1565b5b81356125e484826020860161257f565b91505092915050565b5f805f80608085870312156126055761260461208b565b5b5f612612878288016122bc565b9450506020612623878288016122bc565b93505060406126348782880161220f565b925050606085013567ffffffffffffffff8111156126555761265461208f565b5b612661878288016125c0565b91505092959194509250565b5f8083601f840112612682576126816123b1565b5b8235905067ffffffffffffffff81111561269f5761269e6123b5565b5b6020830191508360208202830111156126bb576126ba6123b9565b5b9250929050565b5f805f604084860312156126d9576126d861208b565b5b5f6126e68682870161220f565b935050602084013567ffffffffffffffff8111156127075761270661208f565b5b6127138682870161266d565b92509250509250925092565b5f80604083850312156127355761273461208b565b5b5f612742858286016122bc565b9250506020612753858286016122bc565b9150509250929050565b5f819050919050565b5f61278061277b6127768461224e565b61275d565b61224e565b9050919050565b5f61279182612766565b9050919050565b5f6127a282612787565b9050919050565b6127b281612798565b82525050565b5f6020820190506127cb5f8301846127a9565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061281557607f821691505b602082108103612828576128276127d1565b5b50919050565b5f6040820190506128415f83018561227e565b61284e6020830184612339565b9392505050565b5f815190506128638161245d565b92915050565b5f6020828403121561287e5761287d61208b565b5b5f61288b84828501612855565b91505092915050565b7f5472616e7366657220746f6b656e206661696c656400000000000000000000005f82015250565b5f6128c8601583612150565b91506128d382612894565b602082019050919050565b5f6020820190508181035f8301526128f5816128bc565b9050919050565b5f82905092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026129627fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612927565b61296c8683612927565b95508019841693508086168417925050509392505050565b5f61299e612999612994846121f0565b61275d565b6121f0565b9050919050565b5f819050919050565b6129b783612984565b6129cb6129c3826129a5565b848454612933565b825550505050565b5f90565b6129df6129d3565b6129ea8184846129ae565b505050565b5b81811015612a0d57612a025f826129d7565b6001810190506129f0565b5050565b601f821115612a5257612a2381612906565b612a2c84612918565b81016020851015612a3b578190505b612a4f612a4785612918565b8301826129ef565b50505b505050565b5f82821c905092915050565b5f612a725f1984600802612a57565b1980831691505092915050565b5f612a8a8383612a63565b9150826002028217905092915050565b612aa483836128fc565b67ffffffffffffffff811115612abd57612abc6124c9565b5b612ac782546127fe565b612ad2828285612a11565b5f601f831160018114612aff575f8415612aed578287013590505b612af78582612a7f565b865550612b5e565b601f198416612b0d86612906565b5f5b82811015612b3457848901358255600182019150602085019450602081019050612b0f565b86831015612b515784890135612b4d601f891682612a63565b8355505b6001600288020188555050505b50505050505050565b7f53616c65206973206e6f7420656e61626c6564000000000000000000000000005f82015250565b5f612b9b601383612150565b9150612ba682612b67565b602082019050919050565b5f6020820190508181035f830152612bc881612b8f565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612c06826121f0565b9150612c11836121f0565b9250828201905080821115612c2957612c28612bcf565b5b92915050565b7f4f7665722077616c6c6574206c696d69740000000000000000000000000000005f82015250565b5f612c63601183612150565b9150612c6e82612c2f565b602082019050919050565b5f6020820190508181035f830152612c9081612c57565b9050919050565b5f612ca1826121f0565b9150612cac836121f0565b9250828202612cba816121f0565b91508282048414831517612cd157612cd0612bcf565b5b5092915050565b5f81519050612ce6816121f9565b92915050565b5f60208284031215612d0157612d0061208b565b5b5f612d0e84828501612cd8565b91505092915050565b7f496e73756666696369656e742066756e647300000000000000000000000000005f82015250565b5f612d4b601283612150565b9150612d5682612d17565b602082019050919050565b5f6020820190508181035f830152612d7881612d3f565b9050919050565b5f606082019050612d925f83018661227e565b612d9f602083018561227e565b612dac6040830184612339565b949350505050565b7f5061796d656e74206661696c65640000000000000000000000000000000000005f82015250565b5f612de8600e83612150565b9150612df382612db4565b602082019050919050565b5f6020820190508181035f830152612e1581612ddc565b9050919050565b5f81905092915050565b5f8154612e32816127fe565b612e3c8186612e1c565b9450600182165f8114612e565760018114612e6b57612e9d565b60ff1983168652811515820286019350612e9d565b612e7485612906565b5f5b83811015612e9557815481890152600182019150602081019050612e76565b838801955050505b50505092915050565b5f612eb082612146565b612eba8185612e1c565b9350612eca818560208601612160565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000815250565b5f612f078285612e26565b9150612f138284612ea6565b9150612f1e82612ed6565b6005820191508190509392505050565b5f612f38826121f0565b9150612f43836121f0565b9250828203905081811115612f5b57612f5a612bcf565b5b92915050565b5f612f6b826121f0565b91505f8203612f7d57612f7c612bcf565b5b600182039050919050565b5f81519050919050565b5f82825260208201905092915050565b5f612fac82612f88565b612fb68185612f92565b9350612fc6818560208601612160565b612fcf81612188565b840191505092915050565b5f608082019050612fed5f83018761227e565b612ffa602083018661227e565b6130076040830185612339565b81810360608301526130198184612fa2565b905095945050505050565b5f81519050613032816120be565b92915050565b5f6020828403121561304d5761304c61208b565b5b5f61305a84828501613024565b91505092915050565b7f4f76657220737570706c790000000000000000000000000000000000000000005f82015250565b5f613097600b83612150565b91506130a282613063565b602082019050919050565b5f6020820190508181035f8301526130c48161308b565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffdfea2646970667358221220cad7ff47e5029f2c794d45e970e5a97b077539e4e419debf98d78e1eb589589364736f6c63430008140033697066733a2f2f626166796265696133786f68326b6764366868766e3567776b327337656e376668356a6634677077347a6b356173686f34706974346f7a7a7966752f000000000000000000000000f705cb1501d04462ab7ff142f1f0ad198175725e

Deployed Bytecode

0x6080604052600436106101ed575f3560e01c80637d8966e41161010c578063c1f261231161009f578063dc33e6811161006e578063dc33e68114610677578063e985e9c5146106b3578063f2fde38b146106ef578063f4a0a52814610717578063fc0c546a1461073f576101ed565b8063c1f26123146105bf578063c87b56dd146105e7578063d123973014610623578063da0239a61461064d576101ed565b8063aa39fbbe116100db578063aa39fbbe14610527578063b19960e614610551578063b88d4fde1461057b578063ba41b0c614610597576101ed565b80637d8966e4146104955780638da5cb5b146104ab57806395d89b41146104d5578063a22cb465146104ff576101ed565b806332cb6b0c116101845780636817c76c116101535780636817c76c146103ef5780636c0360eb1461041957806370a0823114610443578063715018a61461047f576101ed565b806332cb6b0c1461034557806342842e0e1461036f57806355f804b31461038b5780636352211e146103b3576101ed565b8063144fa6d7116101c0578063144fa6d7146102af57806318160ddd146102d757806323b872dd146103015780632e1a7d4d1461031d576101ed565b806301ffc9a7146101f157806306fdde031461022d578063081812fc14610257578063095ea7b314610293575b5f80fd5b3480156101fc575f80fd5b50610217600480360381019061021291906120e8565b610769565b604051610224919061212d565b60405180910390f35b348015610238575f80fd5b506102416107fa565b60405161024e91906121d0565b60405180910390f35b348015610262575f80fd5b5061027d60048036038101906102789190612223565b61088a565b60405161028a919061228d565b60405180910390f35b6102ad60048036038101906102a891906122d0565b6108e3565b005b3480156102ba575f80fd5b506102d560048036038101906102d0919061230e565b6108f3565b005b3480156102e2575f80fd5b506102eb61093e565b6040516102f89190612348565b60405180910390f35b61031b60048036038101906103169190612361565b610989565b005b348015610328575f80fd5b50610343600480360381019061033e9190612223565b610c34565b005b348015610350575f80fd5b50610359610d1a565b6040516103669190612348565b60405180910390f35b61038960048036038101906103849190612361565b610d20565b005b348015610396575f80fd5b506103b160048036038101906103ac9190612412565b610d3f565b005b3480156103be575f80fd5b506103d960048036038101906103d49190612223565b610d5d565b6040516103e6919061228d565b60405180910390f35b3480156103fa575f80fd5b50610403610d6e565b6040516104109190612348565b60405180910390f35b348015610424575f80fd5b5061042d610d74565b60405161043a91906121d0565b60405180910390f35b34801561044e575f80fd5b506104696004803603810190610464919061230e565b610e00565b6040516104769190612348565b60405180910390f35b34801561048a575f80fd5b50610493610e94565b005b3480156104a0575f80fd5b506104a9610ea7565b005b3480156104b6575f80fd5b506104bf610ed9565b6040516104cc919061228d565b60405180910390f35b3480156104e0575f80fd5b506104e9610f01565b6040516104f691906121d0565b60405180910390f35b34801561050a575f80fd5b5061052560048036038101906105209190612487565b610f91565b005b348015610532575f80fd5b5061053b611097565b6040516105489190612348565b60405180910390f35b34801561055c575f80fd5b5061056561109d565b6040516105729190612348565b60405180910390f35b610595600480360381019061059091906125ed565b6110a3565b005b3480156105a2575f80fd5b506105bd60048036038101906105b891906126c2565b6110f4565b005b3480156105ca575f80fd5b506105e560048036038101906105e09190612223565b611373565b005b3480156105f2575f80fd5b5061060d60048036038101906106089190612223565b611388565b60405161061a91906121d0565b60405180910390f35b34801561062e575f80fd5b506106376113bc565b604051610644919061212d565b60405180910390f35b348015610658575f80fd5b506106616113ce565b60405161066e9190612348565b60405180910390f35b348015610682575f80fd5b5061069d6004803603810190610698919061230e565b6113e9565b6040516106aa9190612348565b60405180910390f35b3480156106be575f80fd5b506106d960048036038101906106d4919061271f565b6113fa565b6040516106e6919061212d565b60405180910390f35b3480156106fa575f80fd5b506107156004803603810190610710919061230e565b611488565b005b348015610722575f80fd5b5061073d60048036038101906107389190612223565b61150c565b005b34801561074a575f80fd5b5061075361151e565b60405161076091906127b8565b60405180910390f35b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107f35750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610809906127fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610835906127fe565b80156108805780601f1061085757610100808354040283529160200191610880565b820191905f5260205f20905b81548152906001019060200180831161086357829003601f168201915b5050505050905090565b5f61089482611543565b6108a9576108a863cf4700e460e01b6115e6565b5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6108ef828260016115ee565b5050565b6108fb611718565b80600f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f61094761179f565b6001545f54030390507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6109796117a8565b1461098657600854810190505b90565b5f610993826117cf565b905073ffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff161693508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a0857610a0763a114810060e01b6115e6565b5b5f80610a13846118de565b91509150610a298187610a24611901565b611908565b610a5457610a3e86610a39611901565b6113fa565b610a5357610a526359c896be60e01b6115e6565b5b5b610a61868686600161194b565b8015610a6b575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610b3385610b0f888887611951565b7c020000000000000000000000000000000000000000000000000000000017611978565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610baf575f6001850190505f60045f8381526020019081526020015f205403610bad575f548114610bac578360045f8381526020019081526020015f20819055505b5b505b5f73ffffffffffffffffffffffffffffffffffffffff8673ffffffffffffffffffffffffffffffffffffffff161690508481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a45f8103610c1e57610c1d63ea553b3460e01b6115e6565b5b610c2b87878760016119a2565b50505050505050565b610c3c611718565b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610c9892919061282e565b6020604051808303815f875af1158015610cb4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cd89190612869565b610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e906128de565b60405180910390fd5b50565b600a5481565b610d3a83838360405180602001604052805f8152506110a3565b505050565b610d47611718565b8181600e9182610d58929190612a9a565b505050565b5f610d67826117cf565b9050919050565b60105481565b600e8054610d81906127fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610dad906127fe565b8015610df85780601f10610dcf57610100808354040283529160200191610df8565b820191905f5260205f20905b815481529060010190602001808311610ddb57829003601f168201915b505050505081565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e4557610e44638f4eb60460e01b6115e6565b5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610e9c611718565b610ea55f6119a8565b565b610eaf611718565b600d5f9054906101000a900460ff1615600d5f6101000a81548160ff021916908315150217905550565b5f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f10906127fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3c906127fe565b8015610f875780601f10610f5e57610100808354040283529160200191610f87565b820191905f5260205f20905b815481529060010190602001808311610f6a57829003601f168201915b5050505050905090565b8060075f610f9d611901565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611046611901565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161108b919061212d565b60405180910390a35050565b600c5481565b600b5481565b6110ae848484610989565b5f8373ffffffffffffffffffffffffffffffffffffffff163b146110ee576110d884848484611a6b565b6110ed576110ec63d1a57ed660e01b6115e6565b5b5b50505050565b600d5f9054906101000a900460ff16611142576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113990612bb1565b60405180910390fd5b600b548361114f33611b95565b6111599190612bfc565b111561119a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119190612c79565b60405180910390fd5b5f836010546111a99190612c97565b905080600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401611206919061228d565b602060405180830381865afa158015611221573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112459190612cec565b1015611286576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127d90612d61565b60405180910390fd5b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b81526004016112e493929190612d7f565b6020604051808303815f875af1158015611300573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113249190612869565b611363576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135a90612dfe565b60405180910390fd5b61136d3385611be9565b50505050565b61137b611718565b6113853382611be9565b50565b6060600e61139583611c4e565b6040516020016113a6929190612efc565b6040516020818303038152906040529050919050565b600d5f9054906101000a900460ff1681565b5f6113d7611d18565b600a546113e49190612f2e565b905090565b5f6113f382611b95565b9050919050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b611490611718565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611500575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016114f7919061228d565b60405180910390fd5b611509816119a8565b50565b611514611718565b8060108190555050565b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f8161154d61179f565b116115e05761155a6117a8565b8211156115825761157b60045f8481526020019081526020015f2054611d5f565b90506115e1565b5f548210156115df575f5b5f60045f8581526020019081526020015f2054915081036115b957826115b290612f61565b925061158d565b5f7c01000000000000000000000000000000000000000000000000000000008216149150505b5b5b919050565b805f5260045ffd5b5f6115f883610d5d565b905081801561163a57508073ffffffffffffffffffffffffffffffffffffffff16611621611901565b73ffffffffffffffffffffffffffffffffffffffff1614155b15611666576116508161164b611901565b6113fa565b6116655761166463cfb3b94260e01b6115e6565b5b5b8360065f8581526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550828473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a450505050565b611720611d9f565b73ffffffffffffffffffffffffffffffffffffffff1661173e610ed9565b73ffffffffffffffffffffffffffffffffffffffff161461179d57611761611d9f565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611794919061228d565b60405180910390fd5b565b5f600c54905090565b5f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff905090565b5f816117d961179f565b116118c85760045f8381526020019081526020015f205490506117fa6117a8565b82111561181f5761180a81611d5f565b6118d95761181e63df2d9b4260e01b6115e6565b5b5f81036118a0575f54821061183f5761183e63df2d9b4260e01b6115e6565b5b5b60045f836001900393508381526020019081526020015f205490505f81031561189b575f7c0100000000000000000000000000000000000000000000000000000000821603156118d95761189a63df2d9b4260e01b6115e6565b5b611840565b5f7c0100000000000000000000000000000000000000000000000000000000821603156118d9575b6118d863df2d9b4260e01b6115e6565b5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e8611967868684611da6565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b5f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a90611901565b8786866040518563ffffffff1660e01b8152600401611ab29493929190612fda565b6020604051808303815f875af1925050508015611aed57506040513d601f19601f82011682018060405250810190611aea9190613038565b60015b611b42573d805f8114611b1b576040519150601f19603f3d011682016040523d82523d5f602084013e611b20565b606091505b505f815103611b3a57611b3963d1a57ed660e01b6115e6565b5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b5f67ffffffffffffffff604060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054901c169050919050565b600a5481611bf5611d18565b611bff9190612bfc565b1115611c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c37906130ad565b60405180910390fd5b611c4a8282611dae565b5050565b60605f6001611c5c84611f22565b0190505f8167ffffffffffffffff811115611c7a57611c796124c9565b5b6040519080825280601f01601f191660200182016040528015611cac5781602001600182028036833780820191505090505b5090505f82602001820190505b600115611d0d578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611d0257611d016130cb565b5b0494505f8503611cb9575b819350505050919050565b5f611d2161179f565b5f540390507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611d4f6117a8565b14611d5c57600854810190505b90565b5f7c0100000000000000000000000000000000000000000000000000000000821673ffffffffffffffffffffffffffffffffffffffff8316119050919050565b5f33905090565b5f9392505050565b5f805490505f8203611dcb57611dca63b562e8dd60e01b6115e6565b5b611dd75f84838561194b565b611df583611de65f865f611951565b611def85612073565b17611978565b60045f8381526020019081526020015f2081905550600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505f73ffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff161690505f8103611ea657611ea5632e07630060e01b6115e6565b5b5f83830190505f839050611eb86117a8565b600183031115611ed357611ed26381647e3a60e01b6115e6565b5b5b80835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4818160010191508103611ed457815f81905550505050611f1d5f8483856119a2565b505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611f7e577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611f7457611f736130cb565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611fbb576d04ee2d6d415b85acef81000000008381611fb157611fb06130cb565b5b0492506020810190505b662386f26fc100008310611fea57662386f26fc100008381611fe057611fdf6130cb565b5b0492506010810190505b6305f5e1008310612013576305f5e1008381612009576120086130cb565b5b0492506008810190505b612710831061203857612710838161202e5761202d6130cb565b5b0492506004810190505b6064831061205b5760648381612051576120506130cb565b5b0492506002810190505b600a831061206a576001810190505b80915050919050565b5f6001821460e11b9050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6120c781612093565b81146120d1575f80fd5b50565b5f813590506120e2816120be565b92915050565b5f602082840312156120fd576120fc61208b565b5b5f61210a848285016120d4565b91505092915050565b5f8115159050919050565b61212781612113565b82525050565b5f6020820190506121405f83018461211e565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561217d578082015181840152602081019050612162565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6121a282612146565b6121ac8185612150565b93506121bc818560208601612160565b6121c581612188565b840191505092915050565b5f6020820190508181035f8301526121e88184612198565b905092915050565b5f819050919050565b612202816121f0565b811461220c575f80fd5b50565b5f8135905061221d816121f9565b92915050565b5f602082840312156122385761223761208b565b5b5f6122458482850161220f565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6122778261224e565b9050919050565b6122878161226d565b82525050565b5f6020820190506122a05f83018461227e565b92915050565b6122af8161226d565b81146122b9575f80fd5b50565b5f813590506122ca816122a6565b92915050565b5f80604083850312156122e6576122e561208b565b5b5f6122f3858286016122bc565b92505060206123048582860161220f565b9150509250929050565b5f602082840312156123235761232261208b565b5b5f612330848285016122bc565b91505092915050565b612342816121f0565b82525050565b5f60208201905061235b5f830184612339565b92915050565b5f805f606084860312156123785761237761208b565b5b5f612385868287016122bc565b9350506020612396868287016122bc565b92505060406123a78682870161220f565b9150509250925092565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126123d2576123d16123b1565b5b8235905067ffffffffffffffff8111156123ef576123ee6123b5565b5b60208301915083600182028301111561240b5761240a6123b9565b5b9250929050565b5f80602083850312156124285761242761208b565b5b5f83013567ffffffffffffffff8111156124455761244461208f565b5b612451858286016123bd565b92509250509250929050565b61246681612113565b8114612470575f80fd5b50565b5f813590506124818161245d565b92915050565b5f806040838503121561249d5761249c61208b565b5b5f6124aa858286016122bc565b92505060206124bb85828601612473565b9150509250929050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6124ff82612188565b810181811067ffffffffffffffff8211171561251e5761251d6124c9565b5b80604052505050565b5f612530612082565b905061253c82826124f6565b919050565b5f67ffffffffffffffff82111561255b5761255a6124c9565b5b61256482612188565b9050602081019050919050565b828183375f83830152505050565b5f61259161258c84612541565b612527565b9050828152602081018484840111156125ad576125ac6124c5565b5b6125b8848285612571565b509392505050565b5f82601f8301126125d4576125d36123b1565b5b81356125e484826020860161257f565b91505092915050565b5f805f80608085870312156126055761260461208b565b5b5f612612878288016122bc565b9450506020612623878288016122bc565b93505060406126348782880161220f565b925050606085013567ffffffffffffffff8111156126555761265461208f565b5b612661878288016125c0565b91505092959194509250565b5f8083601f840112612682576126816123b1565b5b8235905067ffffffffffffffff81111561269f5761269e6123b5565b5b6020830191508360208202830111156126bb576126ba6123b9565b5b9250929050565b5f805f604084860312156126d9576126d861208b565b5b5f6126e68682870161220f565b935050602084013567ffffffffffffffff8111156127075761270661208f565b5b6127138682870161266d565b92509250509250925092565b5f80604083850312156127355761273461208b565b5b5f612742858286016122bc565b9250506020612753858286016122bc565b9150509250929050565b5f819050919050565b5f61278061277b6127768461224e565b61275d565b61224e565b9050919050565b5f61279182612766565b9050919050565b5f6127a282612787565b9050919050565b6127b281612798565b82525050565b5f6020820190506127cb5f8301846127a9565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061281557607f821691505b602082108103612828576128276127d1565b5b50919050565b5f6040820190506128415f83018561227e565b61284e6020830184612339565b9392505050565b5f815190506128638161245d565b92915050565b5f6020828403121561287e5761287d61208b565b5b5f61288b84828501612855565b91505092915050565b7f5472616e7366657220746f6b656e206661696c656400000000000000000000005f82015250565b5f6128c8601583612150565b91506128d382612894565b602082019050919050565b5f6020820190508181035f8301526128f5816128bc565b9050919050565b5f82905092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026129627fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612927565b61296c8683612927565b95508019841693508086168417925050509392505050565b5f61299e612999612994846121f0565b61275d565b6121f0565b9050919050565b5f819050919050565b6129b783612984565b6129cb6129c3826129a5565b848454612933565b825550505050565b5f90565b6129df6129d3565b6129ea8184846129ae565b505050565b5b81811015612a0d57612a025f826129d7565b6001810190506129f0565b5050565b601f821115612a5257612a2381612906565b612a2c84612918565b81016020851015612a3b578190505b612a4f612a4785612918565b8301826129ef565b50505b505050565b5f82821c905092915050565b5f612a725f1984600802612a57565b1980831691505092915050565b5f612a8a8383612a63565b9150826002028217905092915050565b612aa483836128fc565b67ffffffffffffffff811115612abd57612abc6124c9565b5b612ac782546127fe565b612ad2828285612a11565b5f601f831160018114612aff575f8415612aed578287013590505b612af78582612a7f565b865550612b5e565b601f198416612b0d86612906565b5f5b82811015612b3457848901358255600182019150602085019450602081019050612b0f565b86831015612b515784890135612b4d601f891682612a63565b8355505b6001600288020188555050505b50505050505050565b7f53616c65206973206e6f7420656e61626c6564000000000000000000000000005f82015250565b5f612b9b601383612150565b9150612ba682612b67565b602082019050919050565b5f6020820190508181035f830152612bc881612b8f565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612c06826121f0565b9150612c11836121f0565b9250828201905080821115612c2957612c28612bcf565b5b92915050565b7f4f7665722077616c6c6574206c696d69740000000000000000000000000000005f82015250565b5f612c63601183612150565b9150612c6e82612c2f565b602082019050919050565b5f6020820190508181035f830152612c9081612c57565b9050919050565b5f612ca1826121f0565b9150612cac836121f0565b9250828202612cba816121f0565b91508282048414831517612cd157612cd0612bcf565b5b5092915050565b5f81519050612ce6816121f9565b92915050565b5f60208284031215612d0157612d0061208b565b5b5f612d0e84828501612cd8565b91505092915050565b7f496e73756666696369656e742066756e647300000000000000000000000000005f82015250565b5f612d4b601283612150565b9150612d5682612d17565b602082019050919050565b5f6020820190508181035f830152612d7881612d3f565b9050919050565b5f606082019050612d925f83018661227e565b612d9f602083018561227e565b612dac6040830184612339565b949350505050565b7f5061796d656e74206661696c65640000000000000000000000000000000000005f82015250565b5f612de8600e83612150565b9150612df382612db4565b602082019050919050565b5f6020820190508181035f830152612e1581612ddc565b9050919050565b5f81905092915050565b5f8154612e32816127fe565b612e3c8186612e1c565b9450600182165f8114612e565760018114612e6b57612e9d565b60ff1983168652811515820286019350612e9d565b612e7485612906565b5f5b83811015612e9557815481890152600182019150602081019050612e76565b838801955050505b50505092915050565b5f612eb082612146565b612eba8185612e1c565b9350612eca818560208601612160565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000815250565b5f612f078285612e26565b9150612f138284612ea6565b9150612f1e82612ed6565b6005820191508190509392505050565b5f612f38826121f0565b9150612f43836121f0565b9250828203905081811115612f5b57612f5a612bcf565b5b92915050565b5f612f6b826121f0565b91505f8203612f7d57612f7c612bcf565b5b600182039050919050565b5f81519050919050565b5f82825260208201905092915050565b5f612fac82612f88565b612fb68185612f92565b9350612fc6818560208601612160565b612fcf81612188565b840191505092915050565b5f608082019050612fed5f83018761227e565b612ffa602083018661227e565b6130076040830185612339565b81810360608301526130198184612fa2565b905095945050505050565b5f81519050613032816120be565b92915050565b5f6020828403121561304d5761304c61208b565b5b5f61305a84828501613024565b91505092915050565b7f4f76657220737570706c790000000000000000000000000000000000000000005f82015250565b5f613097600b83612150565b91506130a282613063565b602082019050919050565b5f6020820190508181035f8301526130c48161308b565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffdfea2646970667358221220cad7ff47e5029f2c794d45e970e5a97b077539e4e419debf98d78e1eb589589364736f6c63430008140033

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

000000000000000000000000f705cb1501d04462ab7ff142f1f0ad198175725e

-----Decoded View---------------
Arg [0] : initialOwner (address): 0xf705Cb1501D04462aB7FF142F1F0ad198175725e

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000f705cb1501d04462ab7ff142f1f0ad198175725e


Deployed Bytecode Sourcemap

87981:2593:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20588:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21490:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28730:227;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28447:124;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88986:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16692:573;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33002:3523;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89204:140;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88170:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36621:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88678:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22892:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88456:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88330:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18416:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64152:103;;;;;;;;;;;;;:::i;:::-;;89372:86;;;;;;;;;;;;;:::i;:::-;;63477:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21666:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29297:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88257:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88211:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37412:416;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89479:527;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;90012:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88792:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88293:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90457:112;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90336:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29688:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64410:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89090:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88430:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20588:639;20673:4;21012:10;20997:25;;:11;:25;;;;:102;;;;21089:10;21074:25;;:11;:25;;;;20997:102;:179;;;;21166:10;21151:25;;:11;:25;;;;20997:179;20977:199;;20588:639;;;:::o;21490:100::-;21544:13;21577:5;21570:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21490:100;:::o;28730:227::-;28806:7;28831:16;28839:7;28831;:16::i;:::-;28826:73;;28849:50;28857:41;;;28849:7;:50::i;:::-;28826:73;28919:15;:24;28935:7;28919:24;;;;;;;;;;;:30;;;;;;;;;;;;28912:37;;28730:227;;;:::o;28447:124::-;28536:27;28545:2;28549:7;28558:4;28536:8;:27::i;:::-;28447:124;;:::o;88986:98::-;63363:13;:11;:13::i;:::-;89067:8:::1;89052:5;;:24;;;;;;;;;;;;;;;;;;88986:98:::0;:::o;16692:573::-;16753:14;17151:15;:13;:15::i;:::-;17136:12;;17120:13;;:28;:46;17111:55;;17206:17;17185;:15;:17::i;:::-;:38;17181:65;;17235:11;;17225:21;;;;17181:65;16692:573;:::o;33002:3523::-;33144:27;33174;33193:7;33174:18;:27::i;:::-;33144:57;;12634:14;33345:4;33329:22;;:41;33306:66;;33430:4;33389:45;;33405:19;33389:45;;;33385:95;;33436:44;33444:35;;;33436:7;:44::i;:::-;33385:95;33494:27;33523:23;33550:35;33577:7;33550:26;:35::i;:::-;33493:92;;;;33685:68;33710:15;33727:4;33733:19;:17;:19::i;:::-;33685:24;:68::i;:::-;33680:189;;33773:43;33790:4;33796:19;:17;:19::i;:::-;33773:16;:43::i;:::-;33768:101;;33818:51;33826:42;;;33818:7;:51::i;:::-;33768:101;33680:189;33882:43;33904:4;33910:2;33914:7;33923:1;33882:21;:43::i;:::-;34018:15;34015:160;;;34158:1;34137:19;34130:30;34015:160;34555:18;:24;34574:4;34555:24;;;;;;;;;;;;;;;;34553:26;;;;;;;;;;;;34624:18;:22;34643:2;34624:22;;;;;;;;;;;;;;;;34622:24;;;;;;;;;;;34946:146;34983:2;35032:45;35047:4;35053:2;35057:19;35032:14;:45::i;:::-;12232:8;35004:73;34946:18;:146::i;:::-;34917:17;:26;34935:7;34917:26;;;;;;;;;;;:175;;;;35263:1;12232:8;35212:19;:47;:52;35208:627;;35285:19;35317:1;35307:7;:11;35285:33;;35474:1;35440:17;:30;35458:11;35440:30;;;;;;;;;;;;:35;35436:384;;35578:13;;35563:11;:28;35559:242;;35758:19;35725:17;:30;35743:11;35725:30;;;;;;;;;;;:52;;;;35559:242;35436:384;35266:569;35208:627;35948:16;12634:14;35983:2;35967:20;;:39;35948:58;;36347:7;36311:8;36277:4;36219:25;36164:1;36107;36084:299;36420:1;36408:8;:13;36404:58;;36423:39;36431:30;;;36423:7;:39::i;:::-;36404:58;36475:42;36496:4;36502:2;36506:7;36515:1;36475:20;:42::i;:::-;33133:3392;;;;33002:3523;;;:::o;89204:140::-;63363:13;:11;:13::i;:::-;89276:5:::1;;;;;;;;;;;:14;;;89291:10;89303:6;89276:34;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;89268:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;89204:140:::0;:::o;88170:34::-;;;;:::o;36621:193::-;36767:39;36784:4;36790:2;36794:7;36767:39;;;;;;;;;;;;:16;:39::i;:::-;36621:193;;;:::o;88678:108::-;63363:13;:11;:13::i;:::-;88767:11:::1;;88757:7;:21;;;;;;;:::i;:::-;;88678:108:::0;;:::o;22892:152::-;22964:7;23007:27;23026:7;23007:18;:27::i;:::-;22984:52;;22892:152;;;:::o;88456:45::-;;;;:::o;88330:93::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;18416:242::-;18488:7;18529:1;18512:19;;:5;:19;;;18508:69;;18533:44;18541:35;;;18533:7;:44::i;:::-;18508:69;11176:13;18595:18;:25;18614:5;18595:25;;;;;;;;;;;;;;;;:55;18588:62;;18416:242;;;:::o;64152:103::-;63363:13;:11;:13::i;:::-;64217:30:::1;64244:1;64217:18;:30::i;:::-;64152:103::o:0;89372:86::-;63363:13;:11;:13::i;:::-;89439:11:::1;;;;;;;;;;;89438:12;89424:11;;:26;;;;;;;;;;;;;;;;;;89372:86::o:0;63477:87::-;63523:7;63550:6;;;;;;;;;;;63543:13;;63477:87;:::o;21666:104::-;21722:13;21755:7;21748:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21666:104;:::o;29297:234::-;29444:8;29392:18;:39;29411:19;:17;:19::i;:::-;29392:39;;;;;;;;;;;;;;;:49;29432:8;29392:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;29504:8;29468:55;;29483:19;:17;:19::i;:::-;29468:55;;;29514:8;29468:55;;;;;;:::i;:::-;;;;;;;;29297:234;;:::o;88257:27::-;;;;:::o;88211:39::-;;;;:::o;37412:416::-;37587:31;37600:4;37606:2;37610:7;37587:12;:31::i;:::-;37651:1;37633:2;:14;;;:19;37629:192;;37672:56;37703:4;37709:2;37713:7;37722:5;37672:30;:56::i;:::-;37667:154;;37749:56;37757:47;;;37749:7;:56::i;:::-;37667:154;37629:192;37412:416;;;;:::o;89479:527::-;89569:11;;;;;;;;;;;89561:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;89663:19;;89651:8;89623:25;89637:10;89623:13;:25::i;:::-;:36;;;;:::i;:::-;:59;;89615:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;89717:18;89750:8;89738:9;;:20;;;;:::i;:::-;89717:41;;89808:10;89777:5;;;;;;;;;;;:15;;;89793:10;89777:27;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:41;;89769:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;89860:5;;;;;;;;;;;:18;;;89879:10;89899:4;89906:10;89860:57;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;89852:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;89957:41;89977:10;89989:8;89957:19;:41::i;:::-;89550:456;89479:527;;;:::o;90012:113::-;63363:13;:11;:13::i;:::-;90076:41:::1;90096:10;90108:8;90076:19;:41::i;:::-;90012:113:::0;:::o;88792:172::-;88865:13;88912:7;88921:25;88938:7;88921:16;:25::i;:::-;88898:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;88891:65;;88792:172;;;:::o;88293:30::-;;;;;;;;;;;;;:::o;90457:112::-;90507:7;90547:14;:12;:14::i;:::-;90534:10;;:27;;;;:::i;:::-;90527:34;;90457:112;:::o;90336:115::-;90396:7;90423:20;90437:5;90423:13;:20::i;:::-;90416:27;;90336:115;;;:::o;29688:164::-;29785:4;29809:18;:25;29828:5;29809:25;;;;;;;;;;;;;;;:35;29835:8;29809:35;;;;;;;;;;;;;;;;;;;;;;;;;29802:42;;29688:164;;;;:::o;64410:220::-;63363:13;:11;:13::i;:::-;64515:1:::1;64495:22;;:8;:22;;::::0;64491:93:::1;;64569:1;64541:31;;;;;;;;;;;:::i;:::-;;;;;;;;64491:93;64594:28;64613:8;64594:18;:28::i;:::-;64410:220:::0;:::o;89090:108::-;63363:13;:11;:13::i;:::-;89177::::1;89165:9;:25;;;;89090:108:::0;:::o;88430:19::-;;;;;;;;;;;;;:::o;30110:475::-;30175:11;30222:7;30203:15;:13;:15::i;:::-;:26;30199:379;;30260:17;:15;:17::i;:::-;30250:7;:27;30246:90;;;30286:50;30309:17;:26;30327:7;30309:26;;;;;;;;;;;;30286:22;:50::i;:::-;30279:57;;;;30246:90;30367:13;;30357:7;:23;30353:214;;;30401:14;30434:60;30482:1;30451:17;:26;30469:7;30451:26;;;;;;;;;;;;30442:35;;;30441:42;30434:60;;30485:9;;;;:::i;:::-;;;30434:60;;;30550:1;11952:8;30522:6;:24;:29;30513:38;;30382:185;30353:214;30199:379;30110:475;;;;:::o;60619:165::-;60720:13;60714:4;60707:27;60761:4;60755;60748:18;52034:474;52163:13;52179:16;52187:7;52179;:16::i;:::-;52163:32;;52212:13;:45;;;;;52252:5;52229:28;;:19;:17;:19::i;:::-;:28;;;;52212:45;52208:201;;;52277:44;52294:5;52301:19;:17;:19::i;:::-;52277:16;:44::i;:::-;52272:137;;52342:51;52350:42;;;52342:7;:51::i;:::-;52272:137;52208:201;52454:2;52421:15;:24;52437:7;52421:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;52492:7;52488:2;52472:28;;52481:5;52472:28;;;;;;;;;;;;52152:356;52034:474;;;:::o;63642:166::-;63713:12;:10;:12::i;:::-;63702:23;;:7;:5;:7::i;:::-;:23;;;63698:103;;63776:12;:10;:12::i;:::-;63749:40;;;;;;;;;;;:::i;:::-;;;;;;;;63698:103;63642:166::o;88545:108::-;88610:7;88637:8;;88630:15;;88545:108;:::o;16190:110::-;16248:7;16275:17;16268:24;;16190:110;:::o;24377:2213::-;24444:14;24494:7;24475:15;:13;:15::i;:::-;:26;24471:2054;;24527:17;:26;24545:7;24527:26;;;;;;;;;;;;24518:35;;24584:17;:15;:17::i;:::-;24574:7;:27;24570:183;;;24626:30;24649:6;24626:22;:30::i;:::-;24658:13;24622:49;24690:47;24698:38;;;24690:7;:47::i;:::-;24570:183;24864:1;24854:6;:11;24850:1292;;24901:13;;24890:7;:24;24886:77;;24916:47;24924:38;;;24916:7;:47::i;:::-;24886:77;25520:607;25598:17;:28;25616:9;;;;;;;25598:28;;;;;;;;;;;;25589:37;;25686:1;25676:6;:11;25672:25;25689:8;25672:25;25752:1;11952:8;25724:6;:24;:29;25720:48;25755:13;25720:48;26060:47;26068:38;;;26060:7;:47::i;:::-;25520:607;;;24850:1292;26497:1;11952:8;26469:6;:24;:29;26465:48;26500:13;26465:48;24471:2054;26535:47;26543:38;;;26535:7;:47::i;:::-;24377:2213;;;;:::o;31897:485::-;31999:27;32028:23;32069:38;32110:15;:24;32126:7;32110:24;;;;;;;;;;;32069:65;;32287:18;32264:41;;32344:19;32338:26;32319:45;;32249:126;31897:485;;;:::o;58600:105::-;58660:7;58687:10;58680:17;;58600:105;:::o;31125:659::-;31274:11;31439:16;31432:5;31428:28;31419:37;;31599:16;31588:9;31584:32;31571:45;;31749:15;31738:9;31735:30;31727:5;31716:9;31713:20;31710:56;31700:66;;31125:659;;;;;:::o;38490:159::-;;;;;:::o;57909:311::-;58044:7;58064:16;12356:3;58090:19;:41;;58064:68;;12356:3;58158:31;58169:4;58175:2;58179:9;58158:10;:31::i;:::-;58150:40;;:62;;58143:69;;;57909:311;;;;;:::o;27138:450::-;27218:14;27386:16;27379:5;27375:28;27366:37;;27563:5;27549:11;27524:23;27520:41;27517:52;27510:5;27507:63;27497:73;;27138:450;;;;:::o;39314:158::-;;;;;:::o;64790:191::-;64864:16;64883:6;;;;;;;;;;;64864:25;;64909:8;64900:6;;:17;;;;;;;;;;;;;;;;;;64964:8;64933:40;;64954:8;64933:40;;;;;;;;;;;;64853:128;64790:191;:::o;39912:691::-;40075:4;40121:2;40096:45;;;40142:19;:17;:19::i;:::-;40163:4;40169:7;40178:5;40096:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40092:504;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40396:1;40379:6;:13;:18;40375:115;;40418:56;40426:47;;;40418:7;:56::i;:::-;40375:115;40562:6;40556:13;40547:6;40543:2;40539:15;40532:38;40092:504;40265:54;;;40255:64;;;:6;:64;;;;40248:71;;;39912:691;;;;;;:::o;18740:178::-;18801:7;11176:13;11314:2;18829:18;:25;18848:5;18829:25;;;;;;;;;;;;;;;;:50;;18828:82;18821:89;;18740:178;;;:::o;90131:181::-;90246:10;;90234:8;90217:14;:12;:14::i;:::-;:25;;;;:::i;:::-;:39;;90209:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;90285:19;90291:2;90295:8;90285:5;:19::i;:::-;90131:181;;:::o;82483:718::-;82539:13;82590:14;82627:1;82607:17;82618:5;82607:10;:17::i;:::-;:21;82590:38;;82643:20;82677:6;82666:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82643:41;;82699:11;82828:6;82824:2;82820:15;82812:6;82808:28;82801:35;;82865:290;82872:4;82865:290;;;82897:5;;;;;;;;83039:10;83034:2;83027:5;83023:14;83018:32;83013:3;83005:46;83097:2;83088:11;;;;;;:::i;:::-;;;;;83131:1;83122:5;:10;82865:290;83118:21;82865:290;83176:6;83169:13;;;;;82483:718;;;:::o;17363:385::-;17418:14;17634:15;:13;:15::i;:::-;17618:13;;:31;17609:40;;17689:17;17668;:15;:17::i;:::-;:38;17664:65;;17718:11;;17708:21;;;;17664:65;17363:385;:::o;30681:335::-;30751:11;30981:15;30973:6;30969:28;30950:16;30942:6;30938:29;30935:63;30925:73;;30681:335;;;:::o;61486:98::-;61539:7;61566:10;61559:17;;61486:98;:::o;57610:147::-;57747:6;57610:147;;;;;:::o;41065:2399::-;41138:20;41161:13;;41138:36;;41201:1;41189:8;:13;41185:53;;41204:34;41212:25;;;41204:7;:34::i;:::-;41185:53;41251:61;41281:1;41285:2;41289:12;41303:8;41251:21;:61::i;:::-;41785:139;41822:2;41876:33;41899:1;41903:2;41907:1;41876:14;:33::i;:::-;41843:30;41864:8;41843:20;:30::i;:::-;:66;41785:18;:139::i;:::-;41751:17;:31;41769:12;41751:31;;;;;;;;;;;:173;;;;42211:1;11314:2;42181:1;:26;;42180:32;42168:8;:45;42142:18;:22;42161:2;42142:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;42324:16;12634:14;42359:2;42343:20;;:39;42324:58;;42415:1;42403:8;:13;42399:54;;42418:35;42426:26;;;42418:7;:35::i;:::-;42399:54;42470:11;42499:8;42484:12;:23;42470:37;;42522:15;42540:12;42522:30;;42583:17;:15;:17::i;:::-;42579:1;42573:3;:7;:27;42569:77;;;42602:44;42610:35;;;42602:7;:44::i;:::-;42569:77;42663:676;43082:7;43038:8;42993:1;42927:25;42864:1;42799;42768:358;43334:3;43321:9;;;;;;:16;42663:676;;43371:3;43355:13;:19;;;;41500:1886;;;43396:60;43425:1;43429:2;43433:12;43447:8;43396:20;:60::i;:::-;41127:2337;41065:2399;;:::o;77547:948::-;77600:7;77620:14;77637:1;77620:18;;77687:8;77678:5;:17;77674:106;;77725:8;77716:17;;;;;;:::i;:::-;;;;;77762:2;77752:12;;;;77674:106;77807:8;77798:5;:17;77794:106;;77845:8;77836:17;;;;;;:::i;:::-;;;;;77882:2;77872:12;;;;77794:106;77927:8;77918:5;:17;77914:106;;77965:8;77956:17;;;;;;:::i;:::-;;;;;78002:2;77992:12;;;;77914:106;78047:7;78038:5;:16;78034:103;;78084:7;78075:16;;;;;;:::i;:::-;;;;;78120:1;78110:11;;;;78034:103;78164:7;78155:5;:16;78151:103;;78201:7;78192:16;;;;;;:::i;:::-;;;;;78237:1;78227:11;;;;78151:103;78281:7;78272:5;:16;78268:103;;78318:7;78309:16;;;;;;:::i;:::-;;;;;78354:1;78344:11;;;;78268:103;78398:7;78389:5;:16;78385:68;;78436:1;78426:11;;;;78385:68;78481:6;78474:13;;;77547:948;;;:::o;27690:324::-;27760:14;27993:1;27983:8;27980:15;27954:24;27950:46;27940:56;;27690:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:329::-;4949:6;4998:2;4986:9;4977:7;4973:23;4969:32;4966:119;;;5004:79;;:::i;:::-;4966:119;5124:1;5149:53;5194:7;5185:6;5174:9;5170:22;5149:53;:::i;:::-;5139:63;;5095:117;4890:329;;;;:::o;5225:118::-;5312:24;5330:5;5312:24;:::i;:::-;5307:3;5300:37;5225:118;;:::o;5349:222::-;5442:4;5480:2;5469:9;5465:18;5457:26;;5493:71;5561:1;5550:9;5546:17;5537:6;5493:71;:::i;:::-;5349:222;;;;:::o;5577:619::-;5654:6;5662;5670;5719:2;5707:9;5698:7;5694:23;5690:32;5687:119;;;5725:79;;:::i;:::-;5687:119;5845:1;5870:53;5915:7;5906:6;5895:9;5891:22;5870:53;:::i;:::-;5860:63;;5816:117;5972:2;5998:53;6043:7;6034:6;6023:9;6019:22;5998:53;:::i;:::-;5988:63;;5943:118;6100:2;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6071:118;5577:619;;;;;:::o;6202:117::-;6311:1;6308;6301:12;6325:117;6434:1;6431;6424:12;6448:117;6557:1;6554;6547:12;6585:553;6643:8;6653:6;6703:3;6696:4;6688:6;6684:17;6680:27;6670:122;;6711:79;;:::i;:::-;6670:122;6824:6;6811:20;6801:30;;6854:18;6846:6;6843:30;6840:117;;;6876:79;;:::i;:::-;6840:117;6990:4;6982:6;6978:17;6966:29;;7044:3;7036:4;7028:6;7024:17;7014:8;7010:32;7007:41;7004:128;;;7051:79;;:::i;:::-;7004:128;6585:553;;;;;:::o;7144:529::-;7215:6;7223;7272:2;7260:9;7251:7;7247:23;7243:32;7240:119;;;7278:79;;:::i;:::-;7240:119;7426:1;7415:9;7411:17;7398:31;7456:18;7448:6;7445:30;7442:117;;;7478:79;;:::i;:::-;7442:117;7591:65;7648:7;7639:6;7628:9;7624:22;7591:65;:::i;:::-;7573:83;;;;7369:297;7144:529;;;;;:::o;7679:116::-;7749:21;7764:5;7749:21;:::i;:::-;7742:5;7739:32;7729:60;;7785:1;7782;7775:12;7729:60;7679:116;:::o;7801:133::-;7844:5;7882:6;7869:20;7860:29;;7898:30;7922:5;7898:30;:::i;:::-;7801:133;;;;:::o;7940:468::-;8005:6;8013;8062:2;8050:9;8041:7;8037:23;8033:32;8030:119;;;8068:79;;:::i;:::-;8030:119;8188:1;8213:53;8258:7;8249:6;8238:9;8234:22;8213:53;:::i;:::-;8203:63;;8159:117;8315:2;8341:50;8383:7;8374:6;8363:9;8359:22;8341:50;:::i;:::-;8331:60;;8286:115;7940:468;;;;;:::o;8414:117::-;8523:1;8520;8513:12;8537:180;8585:77;8582:1;8575:88;8682:4;8679:1;8672:15;8706:4;8703:1;8696:15;8723:281;8806:27;8828:4;8806:27;:::i;:::-;8798:6;8794:40;8936:6;8924:10;8921:22;8900:18;8888:10;8885:34;8882:62;8879:88;;;8947:18;;:::i;:::-;8879:88;8987:10;8983:2;8976:22;8766:238;8723:281;;:::o;9010:129::-;9044:6;9071:20;;:::i;:::-;9061:30;;9100:33;9128:4;9120:6;9100:33;:::i;:::-;9010:129;;;:::o;9145:307::-;9206:4;9296:18;9288:6;9285:30;9282:56;;;9318:18;;:::i;:::-;9282:56;9356:29;9378:6;9356:29;:::i;:::-;9348:37;;9440:4;9434;9430:15;9422:23;;9145:307;;;:::o;9458:146::-;9555:6;9550:3;9545;9532:30;9596:1;9587:6;9582:3;9578:16;9571:27;9458:146;;;:::o;9610:423::-;9687:5;9712:65;9728:48;9769:6;9728:48;:::i;:::-;9712:65;:::i;:::-;9703:74;;9800:6;9793:5;9786:21;9838:4;9831:5;9827:16;9876:3;9867:6;9862:3;9858:16;9855:25;9852:112;;;9883:79;;:::i;:::-;9852:112;9973:54;10020:6;10015:3;10010;9973:54;:::i;:::-;9693:340;9610:423;;;;;:::o;10052:338::-;10107:5;10156:3;10149:4;10141:6;10137:17;10133:27;10123:122;;10164:79;;:::i;:::-;10123:122;10281:6;10268:20;10306:78;10380:3;10372:6;10365:4;10357:6;10353:17;10306:78;:::i;:::-;10297:87;;10113:277;10052:338;;;;:::o;10396:943::-;10491:6;10499;10507;10515;10564:3;10552:9;10543:7;10539:23;10535:33;10532:120;;;10571:79;;:::i;:::-;10532:120;10691:1;10716:53;10761:7;10752:6;10741:9;10737:22;10716:53;:::i;:::-;10706:63;;10662:117;10818:2;10844:53;10889:7;10880:6;10869:9;10865:22;10844:53;:::i;:::-;10834:63;;10789:118;10946:2;10972:53;11017:7;11008:6;10997:9;10993:22;10972:53;:::i;:::-;10962:63;;10917:118;11102:2;11091:9;11087:18;11074:32;11133:18;11125:6;11122:30;11119:117;;;11155:79;;:::i;:::-;11119:117;11260:62;11314:7;11305:6;11294:9;11290:22;11260:62;:::i;:::-;11250:72;;11045:287;10396:943;;;;;;;:::o;11362:568::-;11435:8;11445:6;11495:3;11488:4;11480:6;11476:17;11472:27;11462:122;;11503:79;;:::i;:::-;11462:122;11616:6;11603:20;11593:30;;11646:18;11638:6;11635:30;11632:117;;;11668:79;;:::i;:::-;11632:117;11782:4;11774:6;11770:17;11758:29;;11836:3;11828:4;11820:6;11816:17;11806:8;11802:32;11799:41;11796:128;;;11843:79;;:::i;:::-;11796:128;11362:568;;;;;:::o;11936:704::-;12031:6;12039;12047;12096:2;12084:9;12075:7;12071:23;12067:32;12064:119;;;12102:79;;:::i;:::-;12064:119;12222:1;12247:53;12292:7;12283:6;12272:9;12268:22;12247:53;:::i;:::-;12237:63;;12193:117;12377:2;12366:9;12362:18;12349:32;12408:18;12400:6;12397:30;12394:117;;;12430:79;;:::i;:::-;12394:117;12543:80;12615:7;12606:6;12595:9;12591:22;12543:80;:::i;:::-;12525:98;;;;12320:313;11936:704;;;;;:::o;12646:474::-;12714:6;12722;12771:2;12759:9;12750:7;12746:23;12742:32;12739:119;;;12777:79;;:::i;:::-;12739:119;12897:1;12922:53;12967:7;12958:6;12947:9;12943:22;12922:53;:::i;:::-;12912:63;;12868:117;13024:2;13050:53;13095:7;13086:6;13075:9;13071:22;13050:53;:::i;:::-;13040:63;;12995:118;12646:474;;;;;:::o;13126:60::-;13154:3;13175:5;13168:12;;13126:60;;;:::o;13192:142::-;13242:9;13275:53;13293:34;13302:24;13320:5;13302:24;:::i;:::-;13293:34;:::i;:::-;13275:53;:::i;:::-;13262:66;;13192:142;;;:::o;13340:126::-;13390:9;13423:37;13454:5;13423:37;:::i;:::-;13410:50;;13340:126;;;:::o;13472:141::-;13537:9;13570:37;13601:5;13570:37;:::i;:::-;13557:50;;13472:141;;;:::o;13619:161::-;13721:52;13767:5;13721:52;:::i;:::-;13716:3;13709:65;13619:161;;:::o;13786:252::-;13894:4;13932:2;13921:9;13917:18;13909:26;;13945:86;14028:1;14017:9;14013:17;14004:6;13945:86;:::i;:::-;13786:252;;;;:::o;14044:180::-;14092:77;14089:1;14082:88;14189:4;14186:1;14179:15;14213:4;14210:1;14203:15;14230:320;14274:6;14311:1;14305:4;14301:12;14291:22;;14358:1;14352:4;14348:12;14379:18;14369:81;;14435:4;14427:6;14423:17;14413:27;;14369:81;14497:2;14489:6;14486:14;14466:18;14463:38;14460:84;;14516:18;;:::i;:::-;14460:84;14281:269;14230:320;;;:::o;14556:332::-;14677:4;14715:2;14704:9;14700:18;14692:26;;14728:71;14796:1;14785:9;14781:17;14772:6;14728:71;:::i;:::-;14809:72;14877:2;14866:9;14862:18;14853:6;14809:72;:::i;:::-;14556:332;;;;;:::o;14894:137::-;14948:5;14979:6;14973:13;14964:22;;14995:30;15019:5;14995:30;:::i;:::-;14894:137;;;;:::o;15037:345::-;15104:6;15153:2;15141:9;15132:7;15128:23;15124:32;15121:119;;;15159:79;;:::i;:::-;15121:119;15279:1;15304:61;15357:7;15348:6;15337:9;15333:22;15304:61;:::i;:::-;15294:71;;15250:125;15037:345;;;;:::o;15388:171::-;15528:23;15524:1;15516:6;15512:14;15505:47;15388:171;:::o;15565:366::-;15707:3;15728:67;15792:2;15787:3;15728:67;:::i;:::-;15721:74;;15804:93;15893:3;15804:93;:::i;:::-;15922:2;15917:3;15913:12;15906:19;;15565:366;;;:::o;15937:419::-;16103:4;16141:2;16130:9;16126:18;16118:26;;16190:9;16184:4;16180:20;16176:1;16165:9;16161:17;16154:47;16218:131;16344:4;16218:131;:::i;:::-;16210:139;;15937:419;;;:::o;16362:97::-;16421:6;16449:3;16439:13;;16362:97;;;;:::o;16465:141::-;16514:4;16537:3;16529:11;;16560:3;16557:1;16550:14;16594:4;16591:1;16581:18;16573:26;;16465:141;;;:::o;16612:93::-;16649:6;16696:2;16691;16684:5;16680:14;16676:23;16666:33;;16612:93;;;:::o;16711:107::-;16755:8;16805:5;16799:4;16795:16;16774:37;;16711:107;;;;:::o;16824:393::-;16893:6;16943:1;16931:10;16927:18;16966:97;16996:66;16985:9;16966:97;:::i;:::-;17084:39;17114:8;17103:9;17084:39;:::i;:::-;17072:51;;17156:4;17152:9;17145:5;17141:21;17132:30;;17205:4;17195:8;17191:19;17184:5;17181:30;17171:40;;16900:317;;16824:393;;;;;:::o;17223:142::-;17273:9;17306:53;17324:34;17333:24;17351:5;17333:24;:::i;:::-;17324:34;:::i;:::-;17306:53;:::i;:::-;17293:66;;17223:142;;;:::o;17371:75::-;17414:3;17435:5;17428:12;;17371:75;;;:::o;17452:269::-;17562:39;17593:7;17562:39;:::i;:::-;17623:91;17672:41;17696:16;17672:41;:::i;:::-;17664:6;17657:4;17651:11;17623:91;:::i;:::-;17617:4;17610:105;17528:193;17452:269;;;:::o;17727:73::-;17772:3;17727:73;:::o;17806:189::-;17883:32;;:::i;:::-;17924:65;17982:6;17974;17968:4;17924:65;:::i;:::-;17859:136;17806:189;;:::o;18001:186::-;18061:120;18078:3;18071:5;18068:14;18061:120;;;18132:39;18169:1;18162:5;18132:39;:::i;:::-;18105:1;18098:5;18094:13;18085:22;;18061:120;;;18001:186;;:::o;18193:543::-;18294:2;18289:3;18286:11;18283:446;;;18328:38;18360:5;18328:38;:::i;:::-;18412:29;18430:10;18412:29;:::i;:::-;18402:8;18398:44;18595:2;18583:10;18580:18;18577:49;;;18616:8;18601:23;;18577:49;18639:80;18695:22;18713:3;18695:22;:::i;:::-;18685:8;18681:37;18668:11;18639:80;:::i;:::-;18298:431;;18283:446;18193:543;;;:::o;18742:117::-;18796:8;18846:5;18840:4;18836:16;18815:37;;18742:117;;;;:::o;18865:169::-;18909:6;18942:51;18990:1;18986:6;18978:5;18975:1;18971:13;18942:51;:::i;:::-;18938:56;19023:4;19017;19013:15;19003:25;;18916:118;18865:169;;;;:::o;19039:295::-;19115:4;19261:29;19286:3;19280:4;19261:29;:::i;:::-;19253:37;;19323:3;19320:1;19316:11;19310:4;19307:21;19299:29;;19039:295;;;;:::o;19339:1403::-;19463:44;19503:3;19498;19463:44;:::i;:::-;19572:18;19564:6;19561:30;19558:56;;;19594:18;;:::i;:::-;19558:56;19638:38;19670:4;19664:11;19638:38;:::i;:::-;19723:67;19783:6;19775;19769:4;19723:67;:::i;:::-;19817:1;19846:2;19838:6;19835:14;19863:1;19858:632;;;;20534:1;20551:6;20548:84;;;20607:9;20602:3;20598:19;20585:33;20576:42;;20548:84;20658:67;20718:6;20711:5;20658:67;:::i;:::-;20652:4;20645:81;20507:229;19828:908;;19858:632;19910:4;19906:9;19898:6;19894:22;19944:37;19976:4;19944:37;:::i;:::-;20003:1;20017:215;20031:7;20028:1;20025:14;20017:215;;;20117:9;20112:3;20108:19;20095:33;20087:6;20080:49;20168:1;20160:6;20156:14;20146:24;;20215:2;20204:9;20200:18;20187:31;;20054:4;20051:1;20047:12;20042:17;;20017:215;;;20260:6;20251:7;20248:19;20245:186;;;20325:9;20320:3;20316:19;20303:33;20368:48;20410:4;20402:6;20398:17;20387:9;20368:48;:::i;:::-;20360:6;20353:64;20268:163;20245:186;20477:1;20473;20465:6;20461:14;20457:22;20451:4;20444:36;19865:625;;;19828:908;;19438:1304;;;19339:1403;;;:::o;20748:169::-;20888:21;20884:1;20876:6;20872:14;20865:45;20748:169;:::o;20923:366::-;21065:3;21086:67;21150:2;21145:3;21086:67;:::i;:::-;21079:74;;21162:93;21251:3;21162:93;:::i;:::-;21280:2;21275:3;21271:12;21264:19;;20923:366;;;:::o;21295:419::-;21461:4;21499:2;21488:9;21484:18;21476:26;;21548:9;21542:4;21538:20;21534:1;21523:9;21519:17;21512:47;21576:131;21702:4;21576:131;:::i;:::-;21568:139;;21295:419;;;:::o;21720:180::-;21768:77;21765:1;21758:88;21865:4;21862:1;21855:15;21889:4;21886:1;21879:15;21906:191;21946:3;21965:20;21983:1;21965:20;:::i;:::-;21960:25;;21999:20;22017:1;21999:20;:::i;:::-;21994:25;;22042:1;22039;22035:9;22028:16;;22063:3;22060:1;22057:10;22054:36;;;22070:18;;:::i;:::-;22054:36;21906:191;;;;:::o;22103:167::-;22243:19;22239:1;22231:6;22227:14;22220:43;22103:167;:::o;22276:366::-;22418:3;22439:67;22503:2;22498:3;22439:67;:::i;:::-;22432:74;;22515:93;22604:3;22515:93;:::i;:::-;22633:2;22628:3;22624:12;22617:19;;22276:366;;;:::o;22648:419::-;22814:4;22852:2;22841:9;22837:18;22829:26;;22901:9;22895:4;22891:20;22887:1;22876:9;22872:17;22865:47;22929:131;23055:4;22929:131;:::i;:::-;22921:139;;22648:419;;;:::o;23073:410::-;23113:7;23136:20;23154:1;23136:20;:::i;:::-;23131:25;;23170:20;23188:1;23170:20;:::i;:::-;23165:25;;23225:1;23222;23218:9;23247:30;23265:11;23247:30;:::i;:::-;23236:41;;23426:1;23417:7;23413:15;23410:1;23407:22;23387:1;23380:9;23360:83;23337:139;;23456:18;;:::i;:::-;23337:139;23121:362;23073:410;;;;:::o;23489:143::-;23546:5;23577:6;23571:13;23562:22;;23593:33;23620:5;23593:33;:::i;:::-;23489:143;;;;:::o;23638:351::-;23708:6;23757:2;23745:9;23736:7;23732:23;23728:32;23725:119;;;23763:79;;:::i;:::-;23725:119;23883:1;23908:64;23964:7;23955:6;23944:9;23940:22;23908:64;:::i;:::-;23898:74;;23854:128;23638:351;;;;:::o;23995:168::-;24135:20;24131:1;24123:6;24119:14;24112:44;23995:168;:::o;24169:366::-;24311:3;24332:67;24396:2;24391:3;24332:67;:::i;:::-;24325:74;;24408:93;24497:3;24408:93;:::i;:::-;24526:2;24521:3;24517:12;24510:19;;24169:366;;;:::o;24541:419::-;24707:4;24745:2;24734:9;24730:18;24722:26;;24794:9;24788:4;24784:20;24780:1;24769:9;24765:17;24758:47;24822:131;24948:4;24822:131;:::i;:::-;24814:139;;24541:419;;;:::o;24966:442::-;25115:4;25153:2;25142:9;25138:18;25130:26;;25166:71;25234:1;25223:9;25219:17;25210:6;25166:71;:::i;:::-;25247:72;25315:2;25304:9;25300:18;25291:6;25247:72;:::i;:::-;25329;25397:2;25386:9;25382:18;25373:6;25329:72;:::i;:::-;24966:442;;;;;;:::o;25414:164::-;25554:16;25550:1;25542:6;25538:14;25531:40;25414:164;:::o;25584:366::-;25726:3;25747:67;25811:2;25806:3;25747:67;:::i;:::-;25740:74;;25823:93;25912:3;25823:93;:::i;:::-;25941:2;25936:3;25932:12;25925:19;;25584:366;;;:::o;25956:419::-;26122:4;26160:2;26149:9;26145:18;26137:26;;26209:9;26203:4;26199:20;26195:1;26184:9;26180:17;26173:47;26237:131;26363:4;26237:131;:::i;:::-;26229:139;;25956:419;;;:::o;26381:148::-;26483:11;26520:3;26505:18;;26381:148;;;;:::o;26559:874::-;26662:3;26699:5;26693:12;26728:36;26754:9;26728:36;:::i;:::-;26780:89;26862:6;26857:3;26780:89;:::i;:::-;26773:96;;26900:1;26889:9;26885:17;26916:1;26911:166;;;;27091:1;27086:341;;;;26878:549;;26911:166;26995:4;26991:9;26980;26976:25;26971:3;26964:38;27057:6;27050:14;27043:22;27035:6;27031:35;27026:3;27022:45;27015:52;;26911:166;;27086:341;27153:38;27185:5;27153:38;:::i;:::-;27213:1;27227:154;27241:6;27238:1;27235:13;27227:154;;;27315:7;27309:14;27305:1;27300:3;27296:11;27289:35;27365:1;27356:7;27352:15;27341:26;;27263:4;27260:1;27256:12;27251:17;;27227:154;;;27410:6;27405:3;27401:16;27394:23;;27093:334;;26878:549;;26666:767;;26559:874;;;;:::o;27439:390::-;27545:3;27573:39;27606:5;27573:39;:::i;:::-;27628:89;27710:6;27705:3;27628:89;:::i;:::-;27621:96;;27726:65;27784:6;27779:3;27772:4;27765:5;27761:16;27726:65;:::i;:::-;27816:6;27811:3;27807:16;27800:23;;27549:280;27439:390;;;;:::o;27835:182::-;28003:7;27998:3;27991:20;27835:182;:::o;28023:693::-;28290:3;28312:92;28400:3;28391:6;28312:92;:::i;:::-;28305:99;;28421:95;28512:3;28503:6;28421:95;:::i;:::-;28414:102;;28526:137;28659:3;28526:137;:::i;:::-;28688:1;28683:3;28679:11;28672:18;;28707:3;28700:10;;28023:693;;;;;:::o;28722:194::-;28762:4;28782:20;28800:1;28782:20;:::i;:::-;28777:25;;28816:20;28834:1;28816:20;:::i;:::-;28811:25;;28860:1;28857;28853:9;28845:17;;28884:1;28878:4;28875:11;28872:37;;;28889:18;;:::i;:::-;28872:37;28722:194;;;;:::o;28922:171::-;28961:3;28984:24;29002:5;28984:24;:::i;:::-;28975:33;;29030:4;29023:5;29020:15;29017:41;;29038:18;;:::i;:::-;29017:41;29085:1;29078:5;29074:13;29067:20;;28922:171;;;:::o;29099:98::-;29150:6;29184:5;29178:12;29168:22;;29099:98;;;:::o;29203:168::-;29286:11;29320:6;29315:3;29308:19;29360:4;29355:3;29351:14;29336:29;;29203:168;;;;:::o;29377:373::-;29463:3;29491:38;29523:5;29491:38;:::i;:::-;29545:70;29608:6;29603:3;29545:70;:::i;:::-;29538:77;;29624:65;29682:6;29677:3;29670:4;29663:5;29659:16;29624:65;:::i;:::-;29714:29;29736:6;29714:29;:::i;:::-;29709:3;29705:39;29698:46;;29467:283;29377:373;;;;:::o;29756:640::-;29951:4;29989:3;29978:9;29974:19;29966:27;;30003:71;30071:1;30060:9;30056:17;30047:6;30003:71;:::i;:::-;30084:72;30152:2;30141:9;30137:18;30128:6;30084:72;:::i;:::-;30166;30234:2;30223:9;30219:18;30210:6;30166:72;:::i;:::-;30285:9;30279:4;30275:20;30270:2;30259:9;30255:18;30248:48;30313:76;30384:4;30375:6;30313:76;:::i;:::-;30305:84;;29756:640;;;;;;;:::o;30402:141::-;30458:5;30489:6;30483:13;30474:22;;30505:32;30531:5;30505:32;:::i;:::-;30402:141;;;;:::o;30549:349::-;30618:6;30667:2;30655:9;30646:7;30642:23;30638:32;30635:119;;;30673:79;;:::i;:::-;30635:119;30793:1;30818:63;30873:7;30864:6;30853:9;30849:22;30818:63;:::i;:::-;30808:73;;30764:127;30549:349;;;;:::o;30904:161::-;31044:13;31040:1;31032:6;31028:14;31021:37;30904:161;:::o;31071:366::-;31213:3;31234:67;31298:2;31293:3;31234:67;:::i;:::-;31227:74;;31310:93;31399:3;31310:93;:::i;:::-;31428:2;31423:3;31419:12;31412:19;;31071:366;;;:::o;31443:419::-;31609:4;31647:2;31636:9;31632:18;31624:26;;31696:9;31690:4;31686:20;31682:1;31671:9;31667:17;31660:47;31724:131;31850:4;31724:131;:::i;:::-;31716:139;;31443:419;;;:::o;31868:180::-;31916:77;31913:1;31906:88;32013:4;32010:1;32003:15;32037:4;32034:1;32027:15

Swarm Source

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