ETH Price: $3,420.12 (-6.70%)

Token

CxckPunchers (CxP)
 

Overview

Max Total Supply

123 CxP

Holders

66

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 CxP
0xb0cb701e415a8cf2ef8619442b152e3f07584b9f
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:
CxckPunchers

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// SPDX-License-Identifier: MIT
/**
 *Submitted for verification at Etherscan.io on 2022-08-02
*/

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.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();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.2.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()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Reference type for token approval.
    struct TokenApprovalRef {
        address value;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

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

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: lilverse.sol


pragma solidity ^0.8.0;


//MAX_PER_WALLET - максимум на кошелек
//MAX_PURCHASE - максимум за транзакцию

contract CxckPunchers is ERC721A, Ownable {
    uint256 public constant MINT_PRICE = 0.001 ether;
    uint256 public constant MAX_SUPPLY = 123;
    uint256 public constant MAX_PER_WALLET = 2;
    uint256 public constant MAX_PURCHASE = 20;

    constructor() ERC721A("CxckPunchers", "CxP") {}

    modifier hasCorrectAmount(uint256 _wei, uint256 _quantity) {
        require(_wei >= MINT_PRICE * _quantity, "Insufficent funds");
        _;
    }

    modifier withinMaximumSupply(uint256 _quantity) {
        require(totalSupply() + _quantity <= MAX_SUPPLY, "Surpasses supply");
        _;
    }

    /**
     * Public sale and whitelist sale mechansim
     */
    bool public publicSale = false;
    

    modifier publicSaleActive() {
        require(publicSale, "Public sale not started");
        _;
    }

    function setPublicSale(bool toggle) external onlyOwner {
        publicSale = toggle;
    }


    /**
     * Public minting
     */
    mapping(address => uint256) public publicAddressMintCount;

    function mintPublic(uint256 _quantity)
        public
        payable
        publicSaleActive
        hasCorrectAmount(msg.value, _quantity)
        withinMaximumSupply(_quantity)
    {
        require(
            _quantity > 0 && _quantity <= MAX_PURCHASE &&
                publicAddressMintCount[msg.sender] + _quantity <=
                MAX_PER_WALLET,
            "Minting above public limit"
        );
        publicAddressMintCount[msg.sender] += _quantity;
        _safeMint(msg.sender, _quantity);
    }

    modifier hasValidTier(uint256 tier) {
        require(tier >= 0 && tier <= 4, "Invalid Tier");
        _;
    }

    modifier hasValidMerkleProof(bytes32[] calldata merkleProof, bytes32 root) {
        require(
            MerkleProof.verify(
                merkleProof,
                root,
                keccak256(abi.encodePacked(msg.sender))
            ),
            "Address not whitelisted"
        );
        _;
    }


    /**
     * Admin minting
     */
    function mintAdmin(address _recipient, uint256 _quantity)
        public
        onlyOwner
        withinMaximumSupply(_quantity)
    {
        _safeMint(_recipient, _quantity);
    }

    /**
     * Base URI
     */
    string private baseURI;

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

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

     function tokenURI(uint256 tokenId) public view override returns (string memory) {
        return string(abi.encodePacked(baseURI, _toString(tokenId), ".json"));
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PURCHASE","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":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicAddressMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"toggle","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600860146101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600c81526020017f4378636b50756e636865727300000000000000000000000000000000000000008152506040518060400160405280600381526020017f43785000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000b1929190620001e0565b508060039080519060200190620000ca929190620001e0565b50620000db6200010960201b60201c565b600081905550505062000103620000f76200011260201b60201c565b6200011a60201b60201c565b620002f5565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001ee9062000290565b90600052602060002090601f0160209004810192826200021257600085556200025e565b82601f106200022d57805160ff19168380011785556200025e565b828001600101855582156200025e579182015b828111156200025d57825182559160200191906001019062000240565b5b5090506200026d919062000271565b5090565b5b808211156200028c57600081600090555060010162000272565b5090565b60006002820490506001821680620002a957607f821691505b60208210811415620002c057620002bf620002c6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6129fa80620003056000396000f3fe60806040526004361061019c5760003560e01c80636352211e116100ec578063b88d4fde1161008a578063c87b56dd11610064578063c87b56dd146105b4578063e985e9c5146105f1578063efd0cbf91461062e578063f2fde38b1461064a5761019c565b8063b88d4fde14610537578063c002d23d14610560578063c3a719991461058b5761019c565b8063715018a6116100c6578063715018a6146104a15780638da5cb5b146104b857806395d89b41146104e3578063a22cb4651461050e5761019c565b80636352211e146103fc57806370a08231146104395780637146bd08146104765761019c565b806318160ddd1161015957806333bc1c5c1161013357806333bc1c5c1461035657806342842e0e1461038157806355f804b3146103aa5780635aca1bb6146103d35761019c565b806318160ddd146102d757806323b872dd1461030257806332cb6b0c1461032b5761019c565b806301ffc9a7146101a157806306fdde03146101de57806307e4d48014610209578063081812fc14610246578063095ea7b3146102835780630f2cdd6c146102ac575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612007565b610673565b6040516101d591906123b1565b60405180910390f35b3480156101ea57600080fd5b506101f3610705565b60405161020091906123cc565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190611e17565b610797565b60405161023d91906124ae565b60405180910390f35b34801561025257600080fd5b5061026d600480360381019061026891906120aa565b6107af565b60405161027a919061234a565b60405180910390f35b34801561028f57600080fd5b506102aa60048036038101906102a59190611f9a565b61082e565b005b3480156102b857600080fd5b506102c1610972565b6040516102ce91906124ae565b60405180910390f35b3480156102e357600080fd5b506102ec610977565b6040516102f991906124ae565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190611e84565b61098e565b005b34801561033757600080fd5b50610340610cb3565b60405161034d91906124ae565b60405180910390f35b34801561036257600080fd5b5061036b610cb8565b60405161037891906123b1565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a39190611e84565b610ccb565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190612061565b610ceb565b005b3480156103df57600080fd5b506103fa60048036038101906103f59190611fda565b610d0d565b005b34801561040857600080fd5b50610423600480360381019061041e91906120aa565b610d32565b604051610430919061234a565b60405180910390f35b34801561044557600080fd5b50610460600480360381019061045b9190611e17565b610d44565b60405161046d91906124ae565b60405180910390f35b34801561048257600080fd5b5061048b610dfd565b60405161049891906124ae565b60405180910390f35b3480156104ad57600080fd5b506104b6610e02565b005b3480156104c457600080fd5b506104cd610e16565b6040516104da919061234a565b60405180910390f35b3480156104ef57600080fd5b506104f8610e40565b60405161050591906123cc565b60405180910390f35b34801561051a57600080fd5b5061053560048036038101906105309190611f5a565b610ed2565b005b34801561054357600080fd5b5061055e60048036038101906105599190611ed7565b61104a565b005b34801561056c57600080fd5b506105756110bd565b60405161058291906124ae565b60405180910390f35b34801561059757600080fd5b506105b260048036038101906105ad9190611f9a565b6110c8565b005b3480156105c057600080fd5b506105db60048036038101906105d691906120aa565b611136565b6040516105e891906123cc565b60405180910390f35b3480156105fd57600080fd5b5061061860048036038101906106139190611e44565b61116a565b60405161062591906123b1565b60405180910390f35b610648600480360381019061064391906120aa565b6111fe565b005b34801561065657600080fd5b50610671600480360381019061066c9190611e17565b611408565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106ce57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106fe5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107149061270e565b80601f01602080910402602001604051908101604052809291908181526020018280546107409061270e565b801561078d5780601f106107625761010080835404028352916020019161078d565b820191906000526020600020905b81548152906001019060200180831161077057829003601f168201915b5050505050905090565b60096020528060005260406000206000915090505481565b60006107ba8261148c565b6107f0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083982610d32565b90508073ffffffffffffffffffffffffffffffffffffffff1661085a6114eb565b73ffffffffffffffffffffffffffffffffffffffff16146108bd57610886816108816114eb565b61116a565b6108bc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600281565b60006109816114f3565b6001546000540303905090565b6000610999826114fc565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a00576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a0c846115ca565b91509150610a228187610a1d6114eb565b6115f1565b610a6e57610a3786610a326114eb565b61116a565b610a6d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ad5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ae28686866001611635565b8015610aed57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bbb85610b9788888761163b565b7c020000000000000000000000000000000000000000000000000000000017611663565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c43576000600185019050600060046000838152602001908152602001600020541415610c41576000548114610c40578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cab868686600161168e565b505050505050565b607b81565b600860149054906101000a900460ff1681565b610ce68383836040518060200160405280600081525061104a565b505050565b610cf3611694565b80600a9080519060200190610d09929190611c2b565b5050565b610d15611694565b80600860146101000a81548160ff02191690831515021790555050565b6000610d3d826114fc565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dac576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b601481565b610e0a611694565b610e146000611712565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e4f9061270e565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7b9061270e565b8015610ec85780601f10610e9d57610100808354040283529160200191610ec8565b820191906000526020600020905b815481529060010190602001808311610eab57829003601f168201915b5050505050905090565b610eda6114eb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f3f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610f4c6114eb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610ff96114eb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161103e91906123b1565b60405180910390a35050565b61105584848461098e565b60008373ffffffffffffffffffffffffffffffffffffffff163b146110b757611080848484846117d8565b6110b6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b66038d7ea4c6800081565b6110d0611694565b80607b816110dc610977565b6110e691906125a8565b1115611127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111e9061248e565b60405180910390fd5b6111318383611938565b505050565b6060600a61114383611956565b60405160200161115492919061231b565b6040516020818303038152906040529050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600860149054906101000a900460ff1661124d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112449061242e565b60405180910390fd5b34818066038d7ea4c6800061126291906125fe565b8210156112a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129b9061246e565b60405180910390fd5b82607b816112b0610977565b6112ba91906125a8565b11156112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f29061248e565b60405180910390fd5b60008411801561130c575060148411155b80156113635750600284600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461136091906125a8565b11155b6113a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611399906123ee565b60405180910390fd5b83600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113f191906125a8565b925050819055506114023385611938565b50505050565b611410611694565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611480576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114779061240e565b60405180910390fd5b61148981611712565b50565b6000816114976114f3565b111580156114a6575060005482105b80156114e4575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061150b6114f3565b11611593576000548110156115925760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611590575b600081141561158657600460008360019003935083815260200190815260200160002054905061155b565b80925050506115c5565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86116528686846119b0565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61169c6119b9565b73ffffffffffffffffffffffffffffffffffffffff166116ba610e16565b73ffffffffffffffffffffffffffffffffffffffff1614611710576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117079061244e565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026117fe6114eb565b8786866040518563ffffffff1660e01b81526004016118209493929190612365565b602060405180830381600087803b15801561183a57600080fd5b505af192505050801561186b57506040513d601f19601f820116820180604052508101906118689190612034565b60015b6118e5573d806000811461189b576040519150601f19603f3d011682016040523d82523d6000602084013e6118a0565b606091505b506000815114156118dd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6119528282604051806020016040528060008152506119c1565b5050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561199c57600183039250600a81066030018353600a8104905061197c565b508181036020830392508083525050919050565b60009392505050565b600033905090565b6119cb8383611a5e565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a5957600080549050600083820390505b611a0b60008683806001019450866117d8565b611a41576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106119f8578160005414611a5657600080fd5b50505b505050565b6000805490506000821415611a9f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611aac6000848385611635565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611b2383611b14600086600061163b565b611b1d85611c1b565b17611663565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611bc457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611b89565b506000821415611c00576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611c16600084838561168e565b505050565b60006001821460e11b9050919050565b828054611c379061270e565b90600052602060002090601f016020900481019282611c595760008555611ca0565b82601f10611c7257805160ff1916838001178555611ca0565b82800160010185558215611ca0579182015b82811115611c9f578251825591602001919060010190611c84565b5b509050611cad9190611cb1565b5090565b5b80821115611cca576000816000905550600101611cb2565b5090565b6000611ce1611cdc846124ee565b6124c9565b905082815260208101848484011115611cfd57611cfc612803565b5b611d088482856126cc565b509392505050565b6000611d23611d1e8461251f565b6124c9565b905082815260208101848484011115611d3f57611d3e612803565b5b611d4a8482856126cc565b509392505050565b600081359050611d6181612968565b92915050565b600081359050611d768161297f565b92915050565b600081359050611d8b81612996565b92915050565b600081519050611da081612996565b92915050565b600082601f830112611dbb57611dba6127fe565b5b8135611dcb848260208601611cce565b91505092915050565b600082601f830112611de957611de86127fe565b5b8135611df9848260208601611d10565b91505092915050565b600081359050611e11816129ad565b92915050565b600060208284031215611e2d57611e2c61280d565b5b6000611e3b84828501611d52565b91505092915050565b60008060408385031215611e5b57611e5a61280d565b5b6000611e6985828601611d52565b9250506020611e7a85828601611d52565b9150509250929050565b600080600060608486031215611e9d57611e9c61280d565b5b6000611eab86828701611d52565b9350506020611ebc86828701611d52565b9250506040611ecd86828701611e02565b9150509250925092565b60008060008060808587031215611ef157611ef061280d565b5b6000611eff87828801611d52565b9450506020611f1087828801611d52565b9350506040611f2187828801611e02565b925050606085013567ffffffffffffffff811115611f4257611f41612808565b5b611f4e87828801611da6565b91505092959194509250565b60008060408385031215611f7157611f7061280d565b5b6000611f7f85828601611d52565b9250506020611f9085828601611d67565b9150509250929050565b60008060408385031215611fb157611fb061280d565b5b6000611fbf85828601611d52565b9250506020611fd085828601611e02565b9150509250929050565b600060208284031215611ff057611fef61280d565b5b6000611ffe84828501611d67565b91505092915050565b60006020828403121561201d5761201c61280d565b5b600061202b84828501611d7c565b91505092915050565b60006020828403121561204a5761204961280d565b5b600061205884828501611d91565b91505092915050565b6000602082840312156120775761207661280d565b5b600082013567ffffffffffffffff81111561209557612094612808565b5b6120a184828501611dd4565b91505092915050565b6000602082840312156120c0576120bf61280d565b5b60006120ce84828501611e02565b91505092915050565b6120e081612658565b82525050565b6120ef8161266a565b82525050565b600061210082612565565b61210a818561257b565b935061211a8185602086016126db565b61212381612812565b840191505092915050565b600061213982612570565b612143818561258c565b93506121538185602086016126db565b61215c81612812565b840191505092915050565b600061217282612570565b61217c818561259d565b935061218c8185602086016126db565b80840191505092915050565b600081546121a58161270e565b6121af818661259d565b945060018216600081146121ca57600181146121db5761220e565b60ff1983168652818601935061220e565b6121e485612550565b60005b83811015612206578154818901526001820191506020810190506121e7565b838801955050505b50505092915050565b6000612224601a8361258c565b915061222f82612823565b602082019050919050565b600061224760268361258c565b91506122528261284c565b604082019050919050565b600061226a60178361258c565b91506122758261289b565b602082019050919050565b600061228d60058361259d565b9150612298826128c4565b600582019050919050565b60006122b060208361258c565b91506122bb826128ed565b602082019050919050565b60006122d360118361258c565b91506122de82612916565b602082019050919050565b60006122f660108361258c565b91506123018261293f565b602082019050919050565b612315816126c2565b82525050565b60006123278285612198565b91506123338284612167565b915061233e82612280565b91508190509392505050565b600060208201905061235f60008301846120d7565b92915050565b600060808201905061237a60008301876120d7565b61238760208301866120d7565b612394604083018561230c565b81810360608301526123a681846120f5565b905095945050505050565b60006020820190506123c660008301846120e6565b92915050565b600060208201905081810360008301526123e6818461212e565b905092915050565b6000602082019050818103600083015261240781612217565b9050919050565b600060208201905081810360008301526124278161223a565b9050919050565b600060208201905081810360008301526124478161225d565b9050919050565b60006020820190508181036000830152612467816122a3565b9050919050565b60006020820190508181036000830152612487816122c6565b9050919050565b600060208201905081810360008301526124a7816122e9565b9050919050565b60006020820190506124c3600083018461230c565b92915050565b60006124d36124e4565b90506124df8282612740565b919050565b6000604051905090565b600067ffffffffffffffff821115612509576125086127cf565b5b61251282612812565b9050602081019050919050565b600067ffffffffffffffff82111561253a576125396127cf565b5b61254382612812565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006125b3826126c2565b91506125be836126c2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156125f3576125f2612771565b5b828201905092915050565b6000612609826126c2565b9150612614836126c2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561264d5761264c612771565b5b828202905092915050565b6000612663826126a2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156126f95780820151818401526020810190506126de565b83811115612708576000848401525b50505050565b6000600282049050600182168061272657607f821691505b6020821081141561273a576127396127a0565b5b50919050565b61274982612812565b810181811067ffffffffffffffff82111715612768576127676127cf565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e74696e672061626f7665207075626c6963206c696d6974000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206e6f742073746172746564000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e737566666963656e742066756e6473000000000000000000000000000000600082015250565b7f53757270617373657320737570706c7900000000000000000000000000000000600082015250565b61297181612658565b811461297c57600080fd5b50565b6129888161266a565b811461299357600080fd5b50565b61299f81612676565b81146129aa57600080fd5b50565b6129b6816126c2565b81146129c157600080fd5b5056fea26469706673582212206a65e8ba1867567a77b1216228610567705c13a356c726bf25d0094b4278661f64736f6c63430008070033

Deployed Bytecode

0x60806040526004361061019c5760003560e01c80636352211e116100ec578063b88d4fde1161008a578063c87b56dd11610064578063c87b56dd146105b4578063e985e9c5146105f1578063efd0cbf91461062e578063f2fde38b1461064a5761019c565b8063b88d4fde14610537578063c002d23d14610560578063c3a719991461058b5761019c565b8063715018a6116100c6578063715018a6146104a15780638da5cb5b146104b857806395d89b41146104e3578063a22cb4651461050e5761019c565b80636352211e146103fc57806370a08231146104395780637146bd08146104765761019c565b806318160ddd1161015957806333bc1c5c1161013357806333bc1c5c1461035657806342842e0e1461038157806355f804b3146103aa5780635aca1bb6146103d35761019c565b806318160ddd146102d757806323b872dd1461030257806332cb6b0c1461032b5761019c565b806301ffc9a7146101a157806306fdde03146101de57806307e4d48014610209578063081812fc14610246578063095ea7b3146102835780630f2cdd6c146102ac575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612007565b610673565b6040516101d591906123b1565b60405180910390f35b3480156101ea57600080fd5b506101f3610705565b60405161020091906123cc565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190611e17565b610797565b60405161023d91906124ae565b60405180910390f35b34801561025257600080fd5b5061026d600480360381019061026891906120aa565b6107af565b60405161027a919061234a565b60405180910390f35b34801561028f57600080fd5b506102aa60048036038101906102a59190611f9a565b61082e565b005b3480156102b857600080fd5b506102c1610972565b6040516102ce91906124ae565b60405180910390f35b3480156102e357600080fd5b506102ec610977565b6040516102f991906124ae565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190611e84565b61098e565b005b34801561033757600080fd5b50610340610cb3565b60405161034d91906124ae565b60405180910390f35b34801561036257600080fd5b5061036b610cb8565b60405161037891906123b1565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a39190611e84565b610ccb565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190612061565b610ceb565b005b3480156103df57600080fd5b506103fa60048036038101906103f59190611fda565b610d0d565b005b34801561040857600080fd5b50610423600480360381019061041e91906120aa565b610d32565b604051610430919061234a565b60405180910390f35b34801561044557600080fd5b50610460600480360381019061045b9190611e17565b610d44565b60405161046d91906124ae565b60405180910390f35b34801561048257600080fd5b5061048b610dfd565b60405161049891906124ae565b60405180910390f35b3480156104ad57600080fd5b506104b6610e02565b005b3480156104c457600080fd5b506104cd610e16565b6040516104da919061234a565b60405180910390f35b3480156104ef57600080fd5b506104f8610e40565b60405161050591906123cc565b60405180910390f35b34801561051a57600080fd5b5061053560048036038101906105309190611f5a565b610ed2565b005b34801561054357600080fd5b5061055e60048036038101906105599190611ed7565b61104a565b005b34801561056c57600080fd5b506105756110bd565b60405161058291906124ae565b60405180910390f35b34801561059757600080fd5b506105b260048036038101906105ad9190611f9a565b6110c8565b005b3480156105c057600080fd5b506105db60048036038101906105d691906120aa565b611136565b6040516105e891906123cc565b60405180910390f35b3480156105fd57600080fd5b5061061860048036038101906106139190611e44565b61116a565b60405161062591906123b1565b60405180910390f35b610648600480360381019061064391906120aa565b6111fe565b005b34801561065657600080fd5b50610671600480360381019061066c9190611e17565b611408565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106ce57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106fe5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107149061270e565b80601f01602080910402602001604051908101604052809291908181526020018280546107409061270e565b801561078d5780601f106107625761010080835404028352916020019161078d565b820191906000526020600020905b81548152906001019060200180831161077057829003601f168201915b5050505050905090565b60096020528060005260406000206000915090505481565b60006107ba8261148c565b6107f0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083982610d32565b90508073ffffffffffffffffffffffffffffffffffffffff1661085a6114eb565b73ffffffffffffffffffffffffffffffffffffffff16146108bd57610886816108816114eb565b61116a565b6108bc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600281565b60006109816114f3565b6001546000540303905090565b6000610999826114fc565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a00576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a0c846115ca565b91509150610a228187610a1d6114eb565b6115f1565b610a6e57610a3786610a326114eb565b61116a565b610a6d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ad5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ae28686866001611635565b8015610aed57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bbb85610b9788888761163b565b7c020000000000000000000000000000000000000000000000000000000017611663565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c43576000600185019050600060046000838152602001908152602001600020541415610c41576000548114610c40578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cab868686600161168e565b505050505050565b607b81565b600860149054906101000a900460ff1681565b610ce68383836040518060200160405280600081525061104a565b505050565b610cf3611694565b80600a9080519060200190610d09929190611c2b565b5050565b610d15611694565b80600860146101000a81548160ff02191690831515021790555050565b6000610d3d826114fc565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dac576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b601481565b610e0a611694565b610e146000611712565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e4f9061270e565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7b9061270e565b8015610ec85780601f10610e9d57610100808354040283529160200191610ec8565b820191906000526020600020905b815481529060010190602001808311610eab57829003601f168201915b5050505050905090565b610eda6114eb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f3f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610f4c6114eb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610ff96114eb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161103e91906123b1565b60405180910390a35050565b61105584848461098e565b60008373ffffffffffffffffffffffffffffffffffffffff163b146110b757611080848484846117d8565b6110b6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b66038d7ea4c6800081565b6110d0611694565b80607b816110dc610977565b6110e691906125a8565b1115611127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111e9061248e565b60405180910390fd5b6111318383611938565b505050565b6060600a61114383611956565b60405160200161115492919061231b565b6040516020818303038152906040529050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600860149054906101000a900460ff1661124d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112449061242e565b60405180910390fd5b34818066038d7ea4c6800061126291906125fe565b8210156112a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129b9061246e565b60405180910390fd5b82607b816112b0610977565b6112ba91906125a8565b11156112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f29061248e565b60405180910390fd5b60008411801561130c575060148411155b80156113635750600284600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461136091906125a8565b11155b6113a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611399906123ee565b60405180910390fd5b83600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113f191906125a8565b925050819055506114023385611938565b50505050565b611410611694565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611480576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114779061240e565b60405180910390fd5b61148981611712565b50565b6000816114976114f3565b111580156114a6575060005482105b80156114e4575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061150b6114f3565b11611593576000548110156115925760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611590575b600081141561158657600460008360019003935083815260200190815260200160002054905061155b565b80925050506115c5565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86116528686846119b0565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61169c6119b9565b73ffffffffffffffffffffffffffffffffffffffff166116ba610e16565b73ffffffffffffffffffffffffffffffffffffffff1614611710576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117079061244e565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026117fe6114eb565b8786866040518563ffffffff1660e01b81526004016118209493929190612365565b602060405180830381600087803b15801561183a57600080fd5b505af192505050801561186b57506040513d601f19601f820116820180604052508101906118689190612034565b60015b6118e5573d806000811461189b576040519150601f19603f3d011682016040523d82523d6000602084013e6118a0565b606091505b506000815114156118dd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6119528282604051806020016040528060008152506119c1565b5050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561199c57600183039250600a81066030018353600a8104905061197c565b508181036020830392508083525050919050565b60009392505050565b600033905090565b6119cb8383611a5e565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a5957600080549050600083820390505b611a0b60008683806001019450866117d8565b611a41576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106119f8578160005414611a5657600080fd5b50505b505050565b6000805490506000821415611a9f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611aac6000848385611635565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611b2383611b14600086600061163b565b611b1d85611c1b565b17611663565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611bc457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611b89565b506000821415611c00576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611c16600084838561168e565b505050565b60006001821460e11b9050919050565b828054611c379061270e565b90600052602060002090601f016020900481019282611c595760008555611ca0565b82601f10611c7257805160ff1916838001178555611ca0565b82800160010185558215611ca0579182015b82811115611c9f578251825591602001919060010190611c84565b5b509050611cad9190611cb1565b5090565b5b80821115611cca576000816000905550600101611cb2565b5090565b6000611ce1611cdc846124ee565b6124c9565b905082815260208101848484011115611cfd57611cfc612803565b5b611d088482856126cc565b509392505050565b6000611d23611d1e8461251f565b6124c9565b905082815260208101848484011115611d3f57611d3e612803565b5b611d4a8482856126cc565b509392505050565b600081359050611d6181612968565b92915050565b600081359050611d768161297f565b92915050565b600081359050611d8b81612996565b92915050565b600081519050611da081612996565b92915050565b600082601f830112611dbb57611dba6127fe565b5b8135611dcb848260208601611cce565b91505092915050565b600082601f830112611de957611de86127fe565b5b8135611df9848260208601611d10565b91505092915050565b600081359050611e11816129ad565b92915050565b600060208284031215611e2d57611e2c61280d565b5b6000611e3b84828501611d52565b91505092915050565b60008060408385031215611e5b57611e5a61280d565b5b6000611e6985828601611d52565b9250506020611e7a85828601611d52565b9150509250929050565b600080600060608486031215611e9d57611e9c61280d565b5b6000611eab86828701611d52565b9350506020611ebc86828701611d52565b9250506040611ecd86828701611e02565b9150509250925092565b60008060008060808587031215611ef157611ef061280d565b5b6000611eff87828801611d52565b9450506020611f1087828801611d52565b9350506040611f2187828801611e02565b925050606085013567ffffffffffffffff811115611f4257611f41612808565b5b611f4e87828801611da6565b91505092959194509250565b60008060408385031215611f7157611f7061280d565b5b6000611f7f85828601611d52565b9250506020611f9085828601611d67565b9150509250929050565b60008060408385031215611fb157611fb061280d565b5b6000611fbf85828601611d52565b9250506020611fd085828601611e02565b9150509250929050565b600060208284031215611ff057611fef61280d565b5b6000611ffe84828501611d67565b91505092915050565b60006020828403121561201d5761201c61280d565b5b600061202b84828501611d7c565b91505092915050565b60006020828403121561204a5761204961280d565b5b600061205884828501611d91565b91505092915050565b6000602082840312156120775761207661280d565b5b600082013567ffffffffffffffff81111561209557612094612808565b5b6120a184828501611dd4565b91505092915050565b6000602082840312156120c0576120bf61280d565b5b60006120ce84828501611e02565b91505092915050565b6120e081612658565b82525050565b6120ef8161266a565b82525050565b600061210082612565565b61210a818561257b565b935061211a8185602086016126db565b61212381612812565b840191505092915050565b600061213982612570565b612143818561258c565b93506121538185602086016126db565b61215c81612812565b840191505092915050565b600061217282612570565b61217c818561259d565b935061218c8185602086016126db565b80840191505092915050565b600081546121a58161270e565b6121af818661259d565b945060018216600081146121ca57600181146121db5761220e565b60ff1983168652818601935061220e565b6121e485612550565b60005b83811015612206578154818901526001820191506020810190506121e7565b838801955050505b50505092915050565b6000612224601a8361258c565b915061222f82612823565b602082019050919050565b600061224760268361258c565b91506122528261284c565b604082019050919050565b600061226a60178361258c565b91506122758261289b565b602082019050919050565b600061228d60058361259d565b9150612298826128c4565b600582019050919050565b60006122b060208361258c565b91506122bb826128ed565b602082019050919050565b60006122d360118361258c565b91506122de82612916565b602082019050919050565b60006122f660108361258c565b91506123018261293f565b602082019050919050565b612315816126c2565b82525050565b60006123278285612198565b91506123338284612167565b915061233e82612280565b91508190509392505050565b600060208201905061235f60008301846120d7565b92915050565b600060808201905061237a60008301876120d7565b61238760208301866120d7565b612394604083018561230c565b81810360608301526123a681846120f5565b905095945050505050565b60006020820190506123c660008301846120e6565b92915050565b600060208201905081810360008301526123e6818461212e565b905092915050565b6000602082019050818103600083015261240781612217565b9050919050565b600060208201905081810360008301526124278161223a565b9050919050565b600060208201905081810360008301526124478161225d565b9050919050565b60006020820190508181036000830152612467816122a3565b9050919050565b60006020820190508181036000830152612487816122c6565b9050919050565b600060208201905081810360008301526124a7816122e9565b9050919050565b60006020820190506124c3600083018461230c565b92915050565b60006124d36124e4565b90506124df8282612740565b919050565b6000604051905090565b600067ffffffffffffffff821115612509576125086127cf565b5b61251282612812565b9050602081019050919050565b600067ffffffffffffffff82111561253a576125396127cf565b5b61254382612812565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006125b3826126c2565b91506125be836126c2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156125f3576125f2612771565b5b828201905092915050565b6000612609826126c2565b9150612614836126c2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561264d5761264c612771565b5b828202905092915050565b6000612663826126a2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156126f95780820151818401526020810190506126de565b83811115612708576000848401525b50505050565b6000600282049050600182168061272657607f821691505b6020821081141561273a576127396127a0565b5b50919050565b61274982612812565b810181811067ffffffffffffffff82111715612768576127676127cf565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e74696e672061626f7665207075626c6963206c696d6974000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206e6f742073746172746564000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e737566666963656e742066756e6473000000000000000000000000000000600082015250565b7f53757270617373657320737570706c7900000000000000000000000000000000600082015250565b61297181612658565b811461297c57600080fd5b50565b6129888161266a565b811461299357600080fd5b50565b61299f81612676565b81146129aa57600080fd5b50565b6129b6816126c2565b81146129c157600080fd5b5056fea26469706673582212206a65e8ba1867567a77b1216228610567705c13a356c726bf25d0094b4278661f64736f6c63430008070033

Deployed Bytecode Sourcemap

63916:2748:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18610:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19512:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64903:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25995:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25436:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64067:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15263:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29702:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64020:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64601:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32615:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66266:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64759:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20905:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16447:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64116:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62923:103;;;;;;;;;;;;;:::i;:::-;;62275:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19688:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26553:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33398:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63965:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66003:189;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66491:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27018:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64969:531;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63181:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18610:639;18695:4;19034:10;19019:25;;:11;:25;;;;:102;;;;19111:10;19096:25;;:11;:25;;;;19019:102;:179;;;;19188:10;19173:25;;:11;:25;;;;19019:179;18999:199;;18610:639;;;:::o;19512:100::-;19566:13;19599:5;19592:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19512:100;:::o;64903:57::-;;;;;;;;;;;;;;;;;:::o;25995:218::-;26071:7;26096:16;26104:7;26096;:16::i;:::-;26091:64;;26121:34;;;;;;;;;;;;;;26091:64;26175:15;:24;26191:7;26175:24;;;;;;;;;;;:30;;;;;;;;;;;;26168:37;;25995:218;;;:::o;25436:400::-;25517:13;25533:16;25541:7;25533;:16::i;:::-;25517:32;;25589:5;25566:28;;:19;:17;:19::i;:::-;:28;;;25562:175;;25614:44;25631:5;25638:19;:17;:19::i;:::-;25614:16;:44::i;:::-;25609:128;;25686:35;;;;;;;;;;;;;;25609:128;25562:175;25782:2;25749:15;:24;25765:7;25749:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25820:7;25816:2;25800:28;;25809:5;25800:28;;;;;;;;;;;;25506:330;25436:400;;:::o;64067:42::-;64108:1;64067:42;:::o;15263:323::-;15324:7;15552:15;:13;:15::i;:::-;15537:12;;15521:13;;:28;:46;15514:53;;15263:323;:::o;29702:2817::-;29836:27;29866;29885:7;29866:18;:27::i;:::-;29836:57;;29951:4;29910:45;;29926:19;29910:45;;;29906:86;;29964:28;;;;;;;;;;;;;;29906:86;30006:27;30035:23;30062:35;30089:7;30062:26;:35::i;:::-;30005:92;;;;30197:68;30222:15;30239:4;30245:19;:17;:19::i;:::-;30197:24;:68::i;:::-;30192:180;;30285:43;30302:4;30308:19;:17;:19::i;:::-;30285:16;:43::i;:::-;30280:92;;30337:35;;;;;;;;;;;;;;30280:92;30192:180;30403:1;30389:16;;:2;:16;;;30385:52;;;30414:23;;;;;;;;;;;;;;30385:52;30450:43;30472:4;30478:2;30482:7;30491:1;30450:21;:43::i;:::-;30586:15;30583:160;;;30726:1;30705:19;30698:30;30583:160;31123:18;:24;31142:4;31123:24;;;;;;;;;;;;;;;;31121:26;;;;;;;;;;;;31192:18;:22;31211:2;31192:22;;;;;;;;;;;;;;;;31190:24;;;;;;;;;;;31514:146;31551:2;31600:45;31615:4;31621:2;31625:19;31600:14;:45::i;:::-;11662:8;31572:73;31514:18;:146::i;:::-;31485:17;:26;31503:7;31485:26;;;;;;;;;;;:175;;;;31831:1;11662:8;31780:19;:47;:52;31776:627;;;31853:19;31885:1;31875:7;:11;31853:33;;32042:1;32008:17;:30;32026:11;32008:30;;;;;;;;;;;;:35;32004:384;;;32146:13;;32131:11;:28;32127:242;;32326:19;32293:17;:30;32311:11;32293:30;;;;;;;;;;;:52;;;;32127:242;32004:384;31834:569;31776:627;32450:7;32446:2;32431:27;;32440:4;32431:27;;;;;;;;;;;;32469:42;32490:4;32496:2;32500:7;32509:1;32469:20;:42::i;:::-;29825:2694;;;29702:2817;;;:::o;64020:40::-;64057:3;64020:40;:::o;64601:30::-;;;;;;;;;;;;;:::o;32615:185::-;32753:39;32770:4;32776:2;32780:7;32753:39;;;;;;;;;;;;:16;:39::i;:::-;32615:185;;;:::o;66266:100::-;62161:13;:11;:13::i;:::-;66350:8:::1;66340:7;:18;;;;;;;;;;;;:::i;:::-;;66266:100:::0;:::o;64759:93::-;62161:13;:11;:13::i;:::-;64838:6:::1;64825:10;;:19;;;;;;;;;;;;;;;;;;64759:93:::0;:::o;20905:152::-;20977:7;21020:27;21039:7;21020:18;:27::i;:::-;20997:52;;20905:152;;;:::o;16447:233::-;16519:7;16560:1;16543:19;;:5;:19;;;16539:60;;;16571:28;;;;;;;;;;;;;;16539:60;10606:13;16617:18;:25;16636:5;16617:25;;;;;;;;;;;;;;;;:55;16610:62;;16447:233;;;:::o;64116:41::-;64155:2;64116:41;:::o;62923:103::-;62161:13;:11;:13::i;:::-;62988:30:::1;63015:1;62988:18;:30::i;:::-;62923:103::o:0;62275:87::-;62321:7;62348:6;;;;;;;;;;;62341:13;;62275:87;:::o;19688:104::-;19744:13;19777:7;19770:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19688:104;:::o;26553:308::-;26664:19;:17;:19::i;:::-;26652:31;;:8;:31;;;26648:61;;;26692:17;;;;;;;;;;;;;;26648:61;26774:8;26722:18;:39;26741:19;:17;:19::i;:::-;26722:39;;;;;;;;;;;;;;;:49;26762:8;26722:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26834:8;26798:55;;26813:19;:17;:19::i;:::-;26798:55;;;26844:8;26798:55;;;;;;:::i;:::-;;;;;;;;26553:308;;:::o;33398:399::-;33565:31;33578:4;33584:2;33588:7;33565:12;:31::i;:::-;33629:1;33611:2;:14;;;:19;33607:183;;33650:56;33681:4;33687:2;33691:7;33700:5;33650:30;:56::i;:::-;33645:145;;33734:40;;;;;;;;;;;;;;33645:145;33607:183;33398:399;;;;:::o;63965:48::-;64002:11;63965:48;:::o;66003:189::-;62161:13;:11;:13::i;:::-;66125:9:::1;64057:3;64462:9;64446:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;64438:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66152:32:::2;66162:10;66174:9;66152;:32::i;:::-;62185:1:::1;66003:189:::0;;:::o;66491:168::-;66556:13;66613:7;66622:18;66632:7;66622:9;:18::i;:::-;66596:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;66582:69;;66491:168;;;:::o;27018:164::-;27115:4;27139:18;:25;27158:5;27139:25;;;;;;;;;;;;;;;:35;27165:8;27139:35;;;;;;;;;;;;;;;;;;;;;;;;;27132:42;;27018:164;;;;:::o;64969:531::-;64693:10;;;;;;;;;;;64685:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;65093:9:::1;65104;64320;64002:11;64307:22;;;;:::i;:::-;64299:4;:30;;64291:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;65144:9:::2;64057:3;64462:9;64446:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;64438:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;65205:1:::3;65193:9;:13;:42;;;;;64155:2;65210:9;:25;;65193:42;:144;;;;;64108:1;65293:9;65256:22;:34;65279:10;65256:34;;;;;;;;;;;;;;;;:46;;;;:::i;:::-;:81;;65193:144;65171:220;;;;;;;;;;;;:::i;:::-;;;;;;;;;65440:9;65402:22;:34;65425:10;65402:34;;;;;;;;;;;;;;;;:47;;;;;;;:::i;:::-;;;;;;;;65460:32;65470:10;65482:9;65460;:32::i;:::-;64362:1:::2;64742::::1;;64969:531:::0;:::o;63181:201::-;62161:13;:11;:13::i;:::-;63290:1:::1;63270:22;;:8;:22;;;;63262:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;63346:28;63365:8;63346:18;:28::i;:::-;63181:201:::0;:::o;27440:282::-;27505:4;27561:7;27542:15;:13;:15::i;:::-;:26;;:66;;;;;27595:13;;27585:7;:23;27542:66;:153;;;;;27694:1;11382:8;27646:17;:26;27664:7;27646:26;;;;;;;;;;;;:44;:49;27542:153;27522:173;;27440:282;;;:::o;49206:105::-;49266:7;49293:10;49286:17;;49206:105;:::o;14779:92::-;14835:7;14862:1;14855:8;;14779:92;:::o;22060:1275::-;22127:7;22147:12;22162:7;22147:22;;22230:4;22211:15;:13;:15::i;:::-;:23;22207:1061;;22264:13;;22257:4;:20;22253:1015;;;22302:14;22319:17;:23;22337:4;22319:23;;;;;;;;;;;;22302:40;;22436:1;11382:8;22408:6;:24;:29;22404:845;;;23073:113;23090:1;23080:6;:11;23073:113;;;23133:17;:25;23151:6;;;;;;;23133:25;;;;;;;;;;;;23124:34;;23073:113;;;23219:6;23212:13;;;;;;22404:845;22279:989;22253:1015;22207:1061;23296:31;;;;;;;;;;;;;;22060:1275;;;;:::o;28603:479::-;28705:27;28734:23;28775:38;28816:15;:24;28832:7;28816:24;;;;;;;;;;;28775:65;;28987:18;28964:41;;29044:19;29038:26;29019:45;;28949:126;28603:479;;;:::o;27831:659::-;27980:11;28145:16;28138:5;28134:28;28125:37;;28305:16;28294:9;28290:32;28277:45;;28455:15;28444:9;28441:30;28433:5;28422:9;28419:20;28416:56;28406:66;;27831:659;;;;;:::o;34459:159::-;;;;;:::o;48515:311::-;48650:7;48670:16;11786:3;48696:19;:41;;48670:68;;11786:3;48764:31;48775:4;48781:2;48785:9;48764:10;:31::i;:::-;48756:40;;:62;;48749:69;;;48515:311;;;;;:::o;23883:450::-;23963:14;24131:16;24124:5;24120:28;24111:37;;24308:5;24294:11;24269:23;24265:41;24262:52;24255:5;24252:63;24242:73;;23883:450;;;;:::o;35283:158::-;;;;;:::o;62440:132::-;62515:12;:10;:12::i;:::-;62504:23;;:7;:5;:7::i;:::-;:23;;;62496:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62440:132::o;63542:191::-;63616:16;63635:6;;;;;;;;;;;63616:25;;63661:8;63652:6;;:17;;;;;;;;;;;;;;;;;;63716:8;63685:40;;63706:8;63685:40;;;;;;;;;;;;63605:128;63542:191;:::o;35881:716::-;36044:4;36090:2;36065:45;;;36111:19;:17;:19::i;:::-;36132:4;36138:7;36147:5;36065:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36061:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36365:1;36348:6;:13;:18;36344:235;;;36394:40;;;;;;;;;;;;;;36344:235;36537:6;36531:13;36522:6;36518:2;36514:15;36507:38;36061:529;36234:54;;;36224:64;;;:6;:64;;;;36217:71;;;35881:716;;;;;;:::o;43038:112::-;43115:27;43125:2;43129:8;43115:27;;;;;;;;;;;;:9;:27::i;:::-;43038:112;;:::o;49413:2002::-;49478:17;49897:3;49890:4;49884:11;49880:21;49873:28;;49988:3;49982:4;49975:17;50094:3;50550:5;50680:1;50675:3;50671:11;50664:18;;50851:2;50845:4;50841:13;50837:2;50833:22;50828:3;50820:36;50892:2;50886:4;50882:13;50874:21;;50442:731;50911:4;50442:731;;;51102:1;51097:3;51093:11;51086:18;;51153:2;51147:4;51143:13;51139:2;51135:22;51130:3;51122:36;51006:2;51000:4;50996:13;50988:21;;50442:731;;;50446:464;51212:3;51207;51203:13;51327:2;51322:3;51318:12;51311:19;;51390:6;51385:3;51378:19;49517:1891;;49413:2002;;;:::o;48216:147::-;48353:6;48216:147;;;;;:::o;60826:98::-;60879:7;60906:10;60899:17;;60826:98;:::o;42265:689::-;42396:19;42402:2;42406:8;42396:5;:19::i;:::-;42475:1;42457:2;:14;;;:19;42453:483;;42497:11;42511:13;;42497:27;;42543:13;42565:8;42559:3;:14;42543:30;;42592:233;42623:62;42662:1;42666:2;42670:7;;;;;;42679:5;42623:30;:62::i;:::-;42618:167;;42721:40;;;;;;;;;;;;;;42618:167;42820:3;42812:5;:11;42592:233;;42907:3;42890:13;;:20;42886:34;;42912:8;;;42886:34;42478:458;;42453:483;42265:689;;;:::o;37059:2454::-;37132:20;37155:13;;37132:36;;37195:1;37183:8;:13;37179:44;;;37205:18;;;;;;;;;;;;;;37179:44;37236:61;37266:1;37270:2;37274:12;37288:8;37236:21;:61::i;:::-;37780:1;10744:2;37750:1;:26;;37749:32;37737:8;:45;37711:18;:22;37730:2;37711:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;38059:139;38096:2;38150:33;38173:1;38177:2;38181:1;38150:14;:33::i;:::-;38117:30;38138:8;38117:20;:30::i;:::-;:66;38059:18;:139::i;:::-;38025:17;:31;38043:12;38025:31;;;;;;;;;;;:173;;;;38215:16;38246:11;38275:8;38260:12;:23;38246:37;;38530:16;38526:2;38522:25;38510:37;;38902:12;38862:8;38821:1;38759:25;38700:1;38639;38612:335;39027:1;39013:12;39009:20;38967:346;39068:3;39059:7;39056:16;38967:346;;39286:7;39276:8;39273:1;39246:25;39243:1;39240;39235:59;39121:1;39112:7;39108:15;39097:26;;38967:346;;;38971:77;39358:1;39346:8;:13;39342:45;;;39368:19;;;;;;;;;;;;;;39342:45;39420:3;39404:13;:19;;;;37485:1950;;39445:60;39474:1;39478:2;39482:12;39496:8;39445:20;:60::i;:::-;37121:2392;37059:2454;;:::o;24435:324::-;24505:14;24738:1;24728:8;24725:15;24699:24;24695:46;24685:56;;24435:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8869:845::-;8972:3;9009:5;9003:12;9038:36;9064:9;9038:36;:::i;:::-;9090:89;9172:6;9167:3;9090:89;:::i;:::-;9083:96;;9210:1;9199:9;9195:17;9226:1;9221:137;;;;9372:1;9367:341;;;;9188:520;;9221:137;9305:4;9301:9;9290;9286:25;9281:3;9274:38;9341:6;9336:3;9332:16;9325:23;;9221:137;;9367:341;9434:38;9466:5;9434:38;:::i;:::-;9494:1;9508:154;9522:6;9519:1;9516:13;9508:154;;;9596:7;9590:14;9586:1;9581:3;9577:11;9570:35;9646:1;9637:7;9633:15;9622:26;;9544:4;9541:1;9537:12;9532:17;;9508:154;;;9691:6;9686:3;9682:16;9675:23;;9374:334;;9188:520;;8976:738;;8869:845;;;;:::o;9720:366::-;9862:3;9883:67;9947:2;9942:3;9883:67;:::i;:::-;9876:74;;9959:93;10048:3;9959:93;:::i;:::-;10077:2;10072:3;10068:12;10061:19;;9720:366;;;:::o;10092:::-;10234:3;10255:67;10319:2;10314:3;10255:67;:::i;:::-;10248:74;;10331:93;10420:3;10331:93;:::i;:::-;10449:2;10444:3;10440:12;10433:19;;10092:366;;;:::o;10464:::-;10606:3;10627:67;10691:2;10686:3;10627:67;:::i;:::-;10620:74;;10703:93;10792:3;10703:93;:::i;:::-;10821:2;10816:3;10812:12;10805:19;;10464:366;;;:::o;10836:400::-;10996:3;11017:84;11099:1;11094:3;11017:84;:::i;:::-;11010:91;;11110:93;11199:3;11110:93;:::i;:::-;11228:1;11223:3;11219:11;11212:18;;10836:400;;;:::o;11242:366::-;11384:3;11405:67;11469:2;11464:3;11405:67;:::i;:::-;11398:74;;11481:93;11570:3;11481:93;:::i;:::-;11599:2;11594:3;11590:12;11583:19;;11242:366;;;:::o;11614:::-;11756:3;11777:67;11841:2;11836:3;11777:67;:::i;:::-;11770:74;;11853:93;11942:3;11853:93;:::i;:::-;11971:2;11966:3;11962:12;11955:19;;11614:366;;;:::o;11986:::-;12128:3;12149:67;12213:2;12208:3;12149:67;:::i;:::-;12142:74;;12225:93;12314:3;12225:93;:::i;:::-;12343:2;12338:3;12334:12;12327:19;;11986:366;;;:::o;12358:118::-;12445:24;12463:5;12445:24;:::i;:::-;12440:3;12433:37;12358:118;;:::o;12482:695::-;12760:3;12782:92;12870:3;12861:6;12782:92;:::i;:::-;12775:99;;12891:95;12982:3;12973:6;12891:95;:::i;:::-;12884:102;;13003:148;13147:3;13003:148;:::i;:::-;12996:155;;13168:3;13161:10;;12482:695;;;;;:::o;13183:222::-;13276:4;13314:2;13303:9;13299:18;13291:26;;13327:71;13395:1;13384:9;13380:17;13371:6;13327:71;:::i;:::-;13183:222;;;;:::o;13411:640::-;13606:4;13644:3;13633:9;13629:19;13621:27;;13658:71;13726:1;13715:9;13711:17;13702:6;13658:71;:::i;:::-;13739:72;13807:2;13796:9;13792:18;13783:6;13739:72;:::i;:::-;13821;13889:2;13878:9;13874:18;13865:6;13821:72;:::i;:::-;13940:9;13934:4;13930:20;13925:2;13914:9;13910:18;13903:48;13968:76;14039:4;14030:6;13968:76;:::i;:::-;13960:84;;13411:640;;;;;;;:::o;14057:210::-;14144:4;14182:2;14171:9;14167:18;14159:26;;14195:65;14257:1;14246:9;14242:17;14233:6;14195:65;:::i;:::-;14057:210;;;;:::o;14273:313::-;14386:4;14424:2;14413:9;14409:18;14401:26;;14473:9;14467:4;14463:20;14459:1;14448:9;14444:17;14437:47;14501:78;14574:4;14565:6;14501:78;:::i;:::-;14493:86;;14273:313;;;;:::o;14592:419::-;14758:4;14796:2;14785:9;14781:18;14773:26;;14845:9;14839:4;14835:20;14831:1;14820:9;14816:17;14809:47;14873:131;14999:4;14873:131;:::i;:::-;14865:139;;14592:419;;;:::o;15017:::-;15183:4;15221:2;15210:9;15206:18;15198:26;;15270:9;15264:4;15260:20;15256:1;15245:9;15241:17;15234:47;15298:131;15424:4;15298:131;:::i;:::-;15290:139;;15017:419;;;:::o;15442:::-;15608:4;15646:2;15635:9;15631:18;15623:26;;15695:9;15689:4;15685:20;15681:1;15670:9;15666:17;15659:47;15723:131;15849:4;15723:131;:::i;:::-;15715:139;;15442:419;;;:::o;15867:::-;16033:4;16071:2;16060:9;16056:18;16048:26;;16120:9;16114:4;16110:20;16106:1;16095:9;16091:17;16084:47;16148:131;16274:4;16148:131;:::i;:::-;16140:139;;15867:419;;;:::o;16292:::-;16458:4;16496:2;16485:9;16481:18;16473:26;;16545:9;16539:4;16535:20;16531:1;16520:9;16516:17;16509:47;16573:131;16699:4;16573:131;:::i;:::-;16565:139;;16292:419;;;:::o;16717:::-;16883:4;16921:2;16910:9;16906:18;16898:26;;16970:9;16964:4;16960:20;16956:1;16945:9;16941:17;16934:47;16998:131;17124:4;16998:131;:::i;:::-;16990:139;;16717:419;;;:::o;17142:222::-;17235:4;17273:2;17262:9;17258:18;17250:26;;17286:71;17354:1;17343:9;17339:17;17330:6;17286:71;:::i;:::-;17142:222;;;;:::o;17370:129::-;17404:6;17431:20;;:::i;:::-;17421:30;;17460:33;17488:4;17480:6;17460:33;:::i;:::-;17370:129;;;:::o;17505:75::-;17538:6;17571:2;17565:9;17555:19;;17505:75;:::o;17586:307::-;17647:4;17737:18;17729:6;17726:30;17723:56;;;17759:18;;:::i;:::-;17723:56;17797:29;17819:6;17797:29;:::i;:::-;17789:37;;17881:4;17875;17871:15;17863:23;;17586:307;;;:::o;17899:308::-;17961:4;18051:18;18043:6;18040:30;18037:56;;;18073:18;;:::i;:::-;18037:56;18111:29;18133:6;18111:29;:::i;:::-;18103:37;;18195:4;18189;18185:15;18177:23;;17899:308;;;:::o;18213:141::-;18262:4;18285:3;18277:11;;18308:3;18305:1;18298:14;18342:4;18339:1;18329:18;18321:26;;18213:141;;;:::o;18360:98::-;18411:6;18445:5;18439:12;18429:22;;18360:98;;;:::o;18464:99::-;18516:6;18550:5;18544:12;18534:22;;18464:99;;;:::o;18569:168::-;18652:11;18686:6;18681:3;18674:19;18726:4;18721:3;18717:14;18702:29;;18569:168;;;;:::o;18743:169::-;18827:11;18861:6;18856:3;18849:19;18901:4;18896:3;18892:14;18877:29;;18743:169;;;;:::o;18918:148::-;19020:11;19057:3;19042:18;;18918:148;;;;:::o;19072:305::-;19112:3;19131:20;19149:1;19131:20;:::i;:::-;19126:25;;19165:20;19183:1;19165:20;:::i;:::-;19160:25;;19319:1;19251:66;19247:74;19244:1;19241:81;19238:107;;;19325:18;;:::i;:::-;19238:107;19369:1;19366;19362:9;19355:16;;19072:305;;;;:::o;19383:348::-;19423:7;19446:20;19464:1;19446:20;:::i;:::-;19441:25;;19480:20;19498:1;19480:20;:::i;:::-;19475:25;;19668:1;19600:66;19596:74;19593:1;19590:81;19585:1;19578:9;19571:17;19567:105;19564:131;;;19675:18;;:::i;:::-;19564:131;19723:1;19720;19716:9;19705:20;;19383:348;;;;:::o;19737:96::-;19774:7;19803:24;19821:5;19803:24;:::i;:::-;19792:35;;19737:96;;;:::o;19839:90::-;19873:7;19916:5;19909:13;19902:21;19891:32;;19839:90;;;:::o;19935:149::-;19971:7;20011:66;20004:5;20000:78;19989:89;;19935:149;;;:::o;20090:126::-;20127:7;20167:42;20160:5;20156:54;20145:65;;20090:126;;;:::o;20222:77::-;20259:7;20288:5;20277:16;;20222:77;;;:::o;20305:154::-;20389:6;20384:3;20379;20366:30;20451:1;20442:6;20437:3;20433:16;20426:27;20305:154;;;:::o;20465:307::-;20533:1;20543:113;20557:6;20554:1;20551:13;20543:113;;;20642:1;20637:3;20633:11;20627:18;20623:1;20618:3;20614:11;20607:39;20579:2;20576:1;20572:10;20567:15;;20543:113;;;20674:6;20671:1;20668:13;20665:101;;;20754:1;20745:6;20740:3;20736:16;20729:27;20665:101;20514:258;20465:307;;;:::o;20778:320::-;20822:6;20859:1;20853:4;20849:12;20839:22;;20906:1;20900:4;20896:12;20927:18;20917:81;;20983:4;20975:6;20971:17;20961:27;;20917:81;21045:2;21037:6;21034:14;21014:18;21011:38;21008:84;;;21064:18;;:::i;:::-;21008:84;20829:269;20778:320;;;:::o;21104:281::-;21187:27;21209:4;21187:27;:::i;:::-;21179:6;21175:40;21317:6;21305:10;21302:22;21281:18;21269:10;21266:34;21263:62;21260:88;;;21328:18;;:::i;:::-;21260:88;21368:10;21364:2;21357:22;21147:238;21104:281;;:::o;21391:180::-;21439:77;21436:1;21429:88;21536:4;21533:1;21526:15;21560:4;21557:1;21550:15;21577:180;21625:77;21622:1;21615:88;21722:4;21719:1;21712:15;21746:4;21743:1;21736:15;21763:180;21811:77;21808:1;21801:88;21908:4;21905:1;21898:15;21932:4;21929:1;21922:15;21949:117;22058:1;22055;22048:12;22072:117;22181:1;22178;22171:12;22195:117;22304:1;22301;22294:12;22318:117;22427:1;22424;22417:12;22441:102;22482:6;22533:2;22529:7;22524:2;22517:5;22513:14;22509:28;22499:38;;22441:102;;;:::o;22549:176::-;22689:28;22685:1;22677:6;22673:14;22666:52;22549:176;:::o;22731:225::-;22871:34;22867:1;22859:6;22855:14;22848:58;22940:8;22935:2;22927:6;22923:15;22916:33;22731:225;:::o;22962:173::-;23102:25;23098:1;23090:6;23086:14;23079:49;22962:173;:::o;23141:155::-;23281:7;23277:1;23269:6;23265:14;23258:31;23141:155;:::o;23302:182::-;23442:34;23438:1;23430:6;23426:14;23419:58;23302:182;:::o;23490:167::-;23630:19;23626:1;23618:6;23614:14;23607:43;23490:167;:::o;23663:166::-;23803:18;23799:1;23791:6;23787:14;23780:42;23663:166;:::o;23835:122::-;23908:24;23926:5;23908:24;:::i;:::-;23901:5;23898:35;23888:63;;23947:1;23944;23937:12;23888:63;23835:122;:::o;23963:116::-;24033:21;24048:5;24033:21;:::i;:::-;24026:5;24023:32;24013:60;;24069:1;24066;24059:12;24013:60;23963:116;:::o;24085:120::-;24157:23;24174:5;24157:23;:::i;:::-;24150:5;24147:34;24137:62;;24195:1;24192;24185:12;24137:62;24085:120;:::o;24211:122::-;24284:24;24302:5;24284:24;:::i;:::-;24277:5;24274:35;24264:63;;24323:1;24320;24313:12;24264:63;24211:122;:::o

Swarm Source

ipfs://6a65e8ba1867567a77b1216228610567705c13a356c726bf25d0094b4278661f
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.