APE Price: $1.06 (+4.70%)

Token

Mintify Ape Keys (MNFAPK)

Overview

Max Total Supply

1 MNFAPK

Holders

1

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

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

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
MintifyApeKeys

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at apescan.io on 2024-11-06
*/

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256 result) {
        // Counter underflow is impossible as `_burnCounter` cannot be incremented
        // more than `_currentIndex + _spotMinted - _startTokenId()` times.
        unchecked {
            // With spot minting, the intermediate `result` can be temporarily negative,
            // and the computation must be unchecked.
            result = _currentIndex - _burnCounter - _startTokenId();
            if (_sequentialUpTo() != type(uint256).max) result += _spotMinted;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account. See {ERC721A-_approve}.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     */
    function approve(address to, uint256 tokenId) public payable virtual override {
        _approve(to, tokenId, true);
    }

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

        // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
        uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS;
        assembly {
            // Emit the `Transfer` event.
            log4(
                0, // Start of data (0, since no data).
                0, // End of data (0, since no data).
                _TRANSFER_EVENT_SIGNATURE, // Signature.
                from, // `from`.
                toMasked, // `to`.
                tokenId // `tokenId`.
            )
        }
        if (toMasked == 0) _revert(TransferToZeroAddress.selector);

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

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

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

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

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

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

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

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

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

            do {
                assembly {
                    // Emit the `Transfer` event.
                    log4(
                        0, // Start of data (0, since no data).
                        0, // End of data (0, since no data).
                        _TRANSFER_EVENT_SIGNATURE, // Signature.
                        0, // `address(0)`.
                        toMasked, // `to`.
                        tokenId // `tokenId`.
                    )
                }
                // The `!=` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
            } while (++tokenId != end);

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

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

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

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

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

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

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

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

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

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        _revert(TransferToNonERC721ReceiverImplementer.selector);
                    }
                } while (index < end);
                // This prevents reentrancy to `_safeMint`.
                // It does not prevent reentrancy to `_safeMintSpot`.
                if (_currentIndex != end) revert();
            }
        }
    }

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

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

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

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

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

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

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

            assembly {
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    tokenId // `tokenId`.
                )
            }

            ++_spotMinted;
        }

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.20;

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

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

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

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


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

pragma solidity ^0.8.20;


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

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

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

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

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

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/IERC165.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC-165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[ERC].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[ERC section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/interfaces/IERC2981.sol


// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.20;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     *
     * NOTE: ERC-2981 allows setting the royalty to 100% of the price. In that case all the price would be sent to the
     * royalty receiver and 0 tokens to the seller. Contracts dealing with royalty should consider empty transfers.
     */
    function royaltyInfo(
        uint256 tokenId,
        uint256 salePrice
    ) external view returns (address receiver, uint256 royaltyAmount);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/ERC165.sol)

pragma solidity ^0.8.20;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC-165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/common/ERC2981.sol


// OpenZeppelin Contracts (last updated v5.1.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.20;



/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the ERC. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 tokenId => RoyaltyInfo) private _tokenRoyaltyInfo;

    /**
     * @dev The default royalty set is invalid (eg. (numerator / denominator) >= 1).
     */
    error ERC2981InvalidDefaultRoyalty(uint256 numerator, uint256 denominator);

    /**
     * @dev The default royalty receiver is invalid.
     */
    error ERC2981InvalidDefaultRoyaltyReceiver(address receiver);

    /**
     * @dev The royalty set for an specific `tokenId` is invalid (eg. (numerator / denominator) >= 1).
     */
    error ERC2981InvalidTokenRoyalty(uint256 tokenId, uint256 numerator, uint256 denominator);

    /**
     * @dev The royalty receiver for `tokenId` is invalid.
     */
    error ERC2981InvalidTokenRoyaltyReceiver(uint256 tokenId, address receiver);

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) {
        return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(
        uint256 tokenId,
        uint256 salePrice
    ) public view virtual returns (address receiver, uint256 amount) {
        RoyaltyInfo storage _royaltyInfo = _tokenRoyaltyInfo[tokenId];
        address royaltyReceiver = _royaltyInfo.receiver;
        uint96 royaltyFraction = _royaltyInfo.royaltyFraction;

        if (royaltyReceiver == address(0)) {
            royaltyReceiver = _defaultRoyaltyInfo.receiver;
            royaltyFraction = _defaultRoyaltyInfo.royaltyFraction;
        }

        uint256 royaltyAmount = (salePrice * royaltyFraction) / _feeDenominator();

        return (royaltyReceiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        uint256 denominator = _feeDenominator();
        if (feeNumerator > denominator) {
            // Royalty fee will exceed the sale price
            revert ERC2981InvalidDefaultRoyalty(feeNumerator, denominator);
        }
        if (receiver == address(0)) {
            revert ERC2981InvalidDefaultRoyaltyReceiver(address(0));
        }

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(uint256 tokenId, address receiver, uint96 feeNumerator) internal virtual {
        uint256 denominator = _feeDenominator();
        if (feeNumerator > denominator) {
            // Royalty fee will exceed the sale price
            revert ERC2981InvalidTokenRoyalty(tokenId, feeNumerator, denominator);
        }
        if (receiver == address(0)) {
            revert ERC2981InvalidTokenRoyaltyReceiver(tokenId, address(0));
        }

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

// File: @openzeppelin/contracts/utils/structs/BitMaps.sol


// OpenZeppelin Contracts (last updated v5.0.0) (utils/structs/BitMaps.sol)
pragma solidity ^0.8.20;

/**
 * @dev Library for managing uint256 to bool mapping in a compact and efficient way, provided the keys are sequential.
 * Largely inspired by Uniswap's https://github.com/Uniswap/merkle-distributor/blob/master/contracts/MerkleDistributor.sol[merkle-distributor].
 *
 * BitMaps pack 256 booleans across each bit of a single 256-bit slot of `uint256` type.
 * Hence booleans corresponding to 256 _sequential_ indices would only consume a single slot,
 * unlike the regular `bool` which would consume an entire slot for a single value.
 *
 * This results in gas savings in two ways:
 *
 * - Setting a zero value to non-zero only once every 256 times
 * - Accessing the same warm slot for every 256 _sequential_ indices
 */
library BitMaps {
    struct BitMap {
        mapping(uint256 bucket => uint256) _data;
    }

    /**
     * @dev Returns whether the bit at `index` is set.
     */
    function get(BitMap storage bitmap, uint256 index) internal view returns (bool) {
        uint256 bucket = index >> 8;
        uint256 mask = 1 << (index & 0xff);
        return bitmap._data[bucket] & mask != 0;
    }

    /**
     * @dev Sets the bit at `index` to the boolean `value`.
     */
    function setTo(BitMap storage bitmap, uint256 index, bool value) internal {
        if (value) {
            set(bitmap, index);
        } else {
            unset(bitmap, index);
        }
    }

    /**
     * @dev Sets the bit at `index`.
     */
    function set(BitMap storage bitmap, uint256 index) internal {
        uint256 bucket = index >> 8;
        uint256 mask = 1 << (index & 0xff);
        bitmap._data[bucket] |= mask;
    }

    /**
     * @dev Unsets the bit at `index`.
     */
    function unset(BitMap storage bitmap, uint256 index) internal {
        uint256 bucket = index >> 8;
        uint256 mask = 1 << (index & 0xff);
        bitmap._data[bucket] &= ~mask;
    }
}

// File: closedsea/src/OperatorFilterer.sol


pragma solidity ^0.8.4;

/// @notice Optimized and flexible operator filterer to abide to OpenSea's
/// mandatory on-chain royalty enforcement in order for new collections to
/// receive royalties.
/// For more information, see:
/// See: https://github.com/ProjectOpenSea/operator-filter-registry
abstract contract OperatorFilterer {
    /// @dev The default OpenSea operator blocklist subscription.
    address internal constant _DEFAULT_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

    /// @dev The OpenSea operator filter registry.
    address internal constant _OPERATOR_FILTER_REGISTRY = 0x000000000000AAeB6D7670E522A718067333cd4E;

    /// @dev Registers the current contract to OpenSea's operator filter,
    /// and subscribe to the default OpenSea operator blocklist.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering() internal virtual {
        _registerForOperatorFiltering(_DEFAULT_SUBSCRIPTION, true);
    }

    /// @dev Registers the current contract to OpenSea's operator filter.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering(address subscriptionOrRegistrantToCopy, bool subscribe)
        internal
        virtual
    {
        /// @solidity memory-safe-assembly
        assembly {
            let functionSelector := 0x7d3e3dbe // `registerAndSubscribe(address,address)`.

            // Clean the upper 96 bits of `subscriptionOrRegistrantToCopy` in case they are dirty.
            subscriptionOrRegistrantToCopy := shr(96, shl(96, subscriptionOrRegistrantToCopy))

            for {} iszero(subscribe) {} {
                if iszero(subscriptionOrRegistrantToCopy) {
                    functionSelector := 0x4420e486 // `register(address)`.
                    break
                }
                functionSelector := 0xa0af2903 // `registerAndCopyEntries(address,address)`.
                break
            }
            // Store the function selector.
            mstore(0x00, shl(224, functionSelector))
            // Store the `address(this)`.
            mstore(0x04, address())
            // Store the `subscriptionOrRegistrantToCopy`.
            mstore(0x24, subscriptionOrRegistrantToCopy)
            // Register into the registry.
            if iszero(call(gas(), _OPERATOR_FILTER_REGISTRY, 0, 0x00, 0x44, 0x00, 0x04)) {
                // If the function selector has not been overwritten,
                // it is an out-of-gas error.
                if eq(shr(224, mload(0x00)), functionSelector) {
                    // To prevent gas under-estimation.
                    revert(0, 0)
                }
            }
            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, because of Solidity's memory size limits.
            mstore(0x24, 0)
        }
    }

    /// @dev Modifier to guard a function and revert if the caller is a blocked operator.
    modifier onlyAllowedOperator(address from) virtual {
        if (from != msg.sender) {
            if (!_isPriorityOperator(msg.sender)) {
                if (_operatorFilteringEnabled()) _revertIfBlocked(msg.sender);
            }
        }
        _;
    }

    /// @dev Modifier to guard a function from approving a blocked operator..
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        if (!_isPriorityOperator(operator)) {
            if (_operatorFilteringEnabled()) _revertIfBlocked(operator);
        }
        _;
    }

    /// @dev Helper function that reverts if the `operator` is blocked by the registry.
    function _revertIfBlocked(address operator) private view {
        /// @solidity memory-safe-assembly
        assembly {
            // Store the function selector of `isOperatorAllowed(address,address)`,
            // shifted left by 6 bytes, which is enough for 8tb of memory.
            // We waste 6-3 = 3 bytes to save on 6 runtime gas (PUSH1 0x224 SHL).
            mstore(0x00, 0xc6171134001122334455)
            // Store the `address(this)`.
            mstore(0x1a, address())
            // Store the `operator`.
            mstore(0x3a, operator)

            // `isOperatorAllowed` always returns true if it does not revert.
            if iszero(staticcall(gas(), _OPERATOR_FILTER_REGISTRY, 0x16, 0x44, 0x00, 0x00)) {
                // Bubble up the revert if the staticcall reverts.
                returndatacopy(0x00, 0x00, returndatasize())
                revert(0x00, returndatasize())
            }

            // We'll skip checking if `from` is inside the blacklist.
            // Even though that can block transferring out of wrapper contracts,
            // we don't want tokens to be stuck.

            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, if less than 8tb of memory is used.
            mstore(0x3a, 0)
        }
    }

    /// @dev For deriving contracts to override, so that operator filtering
    /// can be turned on / off.
    /// Returns true by default.
    function _operatorFilteringEnabled() internal view virtual returns (bool) {
        return true;
    }

    /// @dev For deriving contracts to override, so that preferred marketplaces can
    /// skip operator filtering, helping users save gas.
    /// Returns false for all inputs by default.
    function _isPriorityOperator(address) internal view virtual returns (bool) {
        return false;
    }
}

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


// OpenZeppelin Contracts (last updated v5.1.0) (utils/cryptography/Hashes.sol)

pragma solidity ^0.8.20;

/**
 * @dev Library of standard hash functions.
 *
 * _Available since v5.1._
 */
library Hashes {
    /**
     * @dev Commutative Keccak256 hash of a sorted pair of bytes32. Frequently used when working with merkle proofs.
     *
     * NOTE: Equivalent to the `standardNodeHash` in our https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
     */
    function commutativeKeccak256(bytes32 a, bytes32 b) internal pure returns (bytes32) {
        return a < b ? _efficientKeccak256(a, b) : _efficientKeccak256(b, a);
    }

    /**
     * @dev Implementation of keccak256(abi.encode(a, b)) that doesn't allocate or expand memory.
     */
    function _efficientKeccak256(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly ("memory-safe") {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


// OpenZeppelin Contracts (last updated v5.1.0) (utils/cryptography/MerkleProof.sol)
// This file was procedurally generated from scripts/generate/templates/MerkleProof.js.

pragma solidity ^0.8.20;


/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * 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.
 * OpenZeppelin's JavaScript library generates Merkle trees that are safe
 * against this attack out of the box.
 *
 * IMPORTANT: Consider memory side-effects when using custom hashing functions
 * that access memory in an unsafe way.
 *
 * NOTE: This library supports proof verification for merkle trees built using
 * custom _commutative_ hashing functions (i.e. `H(a, b) == H(b, a)`). Proving
 * leaf inclusion in trees built using non-commutative hashing functions requires
 * additional logic that is not supported by this library.
 */
library MerkleProof {
    /**
     *@dev The multiproof provided is not valid.
     */
    error MerkleProofInvalidMultiproof();

    /**
     * @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.
     *
     * This version handles proofs in memory with the default hashing function.
     */
    function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProof(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 leaves & pre-images are assumed to be sorted.
     *
     * This version handles proofs in memory with the default hashing function.
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = Hashes.commutativeKeccak256(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @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.
     *
     * This version handles proofs in memory with a custom hashing function.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf,
        function(bytes32, bytes32) view returns (bytes32) hasher
    ) internal view returns (bool) {
        return processProof(proof, leaf, hasher) == 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 leaves & pre-images are assumed to be sorted.
     *
     * This version handles proofs in memory with a custom hashing function.
     */
    function processProof(
        bytes32[] memory proof,
        bytes32 leaf,
        function(bytes32, bytes32) view returns (bytes32) hasher
    ) internal view returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = hasher(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @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.
     *
     * This version handles proofs in calldata with the default hashing function.
     */
    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 leaves & pre-images are assumed to be sorted.
     *
     * This version handles proofs in calldata with the default hashing function.
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = Hashes.commutativeKeccak256(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @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.
     *
     * This version handles proofs in calldata with a custom hashing function.
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf,
        function(bytes32, bytes32) view returns (bytes32) hasher
    ) internal view returns (bool) {
        return processProofCalldata(proof, leaf, hasher) == 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 leaves & pre-images are assumed to be sorted.
     *
     * This version handles proofs in calldata with a custom hashing function.
     */
    function processProofCalldata(
        bytes32[] calldata proof,
        bytes32 leaf,
        function(bytes32, bytes32) view returns (bytes32) hasher
    ) internal view returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = hasher(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * This version handles multiproofs in memory with the default hashing function.
     *
     * CAUTION: Not all Merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * NOTE: Consider the case where `root == proof[0] && leaves.length == 0` as it will return `true`.
     * The `leaves` must be validated independently. See {processMultiProof}.
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * This version handles multiproofs in memory with the default hashing function.
     *
     * CAUTION: Not all Merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * NOTE: The _empty set_ (i.e. the case where `proof.length == 1 && leaves.length == 0`) is considered a no-op,
     * and therefore a valid multiproof (i.e. it returns `proof[0]`). Consider disallowing this case if you're not
     * validating the leaves elsewhere.
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds 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 proofFlagsLen = proofFlags.length;

        // Check proof validity.
        if (leavesLen + proof.length != proofFlagsLen + 1) {
            revert MerkleProofInvalidMultiproof();
        }

        // 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[](proofFlagsLen);
        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 from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < proofFlagsLen; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = Hashes.commutativeKeccak256(a, b);
        }

        if (proofFlagsLen > 0) {
            if (proofPos != proof.length) {
                revert MerkleProofInvalidMultiproof();
            }
            unchecked {
                return hashes[proofFlagsLen - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * This version handles multiproofs in memory with a custom hashing function.
     *
     * CAUTION: Not all Merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * NOTE: Consider the case where `root == proof[0] && leaves.length == 0` as it will return `true`.
     * The `leaves` must be validated independently. See {processMultiProof}.
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves,
        function(bytes32, bytes32) view returns (bytes32) hasher
    ) internal view returns (bool) {
        return processMultiProof(proof, proofFlags, leaves, hasher) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * This version handles multiproofs in memory with a custom hashing function.
     *
     * CAUTION: Not all Merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * NOTE: The _empty set_ (i.e. the case where `proof.length == 1 && leaves.length == 0`) is considered a no-op,
     * and therefore a valid multiproof (i.e. it returns `proof[0]`). Consider disallowing this case if you're not
     * validating the leaves elsewhere.
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves,
        function(bytes32, bytes32) view returns (bytes32) hasher
    ) internal view returns (bytes32 merkleRoot) {
        // This function rebuilds 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 proofFlagsLen = proofFlags.length;

        // Check proof validity.
        if (leavesLen + proof.length != proofFlagsLen + 1) {
            revert MerkleProofInvalidMultiproof();
        }

        // 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[](proofFlagsLen);
        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 from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < proofFlagsLen; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = hasher(a, b);
        }

        if (proofFlagsLen > 0) {
            if (proofPos != proof.length) {
                revert MerkleProofInvalidMultiproof();
            }
            unchecked {
                return hashes[proofFlagsLen - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * This version handles multiproofs in calldata with the default hashing function.
     *
     * CAUTION: Not all Merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * NOTE: Consider the case where `root == proof[0] && leaves.length == 0` as it will return `true`.
     * The `leaves` must be validated independently. See {processMultiProofCalldata}.
     */
    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 sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * This version handles multiproofs in calldata with the default hashing function.
     *
     * CAUTION: Not all Merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * NOTE: The _empty set_ (i.e. the case where `proof.length == 1 && leaves.length == 0`) is considered a no-op,
     * and therefore a valid multiproof (i.e. it returns `proof[0]`). Consider disallowing this case if you're not
     * validating the leaves elsewhere.
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds 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 proofFlagsLen = proofFlags.length;

        // Check proof validity.
        if (leavesLen + proof.length != proofFlagsLen + 1) {
            revert MerkleProofInvalidMultiproof();
        }

        // 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[](proofFlagsLen);
        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 from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < proofFlagsLen; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = Hashes.commutativeKeccak256(a, b);
        }

        if (proofFlagsLen > 0) {
            if (proofPos != proof.length) {
                revert MerkleProofInvalidMultiproof();
            }
            unchecked {
                return hashes[proofFlagsLen - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * This version handles multiproofs in calldata with a custom hashing function.
     *
     * CAUTION: Not all Merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * NOTE: Consider the case where `root == proof[0] && leaves.length == 0` as it will return `true`.
     * The `leaves` must be validated independently. See {processMultiProofCalldata}.
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves,
        function(bytes32, bytes32) view returns (bytes32) hasher
    ) internal view returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves, hasher) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * This version handles multiproofs in calldata with a custom hashing function.
     *
     * CAUTION: Not all Merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * NOTE: The _empty set_ (i.e. the case where `proof.length == 1 && leaves.length == 0`) is considered a no-op,
     * and therefore a valid multiproof (i.e. it returns `proof[0]`). Consider disallowing this case if you're not
     * validating the leaves elsewhere.
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves,
        function(bytes32, bytes32) view returns (bytes32) hasher
    ) internal view returns (bytes32 merkleRoot) {
        // This function rebuilds 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 proofFlagsLen = proofFlags.length;

        // Check proof validity.
        if (leavesLen + proof.length != proofFlagsLen + 1) {
            revert MerkleProofInvalidMultiproof();
        }

        // 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[](proofFlagsLen);
        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 from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < proofFlagsLen; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = hasher(a, b);
        }

        if (proofFlagsLen > 0) {
            if (proofPos != proof.length) {
                revert MerkleProofInvalidMultiproof();
            }
            unchecked {
                return hashes[proofFlagsLen - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }
}

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


// OpenZeppelin Contracts (last updated v5.1.0) (utils/ReentrancyGuard.sol)

pragma solidity ^0.8.20;

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

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

    uint256 private _status;

    /**
     * @dev Unauthorized reentrant call.
     */
    error ReentrancyGuardReentrantCall();

    constructor() {
        _status = NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be NOT_ENTERED
        if (_status == ENTERED) {
            revert ReentrancyGuardReentrantCall();
        }

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

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

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == ENTERED;
    }
}

// File: genesis-apechain.sol


pragma solidity ^0.8.24;








error MaxSupplyExceeded();
error PhaseMaxSupplyExceeded();
error MaxPerWalletExceeded();
error MaxPerOrderExceeded();
error PhaseClosed();
error TransfersLocked();
error NotAllowedByRegistry();
error RegistryNotSet();
error WrongWeiSent();
error MaxFeeExceeded();
error InputLengthsMismatch();
error InvalidMerkleProof();
error InvalidAmount();
error InvalidAddress();

interface IRegistry {
    function isAllowedOperator(address operator) external view returns (bool);
}

contract MintifyApeKeys is ReentrancyGuard, Ownable, OperatorFilterer, ERC2981, ERC721A {
    using BitMaps for BitMaps.BitMap;

    // Phases status
    bool public phaseOneOpen;
    bool public phaseTwoOpen;

    // Phases prices
    uint256 private phaseOnePrice = 0;
    uint256 private phaseTwoPrice = 0;

    // Phases maps
    mapping(address => uint256) public phaseOneAllowance;
    mapping(address => uint256) public phaseTwoAllowance;

    // Phases supply limits
    uint256 public phaseOneSupply;
    uint256 public phaseOneSupplyLimit = 6126;
    uint256 public phaseTwoSupply;
    uint256 public phaseTwoSupplyLimit = 3874;

    // Phases Merkle Roots
    bytes32 public phaseOneMerkleRoot;
    bytes32 public phaseTwoMerkleRoot;

    uint256 private maxSupply = 10000;
    uint256 public maxPerWallet = 4;
    uint256 public maxPerOrder = 2;

    bool public operatorFilteringEnabled = true;
    bool public initialTransferLockOn = true;
    bool public isRegistryActive;
    address public registryAddress;

    // Events
    event PhaseOneStatusChanged(bool newState);
    event PhaseTwoStatusChanged(bool newState);
    event PhaseOneMerkleRootUpdated(bytes32 newMerkleRoot);
    event PhaseTwoMerkleRootUpdated(bytes32 newMerkleRoot);
    event MaxSupplyUpdated(uint256 newMaxSupply);
    event MaxPerWalletUpdated(uint256 newMaxPerWallet);
    event MaxPerOrderUpdated(uint256 newMaxPerOrder);
    event PhaseOnePriceUpdated(uint256 newPrice);
    event PhaseTwoPriceUpdated(uint256 newPrice);
    event PhaseOneSupplyLimitUpdated(uint256 newSupplyLimit);
    event PhaseTwoSupplyLimitUpdated(uint256 newSupplyLimit);

    string public _baseTokenURI = "https://genesis-metas.mintify.xyz";

    constructor() ERC721A("Mintify Ape Keys", "MNFAPK") Ownable(msg.sender) {

        // Register operator filtering
        _registerForOperatorFiltering();

        // Set initial 2% royalty
        _setDefaultRoyalty(owner(), 200);

    }

    // Phase 1 Mint
    function phaseOneMint(uint256 quantity, bytes32[] calldata merkleProof, uint256 allowance) external payable nonReentrant {
        
        // Check if phase is open
        if (!phaseOneOpen) {
            revert PhaseClosed();
        }

        // Verify merkle proof
        bytes32 node = keccak256(abi.encodePacked(msg.sender, allowance));
        if (!MerkleProof.verify(merkleProof, phaseOneMerkleRoot, node)) {
            revert InvalidMerkleProof();
        }

        // Check if quantity is within limits
        if (quantity > allowance) {
            revert MaxPerWalletExceeded();
        }

        // Check if user has minted more than the allowance
        if (phaseOneAllowance[msg.sender] + quantity > allowance) {
            revert MaxPerWalletExceeded();
        }

        // Check if phase supply is within limits
        if (phaseOneSupply != 0 && phaseOneSupply + quantity > phaseOneSupplyLimit) {
            revert PhaseMaxSupplyExceeded();
        }

        // Check if total supply is within limits
        if (maxSupply != 0 && totalSupply() + quantity > maxSupply) {
            revert MaxSupplyExceeded();
        }

        // Check if price sent is correct
        if (msg.value != (phaseOnePrice * quantity)) {
            revert WrongWeiSent();
        }

        // Add to users allowance ledger
        phaseOneAllowance[msg.sender] += quantity;

        // Add to phase supply
        phaseOneSupply += quantity;

        // Mint
         _mint(msg.sender, quantity);

    }

    // Phase 2 Mint
    function phaseTwoMint(uint256 quantity, bytes32[] calldata merkleProof) external payable nonReentrant {
        
        // Check if phase is open
        if (!phaseTwoOpen) {
            revert PhaseClosed();
        }

        // Verify merkle proof
        bytes32 node = keccak256(abi.encodePacked(msg.sender));
        if (!MerkleProof.verify(merkleProof, phaseTwoMerkleRoot, node)) {
            revert InvalidMerkleProof();
        }

        // Check if quantity is within the per-transaction limit (if applicable)
        if (maxPerOrder != 0 && quantity > maxPerOrder) {
            revert MaxPerOrderExceeded();
        }

        // Check total minted across both phases
        if (maxPerWallet != 0 && phaseOneAllowance[msg.sender] + phaseTwoAllowance[msg.sender] + quantity > maxPerWallet) {
            revert MaxPerWalletExceeded();
        }

        // Check if phase supply is within limits
        if (phaseTwoSupply != 0 && phaseTwoSupply + quantity > phaseTwoSupplyLimit) {
            revert PhaseMaxSupplyExceeded();
        }

        // Check if total supply is within limits
        if (maxSupply != 0 && totalSupply() + quantity > maxSupply) {
            revert MaxSupplyExceeded();
        }

        // Check if price sent is correct
        if (msg.value != (phaseTwoPrice * quantity)) {
            revert WrongWeiSent();
        }

        // Add to users allowance ledger
        phaseTwoAllowance[msg.sender] += quantity;

        // Add to phase supply
        phaseTwoSupply += quantity;

        // Mint
         _mint(msg.sender, quantity);

    }


    // =========================================================================
    //                           Owner Only Functions
    // =========================================================================

    // Owner airdrop
    function airDrop(address[] memory users, uint256[] memory amounts) external onlyOwner nonReentrant {
        // iterate over users and amounts
        if (users.length != amounts.length) {
            revert InputLengthsMismatch();
        }
        for (uint256 i; i < users.length;) {

            // Check for zero amounts
            if (amounts[i] == 0) {
                revert InvalidAmount();
            }

            // Check for zero address
            if (users[i] == address(0)) {
                revert InvalidAddress();
            }

            if (maxSupply != 0 && totalSupply() + amounts[i] > maxSupply) {
                revert MaxSupplyExceeded();
            }
            _mint(users[i], amounts[i]);
            unchecked {
                ++i;
            }
        }
    }

    // Owner unrestricted mint
    function ownerMint(address to, uint256 quantity) external onlyOwner nonReentrant {

        // Check for zero address
        if (to == address(0)) {
            revert InvalidAddress();
        }

        if (maxSupply != 0 && totalSupply() + quantity > maxSupply) {
            revert MaxSupplyExceeded();
        }
        _mint(to, quantity);
    }

    // Enables or disables phase 1
    function setPhaseOneStatus(bool newState) external onlyOwner {
        phaseOneOpen = newState;
        emit PhaseOneStatusChanged(newState);
    }

    // Enables or disables phase 2
    function setPhaseTwoStatus(bool newState) external onlyOwner {
        phaseTwoOpen = newState;
        emit PhaseTwoStatusChanged(newState);
    }

    // Set phase one merkle root
    function setPhaseOneMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        phaseOneMerkleRoot = _merkleRoot;
        emit PhaseOneMerkleRootUpdated(_merkleRoot);
    }

    // Set phase two merkle root
    function setPhaseTwoMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        phaseTwoMerkleRoot = _merkleRoot;
        emit PhaseTwoMerkleRootUpdated(_merkleRoot);
    }

    // Set phase 1 price
    function setPhaseOnePrice(uint256 newPrice) external onlyOwner {
        phaseOnePrice = newPrice;
        emit PhaseOnePriceUpdated(newPrice);
    }

    // Set phase 2 price
    function setPhaseTwoPrice(uint256 newPrice) external onlyOwner {
        phaseTwoPrice = newPrice;
        emit PhaseTwoPriceUpdated(newPrice);
    }

    // Set phase one supply limit
    function setPhaseOneSupplyLimit(uint256 newSupplyLimit) external onlyOwner {
        phaseOneSupplyLimit = newSupplyLimit;
        emit PhaseOneSupplyLimitUpdated(newSupplyLimit);
    }

    // Set phase two supply limit
    function setPhaseTwoSupplyLimit(uint256 newSupplyLimit) external onlyOwner {
        phaseTwoSupplyLimit = newSupplyLimit;
        emit PhaseTwoSupplyLimitUpdated(newSupplyLimit);
    }

    // Set max supply
    function setMaxSupply(uint256 newMaxSupply) external onlyOwner {
        maxSupply = newMaxSupply;
        emit MaxSupplyUpdated(newMaxSupply);
    }

    // Set max per wallet
    function setMaxPerWallet(uint256 newMaxPerWallet) external onlyOwner {
        maxPerWallet = newMaxPerWallet;
        emit MaxPerWalletUpdated(newMaxPerWallet);
    }

    // Set max per order
    function setMaxPerOrder(uint256 newMaxPerOrder) external onlyOwner {
        maxPerOrder = newMaxPerOrder;
        emit MaxPerOrderUpdated(newMaxPerOrder);
    }

    // Withdraw Balance to owner
    function withdraw() public onlyOwner nonReentrant {
        payable(owner()).transfer(address(this).balance);
    }

    // Withdraw Balance to Address
    function withdrawTo(address payable _to) public onlyOwner nonReentrant {

        // Check for zero address
        if (_to == address(0)) {
            revert InvalidAddress();
        }

        _to.transfer(address(this).balance);
    }

    // Break Transfer Lock
    function breakLock() external onlyOwner {
        initialTransferLockOn = false;
    }

    // =========================================================================
    //                             ERC721A Misc
    // =========================================================================

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

    // =========================================================================
    //                           Operator filtering
    // =========================================================================

    function setApprovalForAll(address operator, bool approved)
        public
        override (ERC721A)
        onlyAllowedOperatorApproval(operator)
    {
        if (initialTransferLockOn) {
            revert TransfersLocked();
        }
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId)
        public
        payable
        override (ERC721A)
        onlyAllowedOperatorApproval(operator)
    {
        if (initialTransferLockOn) {
            revert TransfersLocked();
        }
        super.approve(operator, tokenId);
    }

    function transferFrom(address from, address to, uint256 tokenId)
        public
        payable
        override (ERC721A)
        onlyAllowedOperator(from)
    {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId)
        public
        payable
        override (ERC721A)
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        payable
        override (ERC721A)
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }

    function setOperatorFilteringEnabled(bool value) public onlyOwner {
        operatorFilteringEnabled = value;
    }

    function _operatorFilteringEnabled() internal view override returns (bool) {
        return operatorFilteringEnabled;
    }

    // =========================================================================
    //                             Registry Check
    // =========================================================================
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal override {
        if (initialTransferLockOn && from != address(0) && to != address(0)) {
            revert TransfersLocked();
        }
        if (_isValidAgainstRegistry(msg.sender)) {
            super._beforeTokenTransfers(from, to, startTokenId, quantity);
        } else {
            revert NotAllowedByRegistry();
        }
    }

    function _isValidAgainstRegistry(address operator)
        internal
        view
        returns (bool)
    {
        if (isRegistryActive) {
            IRegistry registry = IRegistry(registryAddress);
            return registry.isAllowedOperator(operator);
        }
        return true;
    }

    function setIsRegistryActive(bool _isRegistryActive) external onlyOwner {
        if (registryAddress == address(0)) revert RegistryNotSet();
        isRegistryActive = _isRegistryActive;
    }

    function setRegistryAddress(address _registryAddress) external onlyOwner {
        registryAddress = _registryAddress;
    }

    // =========================================================================
    //                                  ERC165
    // =========================================================================

    function supportsInterface(bytes4 interfaceId) public view override (ERC721A, ERC2981) returns (bool) {
        // Supports the following `interfaceId`s:
        // - IERC165: 0x01ffc9a7
        // - IERC721: 0x80ac58cd
        // - IERC721Metadata: 0x5b5e139f
        // - IERC2981: 0x2a55205a
        return ERC721A.supportsInterface(interfaceId) || ERC2981.supportsInterface(interfaceId);
    }

    // =========================================================================
    //                                 ERC2891
    // =========================================================================

    function setDefaultRoyalty(address receiver, uint96 feeNumerator) public onlyOwner {
        if (feeNumerator > 1000) {
            revert MaxFeeExceeded();
        }
        _setDefaultRoyalty(receiver, feeNumerator);
    }

    function setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) external onlyOwner {
        if (feeNumerator > 1000) {
            revert MaxFeeExceeded();
        }
        _setTokenRoyalty(tokenId, receiver, feeNumerator);
    }

    // =========================================================================
    //                                 Metadata
    // =========================================================================

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

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

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[{"internalType":"uint256","name":"numerator","type":"uint256"},{"internalType":"uint256","name":"denominator","type":"uint256"}],"name":"ERC2981InvalidDefaultRoyalty","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC2981InvalidDefaultRoyaltyReceiver","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"numerator","type":"uint256"},{"internalType":"uint256","name":"denominator","type":"uint256"}],"name":"ERC2981InvalidTokenRoyalty","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC2981InvalidTokenRoyaltyReceiver","type":"error"},{"inputs":[],"name":"InputLengthsMismatch","type":"error"},{"inputs":[],"name":"InvalidAddress","type":"error"},{"inputs":[],"name":"InvalidAmount","type":"error"},{"inputs":[],"name":"InvalidMerkleProof","type":"error"},{"inputs":[],"name":"MaxFeeExceeded","type":"error"},{"inputs":[],"name":"MaxPerOrderExceeded","type":"error"},{"inputs":[],"name":"MaxPerWalletExceeded","type":"error"},{"inputs":[],"name":"MaxSupplyExceeded","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NotAllowedByRegistry","type":"error"},{"inputs":[],"name":"NotCompatibleWithSpotMints","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"PhaseClosed","type":"error"},{"inputs":[],"name":"PhaseMaxSupplyExceeded","type":"error"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"inputs":[],"name":"RegistryNotSet","type":"error"},{"inputs":[],"name":"SequentialMintExceedsLimit","type":"error"},{"inputs":[],"name":"SequentialUpToTooSmall","type":"error"},{"inputs":[],"name":"SpotMintTokenIdTooSmall","type":"error"},{"inputs":[],"name":"TokenAlreadyExists","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"TransfersLocked","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"WrongWeiSent","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":false,"internalType":"uint256","name":"newMaxPerOrder","type":"uint256"}],"name":"MaxPerOrderUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newMaxPerWallet","type":"uint256"}],"name":"MaxPerWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"MaxSupplyUpdated","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":false,"internalType":"bytes32","name":"newMerkleRoot","type":"bytes32"}],"name":"PhaseOneMerkleRootUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"PhaseOnePriceUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"newState","type":"bool"}],"name":"PhaseOneStatusChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newSupplyLimit","type":"uint256"}],"name":"PhaseOneSupplyLimitUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"newMerkleRoot","type":"bytes32"}],"name":"PhaseTwoMerkleRootUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"PhaseTwoPriceUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"newState","type":"bool"}],"name":"PhaseTwoStatusChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newSupplyLimit","type":"uint256"}],"name":"PhaseTwoSupplyLimitUpdated","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":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"breakLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialTransferLockOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRegistryActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerOrder","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","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":"phaseOneAllowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phaseOneMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"allowance","type":"uint256"}],"name":"phaseOneMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"phaseOneOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phaseOneSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phaseOneSupplyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"phaseTwoAllowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phaseTwoMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"phaseTwoMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"phaseTwoOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phaseTwoSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phaseTwoSupplyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"registryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isRegistryActive","type":"bool"}],"name":"setIsRegistryActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxPerOrder","type":"uint256"}],"name":"setMaxPerOrder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxPerWallet","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setPhaseOneMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPhaseOnePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setPhaseOneStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupplyLimit","type":"uint256"}],"name":"setPhaseOneSupplyLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setPhaseTwoMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPhaseTwoPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setPhaseTwoStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupplyLimit","type":"uint256"}],"name":"setPhaseTwoSupplyLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_registryAddress","type":"address"}],"name":"setRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setTokenRoyalty","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":"result","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"}],"name":"withdrawTo","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040525f600e555f600f556117ee601355610f2260155561271060185560046019556002601a556001601b5f6101000a81548160ff0219169083151502179055506001601b60016101000a81548160ff02191690831515021790555060405180606001604052806021815260200161581b60219139601c908161008491906107c1565b50348015610090575f80fd5b506040518060400160405280601081526020017f4d696e7469667920417065204b657973000000000000000000000000000000008152506040518060400160405280600681526020017f4d4e4641504b00000000000000000000000000000000000000000000000000008152503360015f819055505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610175575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161016c91906108cf565b60405180910390fd5b6101848161022560201b60201c565b50816006908161019491906107c1565b5080600790816101a491906107c1565b506101b36102e860201b60201c565b6004819055506101c76102e860201b60201c565b6101d56102f060201b60201c565b10156101f2576101f163fed8210f60e01b61031760201b60201c565b5b505061020261031f60201b60201c565b61022061021361034660201b60201c565b60c861036e60201b60201c565b610965565b5f60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6001905090565b5f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff905090565b805f5260045ffd5b610344733cc6cdda760b79bafa08df41ecfa224f810dceb6600161050f60201b60201c565b565b5f60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f61037d61057e60201b60201c565b6bffffffffffffffffffffffff16905080826bffffffffffffffffffffffff1611156103e25781816040517f6f483d090000000000000000000000000000000000000000000000000000000081526004016103d992919061093e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610452575f6040517fb6d9900a00000000000000000000000000000000000000000000000000000000815260040161044991906108cf565b60405180910390fd5b60405180604001604052808473ffffffffffffffffffffffffffffffffffffffff168152602001836bffffffffffffffffffffffff1681525060025f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151815f0160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550905050505050565b637d3e3dbe8260601b60601c92508161053b578261053357634420e486905061053b565b63a0af290390505b8060e01b5f52306004528260245260045f60445f806daaeb6d7670e522a718067333cd4e5af161057557805f5160e01c03610574575f80fd5b5b5f602452505050565b5f612710905090565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061060257607f821691505b602082108103610615576106146105be565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026106777fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261063c565b610681868361063c565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6106c56106c06106bb84610699565b6106a2565b610699565b9050919050565b5f819050919050565b6106de836106ab565b6106f26106ea826106cc565b848454610648565b825550505050565b5f90565b6107066106fa565b6107118184846106d5565b505050565b5b81811015610734576107295f826106fe565b600181019050610717565b5050565b601f8211156107795761074a8161061b565b6107538461062d565b81016020851015610762578190505b61077661076e8561062d565b830182610716565b50505b505050565b5f82821c905092915050565b5f6107995f198460080261077e565b1980831691505092915050565b5f6107b1838361078a565b9150826002028217905092915050565b6107ca82610587565b67ffffffffffffffff8111156107e3576107e2610591565b5b6107ed82546105eb565b6107f8828285610738565b5f60209050601f831160018114610829575f8415610817578287015190505b61082185826107a6565b865550610888565b601f1984166108378661061b565b5f5b8281101561085e57848901518255600182019150602085019450602081019050610839565b8683101561087b5784890151610877601f89168261078a565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6108b982610890565b9050919050565b6108c9816108af565b82525050565b5f6020820190506108e25f8301846108c0565b92915050565b5f6bffffffffffffffffffffffff82169050919050565b5f61091961091461090f846108e8565b6106a2565b610699565b9050919050565b610929816108ff565b82525050565b61093881610699565b82525050565b5f6040820190506109515f830185610920565b61095e602083018461092f565b9392505050565b614ea9806109725f395ff3fe60806040526004361061038b575f3560e01c80636f8b44b0116101db578063c87b56dd11610101578063e268e4d31161009f578063f2fde38b1161006e578063f2fde38b14610c8e578063f35602ba14610cb6578063f755c54414610cde578063fb796e6c14610cfa5761038b565b8063e268e4d314610bd8578063e62f89eb14610c00578063e985e9c514610c28578063ed9aab5114610c645761038b565b8063cfc86f7b116100db578063cfc86f7b14610b32578063d16bb39014610b5c578063d93d93a214610b86578063e25ad7e614610bae5761038b565b8063c87b56dd14610ab2578063c88b5fd314610aee578063c9bb881014610b0a5761038b565b80639a3dff2311610179578063ab7b499311610148578063ab7b499314610a1c578063abd017ea14610a44578063b7c0b8e814610a6e578063b88d4fde14610a965761038b565b80639a3dff231461097a5780639d46199a146109b6578063a22cb465146109de578063a70138c114610a065761038b565b806372b0d90c116101b557806372b0d90c146108d457806386b1ebd5146108fc5780638da5cb5b1461092657806395d89b41146109505761038b565b80636f8b44b01461085a57806370a0823114610882578063715018a6146108be5761038b565b806340b0960a116102c05780635944c7531161025e5780636352211e1161022d5780636352211e146107a457806365216a41146107e057806365c16038146108085780636a87bdcd146108325761038b565b80635944c753146106ec578063595d2213146107145780635dd0f75c1461073e578063631588d81461077a5761038b565b806346fff98d1161029a57806346fff98d1461064a578063484b973c1461067257806355a16c241461069a57806355f804b3146106c45761038b565b806340b0960a146105da57806342842e0e14610604578063453c2310146106205761038b565b806312b365101161032d57806323b872dd1161030757806323b872dd146105435780632a55205a1461055f5780633ccfd60b1461059c5780633e5c7a3f146105b25761038b565b806312b36510146104c7578063177319cc146104f157806318160ddd146105195761038b565b806306fdde031161036957806306fdde031461041b578063081812fc14610445578063095ea7b3146104815780630d08055b1461049d5761038b565b806301ffc9a71461038f57806304634d8d146103cb578063059b3d59146103f3575b5f80fd5b34801561039a575f80fd5b506103b560048036038101906103b09190613c1a565b610d24565b6040516103c29190613c5f565b60405180910390f35b3480156103d6575f80fd5b506103f160048036038101906103ec9190613d13565b610d45565b005b3480156103fe575f80fd5b5061041960048036038101906104149190613d84565b610da5565b005b348015610426575f80fd5b5061042f610dee565b60405161043c9190613e1f565b60405180910390f35b348015610450575f80fd5b5061046b60048036038101906104669190613d84565b610e7e565b6040516104789190613e4e565b60405180910390f35b61049b60048036038101906104969190613e67565b610ed7565b005b3480156104a8575f80fd5b506104b1610f53565b6040516104be9190613ebd565b60405180910390f35b3480156104d2575f80fd5b506104db610f59565b6040516104e89190613c5f565b60405180910390f35b3480156104fc575f80fd5b5061051760048036038101906105129190613d84565b610f6c565b005b348015610524575f80fd5b5061052d610fb5565b60405161053a9190613ee5565b60405180910390f35b61055d60048036038101906105589190613efe565b611001565b005b34801561056a575f80fd5b5061058560048036038101906105809190613f4e565b61106c565b604051610593929190613f8c565b60405180910390f35b3480156105a7575f80fd5b506105b061118e565b005b3480156105bd575f80fd5b506105d860048036038101906105d39190613fdd565b6111f3565b005b3480156105e5575f80fd5b506105ee61124f565b6040516105fb9190613ee5565b60405180910390f35b61061e60048036038101906106199190613efe565b611255565b005b34801561062b575f80fd5b506106346112c0565b6040516106419190613ee5565b60405180910390f35b348015610655575f80fd5b50610670600480360381019061066b9190613fdd565b6112c6565b005b34801561067d575f80fd5b5061069860048036038101906106939190613e67565b611372565b005b3480156106a5575f80fd5b506106ae611459565b6040516106bb9190613ee5565b60405180910390f35b3480156106cf575f80fd5b506106ea60048036038101906106e59190614069565b61145f565b005b3480156106f7575f80fd5b50610712600480360381019061070d91906140b4565b61147d565b005b34801561071f575f80fd5b506107286114df565b6040516107359190613ee5565b60405180910390f35b348015610749575f80fd5b50610764600480360381019061075f9190614104565b6114e5565b6040516107719190613ee5565b60405180910390f35b348015610785575f80fd5b5061078e6114fa565b60405161079b9190613c5f565b60405180910390f35b3480156107af575f80fd5b506107ca60048036038101906107c59190613d84565b61150c565b6040516107d79190613e4e565b60405180910390f35b3480156107eb575f80fd5b5061080660048036038101906108019190614327565b61151d565b005b348015610813575f80fd5b5061081c611711565b6040516108299190613c5f565b60405180910390f35b34801561083d575f80fd5b5061085860048036038101906108539190613fdd565b611724565b005b348015610865575f80fd5b50610880600480360381019061087b9190613d84565b61177f565b005b34801561088d575f80fd5b506108a860048036038101906108a39190614104565b6117c8565b6040516108b59190613ee5565b60405180910390f35b3480156108c9575f80fd5b506108d261185c565b005b3480156108df575f80fd5b506108fa60048036038101906108f591906143d8565b61186f565b005b348015610907575f80fd5b50610910611933565b60405161091d9190613ee5565b60405180910390f35b348015610931575f80fd5b5061093a611939565b6040516109479190613e4e565b60405180910390f35b34801561095b575f80fd5b50610964611961565b6040516109719190613e1f565b60405180910390f35b348015610985575f80fd5b506109a0600480360381019061099b9190614104565b6119f1565b6040516109ad9190613ee5565b60405180910390f35b3480156109c1575f80fd5b506109dc60048036038101906109d79190613d84565b611a06565b005b3480156109e9575f80fd5b50610a0460048036038101906109ff9190614403565b611a4f565b005b348015610a11575f80fd5b50610a1a611acb565b005b348015610a27575f80fd5b50610a426004803603810190610a3d9190614104565b611aef565b005b348015610a4f575f80fd5b50610a58611b3b565b604051610a659190613c5f565b60405180910390f35b348015610a79575f80fd5b50610a946004803603810190610a8f9190613fdd565b611b4e565b005b610ab06004803603810190610aab91906144f1565b611b72565b005b348015610abd575f80fd5b50610ad86004803603810190610ad39190613d84565b611bdf565b604051610ae59190613e1f565b60405180910390f35b610b086004803603810190610b0391906145c6565b611c7a565b005b348015610b15575f80fd5b50610b306004803603810190610b2b9190613d84565b612015565b005b348015610b3d575f80fd5b50610b4661205e565b604051610b539190613e1f565b60405180910390f35b348015610b67575f80fd5b50610b706120ea565b604051610b7d9190613ee5565b60405180910390f35b348015610b91575f80fd5b50610bac6004803603810190610ba79190613d84565b6120f0565b005b348015610bb9575f80fd5b50610bc2612139565b604051610bcf9190613ebd565b60405180910390f35b348015610be3575f80fd5b50610bfe6004803603810190610bf99190613d84565b61213f565b005b348015610c0b575f80fd5b50610c266004803603810190610c21919061464d565b612188565b005b348015610c33575f80fd5b50610c4e6004803603810190610c499190614678565b6121d1565b604051610c5b9190613c5f565b60405180910390f35b348015610c6f575f80fd5b50610c7861225f565b604051610c859190613e4e565b60405180910390f35b348015610c99575f80fd5b50610cb46004803603810190610caf9190614104565b612285565b005b348015610cc1575f80fd5b50610cdc6004803603810190610cd7919061464d565b612309565b005b610cf86004803603810190610cf391906146b6565b612352565b005b348015610d05575f80fd5b50610d0e612687565b604051610d1b9190613c5f565b60405180910390f35b5f610d2e82612699565b80610d3e5750610d3d8261272a565b5b9050919050565b610d4d6127a3565b6103e8816bffffffffffffffffffffffff161115610d97576040517ff4df6ae500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610da1828261282a565b5050565b610dad6127a3565b806015819055507f7d5708edce49f05b4fbd148c62280e2e3f00f52ee87d446be344dde5ef52c16581604051610de39190613ee5565b60405180910390a150565b606060068054610dfd90614754565b80601f0160208091040260200160405190810160405280929190818152602001828054610e2990614754565b8015610e745780601f10610e4b57610100808354040283529160200191610e74565b820191905f5260205f20905b815481529060010190602001808311610e5757829003601f168201915b5050505050905090565b5f610e88826129c5565b610e9d57610e9c63cf4700e460e01b612a69565b5b600a5f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610ee181612a71565b610efd57610eed612a77565b15610efc57610efb81612a8c565b5b5b601b60019054906101000a900460ff1615610f44576040517fdb89e3f400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f4e8383612acb565b505050565b60175481565b601b60019054906101000a900460ff1681565b610f746127a3565b80600e819055507f71c423c192a95ad66c8ed5c75de07fe1ff3f21bb0e7269aaf562a65ac2ca74f181604051610faa9190613ee5565b60405180910390a150565b5f610fbe612adb565b600554600454030390507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610ff1612ae3565b14610ffe57600c54810190505b90565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461105b5761103e33612a71565b61105a5761104a612a77565b156110595761105833612a8c565b5b5b5b611066848484612b0a565b50505050565b5f805f60035f8681526020019081526020015f2090505f815f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f825f0160149054906101000a90046bffffffffffffffffffffffff1690505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111405760025f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16915060025f0160149054906101000a90046bffffffffffffffffffffffff1690505b5f611149612db6565b6bffffffffffffffffffffffff16826bffffffffffffffffffffffff168861117191906147b1565b61117b919061481f565b9050828195509550505050509250929050565b6111966127a3565b61119e612dbf565b6111a6611939565b73ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f193505050501580156111e8573d5f803e3d5ffd5b506111f1612e03565b565b6111fb6127a3565b80600d60016101000a81548160ff0219169083151502179055507fcf04cda239951ec56377dd6c7248e3beb68b1dda9dcabd00f35db6382369571a816040516112449190613c5f565b60405180910390a150565b60135481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146112af5761129233612a71565b6112ae5761129e612a77565b156112ad576112ac33612a8c565b5b5b5b6112ba848484612e0c565b50505050565b60195481565b6112ce6127a3565b5f73ffffffffffffffffffffffffffffffffffffffff16601b60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611355576040517fe048e71000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80601b60026101000a81548160ff02191690831515021790555050565b61137a6127a3565b611382612dbf565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113e7576040517fe6c4247b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f6018541415801561140c575060185481611400610fb5565b61140a919061484f565b115b15611443576040517f8a164f6300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61144d8282612e2b565b611455612e03565b5050565b60125481565b6114676127a3565b8181601c9182611478929190614a29565b505050565b6114856127a3565b6103e8816bffffffffffffffffffffffff1611156114cf576040517ff4df6ae500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114da838383612fa1565b505050565b60145481565b6010602052805f5260405f205f915090505481565b600d5f9054906101000a900460ff1681565b5f61151682613150565b9050919050565b6115256127a3565b61152d612dbf565b8051825114611568576040517ffc4c603600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f5b8251811015611704575f82828151811061158757611586614af6565b5b6020026020010151036115c6576040517f2c5211c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168382815181106115f0576115ef614af6565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1603611645576040517fe6c4247b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60185414158015611684575060185482828151811061166857611667614af6565b5b6020026020010151611678610fb5565b611682919061484f565b115b156116bb576040517f8a164f6300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116f98382815181106116d1576116d0614af6565b5b60200260200101518383815181106116ec576116eb614af6565b5b6020026020010151612e2b565b80600101905061156a565b5061170d612e03565b5050565b600d60019054906101000a900460ff1681565b61172c6127a3565b80600d5f6101000a81548160ff0219169083151502179055507fc9a764d36358b99bfce5661b88b5fbf6e8e4a986c3715cd0d539445dce1ebba6816040516117749190613c5f565b60405180910390a150565b6117876127a3565b806018819055507f7810bd47de260c3e9ee10061cf438099dd12256c79485f12f94dbccc981e806c816040516117bd9190613ee5565b60405180910390a150565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361180d5761180c638f4eb60460e01b612a69565b5b67ffffffffffffffff60095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b6118646127a3565b61186d5f613260565b565b6118776127a3565b61187f612dbf565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118e4576040517fe6c4247b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015611927573d5f803e3d5ffd5b50611930612e03565b50565b601a5481565b5f60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606007805461197090614754565b80601f016020809104026020016040519081016040528092919081815260200182805461199c90614754565b80156119e75780601f106119be576101008083540402835291602001916119e7565b820191905f5260205f20905b8154815290600101906020018083116119ca57829003601f168201915b5050505050905090565b6011602052805f5260405f205f915090505481565b611a0e6127a3565b80600f819055507ff41d9e5bb36b4ade7bdf008c7f40a9d0b9f0494ef7f8c29fc3625b7ca8bd058581604051611a449190613ee5565b60405180910390a150565b81611a5981612a71565b611a7557611a65612a77565b15611a7457611a7381612a8c565b5b5b601b60019054906101000a900460ff1615611abc576040517fdb89e3f400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ac68383613323565b505050565b611ad36127a3565b5f601b60016101000a81548160ff021916908315150217905550565b611af76127a3565b80601b60036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601b60029054906101000a900460ff1681565b611b566127a3565b80601b5f6101000a81548160ff02191690831515021790555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611bcc57611baf33612a71565b611bcb57611bbb612a77565b15611bca57611bc933612a8c565b5b5b5b611bd885858585613429565b5050505050565b6060611bea826129c5565b611c20576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f611c2961347a565b90505f815103611c475760405180602001604052805f815250611c72565b80611c518461350a565b604051602001611c62929190614ba7565b6040516020818303038152906040525b915050919050565b611c82612dbf565b600d60019054906101000a900460ff16611cc8576040517fc75933e700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f33604051602001611cda9190614c1a565b604051602081830303815290604052805190602001209050611d3f8383808060200260200160405190810160405280939291908181526020018383602002808284375f81840152601f19601f8201169050808301925050505050505060175483613559565b611d75576040517fb05e92fa00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f601a5414158015611d885750601a5484115b15611dbf576040517fadc57a4c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60195414158015611e6257506019548460115f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205460105f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611e56919061484f565b611e60919061484f565b115b15611e99576040517ff560625a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60145414158015611eb9575060155484601454611eb7919061484f565b115b15611ef0576040517fafd7297400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60185414158015611f15575060185484611f09610fb5565b611f13919061484f565b115b15611f4c576040517f8a164f6300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83600f54611f5a91906147b1565b3414611f92576040517f327c6a5600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8360115f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611fde919061484f565b925050819055508360145f828254611ff6919061484f565b925050819055506120073385612e2b565b50612010612e03565b505050565b61201d6127a3565b806013819055507fa4a8615bd719d87baaae8fb35a0b60a901d35720fcb9f0814ac1baca0369a1ef816040516120539190613ee5565b60405180910390a150565b601c805461206b90614754565b80601f016020809104026020016040519081016040528092919081815260200182805461209790614754565b80156120e25780601f106120b9576101008083540402835291602001916120e2565b820191905f5260205f20905b8154815290600101906020018083116120c557829003601f168201915b505050505081565b60155481565b6120f86127a3565b80601a819055507f5485a6eae8393fc8d80eba8ec4b6c6b2000a37a77ccff6d470d64ac3213176b58160405161212e9190613ee5565b60405180910390a150565b60165481565b6121476127a3565b806019819055507f97e4f91a4b7e108aff6d29a03d7b9f94705ad90ed51b377784a1943ea32257e78160405161217d9190613ee5565b60405180910390a150565b6121906127a3565b806016819055507f86b88155be746f192b9657522b4d2c95f502f9920559081bfd33ed2113206c30816040516121c69190613ebd565b60405180910390a150565b5f600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b601b60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61228d6127a3565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036122fd575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016122f49190613e4e565b60405180910390fd5b61230681613260565b50565b6123116127a3565b806017819055507f9ad14eb11302dfe30e39db2ef04220b7d5ac90958125c3927744bb7d92e5ac10816040516123479190613ebd565b60405180910390a150565b61235a612dbf565b600d5f9054906101000a900460ff1661239f576040517fc75933e700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f33826040516020016123b3929190614c54565b6040516020818303038152906040528051906020012090506124188484808060200260200160405190810160405280939291908181526020018383602002808284375f81840152601f19601f8201169050808301925050505050505060165483613559565b61244e576040517fb05e92fa00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81851115612488576040517ff560625a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818560105f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546124d2919061484f565b111561250a576040517ff560625a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f6012541415801561252a575060135485601254612528919061484f565b115b15612561576040517fafd7297400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f6018541415801561258657506018548561257a610fb5565b612584919061484f565b115b156125bd576040517f8a164f6300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b84600e546125cb91906147b1565b3414612603576040517f327c6a5600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8460105f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461264f919061484f565b925050819055508460125f828254612667919061484f565b925050819055506126783386612e2b565b50612681612e03565b50505050565b601b5f9054906101000a900460ff1681565b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806126f357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806127235750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b5f7f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061279c575061279b8261356f565b5b9050919050565b6127ab6135d8565b73ffffffffffffffffffffffffffffffffffffffff166127c9611939565b73ffffffffffffffffffffffffffffffffffffffff1614612828576127ec6135d8565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161281f9190613e4e565b60405180910390fd5b565b5f612833612db6565b6bffffffffffffffffffffffff16905080826bffffffffffffffffffffffff1611156128985781816040517f6f483d0900000000000000000000000000000000000000000000000000000000815260040161288f929190614caf565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612908575f6040517fb6d9900a0000000000000000000000000000000000000000000000000000000081526004016128ff9190613e4e565b60405180910390fd5b60405180604001604052808473ffffffffffffffffffffffffffffffffffffffff168152602001836bffffffffffffffffffffffff1681525060025f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151815f0160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550905050505050565b5f816129cf612adb565b11612a63576129dc612ae3565b821115612a04576129fd60085f8481526020019081526020015f20546135df565b9050612a64565b600454821015612a62575f5b5f60085f8581526020019081526020015f205491508103612a3c5782612a3590614cd6565b9250612a10565b5f7c01000000000000000000000000000000000000000000000000000000008216149150505b5b5b919050565b805f5260045ffd5b5f919050565b5f601b5f9054906101000a900460ff16905090565b69c61711340011223344555f5230601a5280603a525f80604460166daaeb6d7670e522a718067333cd4e5afa612ac4573d5f803e3d5ffd5b5f603a5250565b612ad78282600161361f565b5050565b5f6001905090565b5f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff905090565b5f612b1482613150565b905073ffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff161693508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612b8957612b8863a114810060e01b612a69565b5b5f80612b9484613749565b91509150612baa8187612ba561376c565b613773565b612bd557612bbf86612bba61376c565b6121d1565b612bd457612bd36359c896be60e01b612a69565b5b5b612be286868660016137b6565b8015612bec575f82555b60095f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060095f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550612cb485612c908888876138c4565b7c0200000000000000000000000000000000000000000000000000000000176138eb565b60085f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603612d31575f6001850190505f60085f8381526020019081526020015f205403612d2f576004548114612d2e578360085f8381526020019081526020015f20819055505b5b505b5f73ffffffffffffffffffffffffffffffffffffffff8673ffffffffffffffffffffffffffffffffffffffff161690508481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a45f8103612da057612d9f63ea553b3460e01b612a69565b5b612dad8787876001613915565b50505050505050565b5f612710905090565b60025f5403612dfa576040517f3ee5aeb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60025f81905550565b60015f81905550565b612e2683838360405180602001604052805f815250611b72565b505050565b5f60045490505f8203612e4957612e4863b562e8dd60e01b612a69565b5b612e555f8483856137b6565b612e7383612e645f865f6138c4565b612e6d8561391b565b176138eb565b60085f8381526020019081526020015f2081905550600160406001901b17820260095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505f73ffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff161690505f8103612f2457612f23632e07630060e01b612a69565b5b5f83830190505f839050612f36612ae3565b600183031115612f5157612f506381647e3a60e01b612a69565b5b5b80835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4818160010191508103612f525781600481905550505050612f9c5f848385613915565b505050565b5f612faa612db6565b6bffffffffffffffffffffffff16905080826bffffffffffffffffffffffff161115613011578382826040517fdfd1fc1b00000000000000000000000000000000000000000000000000000000815260040161300893929190614cfd565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361308357835f6040517f969f085200000000000000000000000000000000000000000000000000000000815260040161307a929190614d32565b60405180910390fd5b60405180604001604052808473ffffffffffffffffffffffffffffffffffffffff168152602001836bffffffffffffffffffffffff1681525060035f8681526020019081526020015f205f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151815f0160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff16021790555090505050505050565b5f8161315a612adb565b1161324a5760085f8381526020019081526020015f2054905061317b612ae3565b8211156131a05761318b816135df565b61325b5761319f63df2d9b4260e01b612a69565b5b5f81036132225760045482106131c1576131c063df2d9b4260e01b612a69565b5b5b60085f836001900393508381526020019081526020015f205490505f81031561321d575f7c01000000000000000000000000000000000000000000000000000000008216031561325b5761321c63df2d9b4260e01b612a69565b5b6131c2565b5f7c01000000000000000000000000000000000000000000000000000000008216031561325b575b61325a63df2d9b4260e01b612a69565b5b919050565b5f60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600b5f61332f61376c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166133d861376c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161341d9190613c5f565b60405180910390a35050565b613434848484611001565b5f8373ffffffffffffffffffffffffffffffffffffffff163b146134745761345e8484848461392a565b6134735761347263d1a57ed660e01b612a69565b5b5b50505050565b6060601c805461348990614754565b80601f01602080910402602001604051908101604052809291908181526020018280546134b590614754565b80156135005780601f106134d757610100808354040283529160200191613500565b820191905f5260205f20905b8154815290600101906020018083116134e357829003601f168201915b5050505050905090565b606060a060405101806040526020810391505f825281835b60011561354457600184039350600a81066030018453600a8104905080613522575b50828103602084039350808452505050919050565b5f826135658584613a54565b1490509392505050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f33905090565b5f7c0100000000000000000000000000000000000000000000000000000000821673ffffffffffffffffffffffffffffffffffffffff8316119050919050565b5f6136298361150c565b905081801561366b57508073ffffffffffffffffffffffffffffffffffffffff1661365261376c565b73ffffffffffffffffffffffffffffffffffffffff1614155b15613697576136818161367c61376c565b6121d1565b6136965761369563cfb3b94260e01b612a69565b5b5b83600a5f8581526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550828473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a450505050565b5f805f600a5f8581526020019081526020015f2090508092508254915050915091565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b601b60019054906101000a900460ff1680156137fe57505f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561383657505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b1561386d576040517fdb89e3f400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61387633613aa2565b1561388c5761388784848484613b68565b6138be565b6040517f4c80d8be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b5f8060e883901c905060e86138da868684613b6e565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b5f6001821460e11b9050919050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261394f61376c565b8786866040518563ffffffff1660e01b81526004016139719493929190614dab565b6020604051808303815f875af19250505080156139ac57506040513d601f19601f820116820180604052508101906139a99190614e09565b60015b613a01573d805f81146139da576040519150601f19603f3d011682016040523d82523d5f602084013e6139df565b606091505b505f8151036139f9576139f863d1a57ed660e01b612a69565b5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b5f808290505f5b8451811015613a9757613a8882868381518110613a7b57613a7a614af6565b5b6020026020010151613b76565b91508080600101915050613a5b565b508091505092915050565b5f601b60029054906101000a900460ff1615613b5e575f601b60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663e18bc08a846040518263ffffffff1660e01b8152600401613b179190613e4e565b602060405180830381865afa158015613b32573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613b569190614e48565b915050613b63565b600190505b919050565b50505050565b5f9392505050565b5f818310613b8d57613b888284613ba0565b613b98565b613b978383613ba0565b5b905092915050565b5f825f528160205260405f20905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613bf981613bc5565b8114613c03575f80fd5b50565b5f81359050613c1481613bf0565b92915050565b5f60208284031215613c2f57613c2e613bbd565b5b5f613c3c84828501613c06565b91505092915050565b5f8115159050919050565b613c5981613c45565b82525050565b5f602082019050613c725f830184613c50565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f613ca182613c78565b9050919050565b613cb181613c97565b8114613cbb575f80fd5b50565b5f81359050613ccc81613ca8565b92915050565b5f6bffffffffffffffffffffffff82169050919050565b613cf281613cd2565b8114613cfc575f80fd5b50565b5f81359050613d0d81613ce9565b92915050565b5f8060408385031215613d2957613d28613bbd565b5b5f613d3685828601613cbe565b9250506020613d4785828601613cff565b9150509250929050565b5f819050919050565b613d6381613d51565b8114613d6d575f80fd5b50565b5f81359050613d7e81613d5a565b92915050565b5f60208284031215613d9957613d98613bbd565b5b5f613da684828501613d70565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f613df182613daf565b613dfb8185613db9565b9350613e0b818560208601613dc9565b613e1481613dd7565b840191505092915050565b5f6020820190508181035f830152613e378184613de7565b905092915050565b613e4881613c97565b82525050565b5f602082019050613e615f830184613e3f565b92915050565b5f8060408385031215613e7d57613e7c613bbd565b5b5f613e8a85828601613cbe565b9250506020613e9b85828601613d70565b9150509250929050565b5f819050919050565b613eb781613ea5565b82525050565b5f602082019050613ed05f830184613eae565b92915050565b613edf81613d51565b82525050565b5f602082019050613ef85f830184613ed6565b92915050565b5f805f60608486031215613f1557613f14613bbd565b5b5f613f2286828701613cbe565b9350506020613f3386828701613cbe565b9250506040613f4486828701613d70565b9150509250925092565b5f8060408385031215613f6457613f63613bbd565b5b5f613f7185828601613d70565b9250506020613f8285828601613d70565b9150509250929050565b5f604082019050613f9f5f830185613e3f565b613fac6020830184613ed6565b9392505050565b613fbc81613c45565b8114613fc6575f80fd5b50565b5f81359050613fd781613fb3565b92915050565b5f60208284031215613ff257613ff1613bbd565b5b5f613fff84828501613fc9565b91505092915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261402957614028614008565b5b8235905067ffffffffffffffff8111156140465761404561400c565b5b60208301915083600182028301111561406257614061614010565b5b9250929050565b5f806020838503121561407f5761407e613bbd565b5b5f83013567ffffffffffffffff81111561409c5761409b613bc1565b5b6140a885828601614014565b92509250509250929050565b5f805f606084860312156140cb576140ca613bbd565b5b5f6140d886828701613d70565b93505060206140e986828701613cbe565b92505060406140fa86828701613cff565b9150509250925092565b5f6020828403121561411957614118613bbd565b5b5f61412684828501613cbe565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61416582613dd7565b810181811067ffffffffffffffff821117156141845761418361412f565b5b80604052505050565b5f614196613bb4565b90506141a2828261415c565b919050565b5f67ffffffffffffffff8211156141c1576141c061412f565b5b602082029050602081019050919050565b5f6141e46141df846141a7565b61418d565b9050808382526020820190506020840283018581111561420757614206614010565b5b835b81811015614230578061421c8882613cbe565b845260208401935050602081019050614209565b5050509392505050565b5f82601f83011261424e5761424d614008565b5b813561425e8482602086016141d2565b91505092915050565b5f67ffffffffffffffff8211156142815761428061412f565b5b602082029050602081019050919050565b5f6142a461429f84614267565b61418d565b905080838252602082019050602084028301858111156142c7576142c6614010565b5b835b818110156142f057806142dc8882613d70565b8452602084019350506020810190506142c9565b5050509392505050565b5f82601f83011261430e5761430d614008565b5b813561431e848260208601614292565b91505092915050565b5f806040838503121561433d5761433c613bbd565b5b5f83013567ffffffffffffffff81111561435a57614359613bc1565b5b6143668582860161423a565b925050602083013567ffffffffffffffff81111561438757614386613bc1565b5b614393858286016142fa565b9150509250929050565b5f6143a782613c78565b9050919050565b6143b78161439d565b81146143c1575f80fd5b50565b5f813590506143d2816143ae565b92915050565b5f602082840312156143ed576143ec613bbd565b5b5f6143fa848285016143c4565b91505092915050565b5f806040838503121561441957614418613bbd565b5b5f61442685828601613cbe565b925050602061443785828601613fc9565b9150509250929050565b5f80fd5b5f67ffffffffffffffff82111561445f5761445e61412f565b5b61446882613dd7565b9050602081019050919050565b828183375f83830152505050565b5f61449561449084614445565b61418d565b9050828152602081018484840111156144b1576144b0614441565b5b6144bc848285614475565b509392505050565b5f82601f8301126144d8576144d7614008565b5b81356144e8848260208601614483565b91505092915050565b5f805f806080858703121561450957614508613bbd565b5b5f61451687828801613cbe565b945050602061452787828801613cbe565b935050604061453887828801613d70565b925050606085013567ffffffffffffffff81111561455957614558613bc1565b5b614565878288016144c4565b91505092959194509250565b5f8083601f84011261458657614585614008565b5b8235905067ffffffffffffffff8111156145a3576145a261400c565b5b6020830191508360208202830111156145bf576145be614010565b5b9250929050565b5f805f604084860312156145dd576145dc613bbd565b5b5f6145ea86828701613d70565b935050602084013567ffffffffffffffff81111561460b5761460a613bc1565b5b61461786828701614571565b92509250509250925092565b61462c81613ea5565b8114614636575f80fd5b50565b5f8135905061464781614623565b92915050565b5f6020828403121561466257614661613bbd565b5b5f61466f84828501614639565b91505092915050565b5f806040838503121561468e5761468d613bbd565b5b5f61469b85828601613cbe565b92505060206146ac85828601613cbe565b9150509250929050565b5f805f80606085870312156146ce576146cd613bbd565b5b5f6146db87828801613d70565b945050602085013567ffffffffffffffff8111156146fc576146fb613bc1565b5b61470887828801614571565b9350935050604061471b87828801613d70565b91505092959194509250565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061476b57607f821691505b60208210810361477e5761477d614727565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6147bb82613d51565b91506147c683613d51565b92508282026147d481613d51565b915082820484148315176147eb576147ea614784565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61482982613d51565b915061483483613d51565b925082614844576148436147f2565b5b828204905092915050565b5f61485982613d51565b915061486483613d51565b925082820190508082111561487c5761487b614784565b5b92915050565b5f82905092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026148e87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826148ad565b6148f286836148ad565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61492d61492861492384613d51565b61490a565b613d51565b9050919050565b5f819050919050565b61494683614913565b61495a61495282614934565b8484546148b9565b825550505050565b5f90565b61496e614962565b61497981848461493d565b505050565b5b8181101561499c576149915f82614966565b60018101905061497f565b5050565b601f8211156149e1576149b28161488c565b6149bb8461489e565b810160208510156149ca578190505b6149de6149d68561489e565b83018261497e565b50505b505050565b5f82821c905092915050565b5f614a015f19846008026149e6565b1980831691505092915050565b5f614a1983836149f2565b9150826002028217905092915050565b614a338383614882565b67ffffffffffffffff811115614a4c57614a4b61412f565b5b614a568254614754565b614a618282856149a0565b5f601f831160018114614a8e575f8415614a7c578287013590505b614a868582614a0e565b865550614aed565b601f198416614a9c8661488c565b5f5b82811015614ac357848901358255600182019150602085019450602081019050614a9e565b86831015614ae05784890135614adc601f8916826149f2565b8355505b6001600288020188555050505b50505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81905092915050565b5f614b3782613daf565b614b418185614b23565b9350614b51818560208601613dc9565b80840191505092915050565b7f2f617065636861696e2f000000000000000000000000000000000000000000005f82015250565b5f614b91600a83614b23565b9150614b9c82614b5d565b600a82019050919050565b5f614bb28285614b2d565b9150614bbd82614b85565b9150614bc98284614b2d565b91508190509392505050565b5f8160601b9050919050565b5f614beb82614bd5565b9050919050565b5f614bfc82614be1565b9050919050565b614c14614c0f82613c97565b614bf2565b82525050565b5f614c258284614c03565b60148201915081905092915050565b5f819050919050565b614c4e614c4982613d51565b614c34565b82525050565b5f614c5f8285614c03565b601482019150614c6f8284614c3d565b6020820191508190509392505050565b5f614c99614c94614c8f84613cd2565b61490a565b613d51565b9050919050565b614ca981614c7f565b82525050565b5f604082019050614cc25f830185614ca0565b614ccf6020830184613ed6565b9392505050565b5f614ce082613d51565b91505f8203614cf257614cf1614784565b5b600182039050919050565b5f606082019050614d105f830186613ed6565b614d1d6020830185614ca0565b614d2a6040830184613ed6565b949350505050565b5f604082019050614d455f830185613ed6565b614d526020830184613e3f565b9392505050565b5f81519050919050565b5f82825260208201905092915050565b5f614d7d82614d59565b614d878185614d63565b9350614d97818560208601613dc9565b614da081613dd7565b840191505092915050565b5f608082019050614dbe5f830187613e3f565b614dcb6020830186613e3f565b614dd86040830185613ed6565b8181036060830152614dea8184614d73565b905095945050505050565b5f81519050614e0381613bf0565b92915050565b5f60208284031215614e1e57614e1d613bbd565b5b5f614e2b84828501614df5565b91505092915050565b5f81519050614e4281613fb3565b92915050565b5f60208284031215614e5d57614e5c613bbd565b5b5f614e6a84828501614e34565b9150509291505056fea26469706673582212200c0eab4887fa140c3bf80652c42f8398f30fa03245c249eebf790819a32c96c164736f6c634300081a003368747470733a2f2f67656e657369732d6d657461732e6d696e746966792e78797a

Deployed Bytecode

0x60806040526004361061038b575f3560e01c80636f8b44b0116101db578063c87b56dd11610101578063e268e4d31161009f578063f2fde38b1161006e578063f2fde38b14610c8e578063f35602ba14610cb6578063f755c54414610cde578063fb796e6c14610cfa5761038b565b8063e268e4d314610bd8578063e62f89eb14610c00578063e985e9c514610c28578063ed9aab5114610c645761038b565b8063cfc86f7b116100db578063cfc86f7b14610b32578063d16bb39014610b5c578063d93d93a214610b86578063e25ad7e614610bae5761038b565b8063c87b56dd14610ab2578063c88b5fd314610aee578063c9bb881014610b0a5761038b565b80639a3dff2311610179578063ab7b499311610148578063ab7b499314610a1c578063abd017ea14610a44578063b7c0b8e814610a6e578063b88d4fde14610a965761038b565b80639a3dff231461097a5780639d46199a146109b6578063a22cb465146109de578063a70138c114610a065761038b565b806372b0d90c116101b557806372b0d90c146108d457806386b1ebd5146108fc5780638da5cb5b1461092657806395d89b41146109505761038b565b80636f8b44b01461085a57806370a0823114610882578063715018a6146108be5761038b565b806340b0960a116102c05780635944c7531161025e5780636352211e1161022d5780636352211e146107a457806365216a41146107e057806365c16038146108085780636a87bdcd146108325761038b565b80635944c753146106ec578063595d2213146107145780635dd0f75c1461073e578063631588d81461077a5761038b565b806346fff98d1161029a57806346fff98d1461064a578063484b973c1461067257806355a16c241461069a57806355f804b3146106c45761038b565b806340b0960a146105da57806342842e0e14610604578063453c2310146106205761038b565b806312b365101161032d57806323b872dd1161030757806323b872dd146105435780632a55205a1461055f5780633ccfd60b1461059c5780633e5c7a3f146105b25761038b565b806312b36510146104c7578063177319cc146104f157806318160ddd146105195761038b565b806306fdde031161036957806306fdde031461041b578063081812fc14610445578063095ea7b3146104815780630d08055b1461049d5761038b565b806301ffc9a71461038f57806304634d8d146103cb578063059b3d59146103f3575b5f80fd5b34801561039a575f80fd5b506103b560048036038101906103b09190613c1a565b610d24565b6040516103c29190613c5f565b60405180910390f35b3480156103d6575f80fd5b506103f160048036038101906103ec9190613d13565b610d45565b005b3480156103fe575f80fd5b5061041960048036038101906104149190613d84565b610da5565b005b348015610426575f80fd5b5061042f610dee565b60405161043c9190613e1f565b60405180910390f35b348015610450575f80fd5b5061046b60048036038101906104669190613d84565b610e7e565b6040516104789190613e4e565b60405180910390f35b61049b60048036038101906104969190613e67565b610ed7565b005b3480156104a8575f80fd5b506104b1610f53565b6040516104be9190613ebd565b60405180910390f35b3480156104d2575f80fd5b506104db610f59565b6040516104e89190613c5f565b60405180910390f35b3480156104fc575f80fd5b5061051760048036038101906105129190613d84565b610f6c565b005b348015610524575f80fd5b5061052d610fb5565b60405161053a9190613ee5565b60405180910390f35b61055d60048036038101906105589190613efe565b611001565b005b34801561056a575f80fd5b5061058560048036038101906105809190613f4e565b61106c565b604051610593929190613f8c565b60405180910390f35b3480156105a7575f80fd5b506105b061118e565b005b3480156105bd575f80fd5b506105d860048036038101906105d39190613fdd565b6111f3565b005b3480156105e5575f80fd5b506105ee61124f565b6040516105fb9190613ee5565b60405180910390f35b61061e60048036038101906106199190613efe565b611255565b005b34801561062b575f80fd5b506106346112c0565b6040516106419190613ee5565b60405180910390f35b348015610655575f80fd5b50610670600480360381019061066b9190613fdd565b6112c6565b005b34801561067d575f80fd5b5061069860048036038101906106939190613e67565b611372565b005b3480156106a5575f80fd5b506106ae611459565b6040516106bb9190613ee5565b60405180910390f35b3480156106cf575f80fd5b506106ea60048036038101906106e59190614069565b61145f565b005b3480156106f7575f80fd5b50610712600480360381019061070d91906140b4565b61147d565b005b34801561071f575f80fd5b506107286114df565b6040516107359190613ee5565b60405180910390f35b348015610749575f80fd5b50610764600480360381019061075f9190614104565b6114e5565b6040516107719190613ee5565b60405180910390f35b348015610785575f80fd5b5061078e6114fa565b60405161079b9190613c5f565b60405180910390f35b3480156107af575f80fd5b506107ca60048036038101906107c59190613d84565b61150c565b6040516107d79190613e4e565b60405180910390f35b3480156107eb575f80fd5b5061080660048036038101906108019190614327565b61151d565b005b348015610813575f80fd5b5061081c611711565b6040516108299190613c5f565b60405180910390f35b34801561083d575f80fd5b5061085860048036038101906108539190613fdd565b611724565b005b348015610865575f80fd5b50610880600480360381019061087b9190613d84565b61177f565b005b34801561088d575f80fd5b506108a860048036038101906108a39190614104565b6117c8565b6040516108b59190613ee5565b60405180910390f35b3480156108c9575f80fd5b506108d261185c565b005b3480156108df575f80fd5b506108fa60048036038101906108f591906143d8565b61186f565b005b348015610907575f80fd5b50610910611933565b60405161091d9190613ee5565b60405180910390f35b348015610931575f80fd5b5061093a611939565b6040516109479190613e4e565b60405180910390f35b34801561095b575f80fd5b50610964611961565b6040516109719190613e1f565b60405180910390f35b348015610985575f80fd5b506109a0600480360381019061099b9190614104565b6119f1565b6040516109ad9190613ee5565b60405180910390f35b3480156109c1575f80fd5b506109dc60048036038101906109d79190613d84565b611a06565b005b3480156109e9575f80fd5b50610a0460048036038101906109ff9190614403565b611a4f565b005b348015610a11575f80fd5b50610a1a611acb565b005b348015610a27575f80fd5b50610a426004803603810190610a3d9190614104565b611aef565b005b348015610a4f575f80fd5b50610a58611b3b565b604051610a659190613c5f565b60405180910390f35b348015610a79575f80fd5b50610a946004803603810190610a8f9190613fdd565b611b4e565b005b610ab06004803603810190610aab91906144f1565b611b72565b005b348015610abd575f80fd5b50610ad86004803603810190610ad39190613d84565b611bdf565b604051610ae59190613e1f565b60405180910390f35b610b086004803603810190610b0391906145c6565b611c7a565b005b348015610b15575f80fd5b50610b306004803603810190610b2b9190613d84565b612015565b005b348015610b3d575f80fd5b50610b4661205e565b604051610b539190613e1f565b60405180910390f35b348015610b67575f80fd5b50610b706120ea565b604051610b7d9190613ee5565b60405180910390f35b348015610b91575f80fd5b50610bac6004803603810190610ba79190613d84565b6120f0565b005b348015610bb9575f80fd5b50610bc2612139565b604051610bcf9190613ebd565b60405180910390f35b348015610be3575f80fd5b50610bfe6004803603810190610bf99190613d84565b61213f565b005b348015610c0b575f80fd5b50610c266004803603810190610c21919061464d565b612188565b005b348015610c33575f80fd5b50610c4e6004803603810190610c499190614678565b6121d1565b604051610c5b9190613c5f565b60405180910390f35b348015610c6f575f80fd5b50610c7861225f565b604051610c859190613e4e565b60405180910390f35b348015610c99575f80fd5b50610cb46004803603810190610caf9190614104565b612285565b005b348015610cc1575f80fd5b50610cdc6004803603810190610cd7919061464d565b612309565b005b610cf86004803603810190610cf391906146b6565b612352565b005b348015610d05575f80fd5b50610d0e612687565b604051610d1b9190613c5f565b60405180910390f35b5f610d2e82612699565b80610d3e5750610d3d8261272a565b5b9050919050565b610d4d6127a3565b6103e8816bffffffffffffffffffffffff161115610d97576040517ff4df6ae500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610da1828261282a565b5050565b610dad6127a3565b806015819055507f7d5708edce49f05b4fbd148c62280e2e3f00f52ee87d446be344dde5ef52c16581604051610de39190613ee5565b60405180910390a150565b606060068054610dfd90614754565b80601f0160208091040260200160405190810160405280929190818152602001828054610e2990614754565b8015610e745780601f10610e4b57610100808354040283529160200191610e74565b820191905f5260205f20905b815481529060010190602001808311610e5757829003601f168201915b5050505050905090565b5f610e88826129c5565b610e9d57610e9c63cf4700e460e01b612a69565b5b600a5f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610ee181612a71565b610efd57610eed612a77565b15610efc57610efb81612a8c565b5b5b601b60019054906101000a900460ff1615610f44576040517fdb89e3f400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f4e8383612acb565b505050565b60175481565b601b60019054906101000a900460ff1681565b610f746127a3565b80600e819055507f71c423c192a95ad66c8ed5c75de07fe1ff3f21bb0e7269aaf562a65ac2ca74f181604051610faa9190613ee5565b60405180910390a150565b5f610fbe612adb565b600554600454030390507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610ff1612ae3565b14610ffe57600c54810190505b90565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461105b5761103e33612a71565b61105a5761104a612a77565b156110595761105833612a8c565b5b5b5b611066848484612b0a565b50505050565b5f805f60035f8681526020019081526020015f2090505f815f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f825f0160149054906101000a90046bffffffffffffffffffffffff1690505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111405760025f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16915060025f0160149054906101000a90046bffffffffffffffffffffffff1690505b5f611149612db6565b6bffffffffffffffffffffffff16826bffffffffffffffffffffffff168861117191906147b1565b61117b919061481f565b9050828195509550505050509250929050565b6111966127a3565b61119e612dbf565b6111a6611939565b73ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f193505050501580156111e8573d5f803e3d5ffd5b506111f1612e03565b565b6111fb6127a3565b80600d60016101000a81548160ff0219169083151502179055507fcf04cda239951ec56377dd6c7248e3beb68b1dda9dcabd00f35db6382369571a816040516112449190613c5f565b60405180910390a150565b60135481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146112af5761129233612a71565b6112ae5761129e612a77565b156112ad576112ac33612a8c565b5b5b5b6112ba848484612e0c565b50505050565b60195481565b6112ce6127a3565b5f73ffffffffffffffffffffffffffffffffffffffff16601b60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611355576040517fe048e71000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80601b60026101000a81548160ff02191690831515021790555050565b61137a6127a3565b611382612dbf565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113e7576040517fe6c4247b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f6018541415801561140c575060185481611400610fb5565b61140a919061484f565b115b15611443576040517f8a164f6300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61144d8282612e2b565b611455612e03565b5050565b60125481565b6114676127a3565b8181601c9182611478929190614a29565b505050565b6114856127a3565b6103e8816bffffffffffffffffffffffff1611156114cf576040517ff4df6ae500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114da838383612fa1565b505050565b60145481565b6010602052805f5260405f205f915090505481565b600d5f9054906101000a900460ff1681565b5f61151682613150565b9050919050565b6115256127a3565b61152d612dbf565b8051825114611568576040517ffc4c603600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f5b8251811015611704575f82828151811061158757611586614af6565b5b6020026020010151036115c6576040517f2c5211c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168382815181106115f0576115ef614af6565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1603611645576040517fe6c4247b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60185414158015611684575060185482828151811061166857611667614af6565b5b6020026020010151611678610fb5565b611682919061484f565b115b156116bb576040517f8a164f6300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116f98382815181106116d1576116d0614af6565b5b60200260200101518383815181106116ec576116eb614af6565b5b6020026020010151612e2b565b80600101905061156a565b5061170d612e03565b5050565b600d60019054906101000a900460ff1681565b61172c6127a3565b80600d5f6101000a81548160ff0219169083151502179055507fc9a764d36358b99bfce5661b88b5fbf6e8e4a986c3715cd0d539445dce1ebba6816040516117749190613c5f565b60405180910390a150565b6117876127a3565b806018819055507f7810bd47de260c3e9ee10061cf438099dd12256c79485f12f94dbccc981e806c816040516117bd9190613ee5565b60405180910390a150565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361180d5761180c638f4eb60460e01b612a69565b5b67ffffffffffffffff60095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b6118646127a3565b61186d5f613260565b565b6118776127a3565b61187f612dbf565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118e4576040517fe6c4247b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015611927573d5f803e3d5ffd5b50611930612e03565b50565b601a5481565b5f60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606007805461197090614754565b80601f016020809104026020016040519081016040528092919081815260200182805461199c90614754565b80156119e75780601f106119be576101008083540402835291602001916119e7565b820191905f5260205f20905b8154815290600101906020018083116119ca57829003601f168201915b5050505050905090565b6011602052805f5260405f205f915090505481565b611a0e6127a3565b80600f819055507ff41d9e5bb36b4ade7bdf008c7f40a9d0b9f0494ef7f8c29fc3625b7ca8bd058581604051611a449190613ee5565b60405180910390a150565b81611a5981612a71565b611a7557611a65612a77565b15611a7457611a7381612a8c565b5b5b601b60019054906101000a900460ff1615611abc576040517fdb89e3f400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ac68383613323565b505050565b611ad36127a3565b5f601b60016101000a81548160ff021916908315150217905550565b611af76127a3565b80601b60036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601b60029054906101000a900460ff1681565b611b566127a3565b80601b5f6101000a81548160ff02191690831515021790555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611bcc57611baf33612a71565b611bcb57611bbb612a77565b15611bca57611bc933612a8c565b5b5b5b611bd885858585613429565b5050505050565b6060611bea826129c5565b611c20576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f611c2961347a565b90505f815103611c475760405180602001604052805f815250611c72565b80611c518461350a565b604051602001611c62929190614ba7565b6040516020818303038152906040525b915050919050565b611c82612dbf565b600d60019054906101000a900460ff16611cc8576040517fc75933e700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f33604051602001611cda9190614c1a565b604051602081830303815290604052805190602001209050611d3f8383808060200260200160405190810160405280939291908181526020018383602002808284375f81840152601f19601f8201169050808301925050505050505060175483613559565b611d75576040517fb05e92fa00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f601a5414158015611d885750601a5484115b15611dbf576040517fadc57a4c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60195414158015611e6257506019548460115f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205460105f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611e56919061484f565b611e60919061484f565b115b15611e99576040517ff560625a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60145414158015611eb9575060155484601454611eb7919061484f565b115b15611ef0576040517fafd7297400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60185414158015611f15575060185484611f09610fb5565b611f13919061484f565b115b15611f4c576040517f8a164f6300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83600f54611f5a91906147b1565b3414611f92576040517f327c6a5600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8360115f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611fde919061484f565b925050819055508360145f828254611ff6919061484f565b925050819055506120073385612e2b565b50612010612e03565b505050565b61201d6127a3565b806013819055507fa4a8615bd719d87baaae8fb35a0b60a901d35720fcb9f0814ac1baca0369a1ef816040516120539190613ee5565b60405180910390a150565b601c805461206b90614754565b80601f016020809104026020016040519081016040528092919081815260200182805461209790614754565b80156120e25780601f106120b9576101008083540402835291602001916120e2565b820191905f5260205f20905b8154815290600101906020018083116120c557829003601f168201915b505050505081565b60155481565b6120f86127a3565b80601a819055507f5485a6eae8393fc8d80eba8ec4b6c6b2000a37a77ccff6d470d64ac3213176b58160405161212e9190613ee5565b60405180910390a150565b60165481565b6121476127a3565b806019819055507f97e4f91a4b7e108aff6d29a03d7b9f94705ad90ed51b377784a1943ea32257e78160405161217d9190613ee5565b60405180910390a150565b6121906127a3565b806016819055507f86b88155be746f192b9657522b4d2c95f502f9920559081bfd33ed2113206c30816040516121c69190613ebd565b60405180910390a150565b5f600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b601b60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61228d6127a3565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036122fd575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016122f49190613e4e565b60405180910390fd5b61230681613260565b50565b6123116127a3565b806017819055507f9ad14eb11302dfe30e39db2ef04220b7d5ac90958125c3927744bb7d92e5ac10816040516123479190613ebd565b60405180910390a150565b61235a612dbf565b600d5f9054906101000a900460ff1661239f576040517fc75933e700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f33826040516020016123b3929190614c54565b6040516020818303038152906040528051906020012090506124188484808060200260200160405190810160405280939291908181526020018383602002808284375f81840152601f19601f8201169050808301925050505050505060165483613559565b61244e576040517fb05e92fa00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81851115612488576040517ff560625a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818560105f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546124d2919061484f565b111561250a576040517ff560625a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f6012541415801561252a575060135485601254612528919061484f565b115b15612561576040517fafd7297400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f6018541415801561258657506018548561257a610fb5565b612584919061484f565b115b156125bd576040517f8a164f6300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b84600e546125cb91906147b1565b3414612603576040517f327c6a5600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8460105f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461264f919061484f565b925050819055508460125f828254612667919061484f565b925050819055506126783386612e2b565b50612681612e03565b50505050565b601b5f9054906101000a900460ff1681565b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806126f357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806127235750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b5f7f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061279c575061279b8261356f565b5b9050919050565b6127ab6135d8565b73ffffffffffffffffffffffffffffffffffffffff166127c9611939565b73ffffffffffffffffffffffffffffffffffffffff1614612828576127ec6135d8565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161281f9190613e4e565b60405180910390fd5b565b5f612833612db6565b6bffffffffffffffffffffffff16905080826bffffffffffffffffffffffff1611156128985781816040517f6f483d0900000000000000000000000000000000000000000000000000000000815260040161288f929190614caf565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612908575f6040517fb6d9900a0000000000000000000000000000000000000000000000000000000081526004016128ff9190613e4e565b60405180910390fd5b60405180604001604052808473ffffffffffffffffffffffffffffffffffffffff168152602001836bffffffffffffffffffffffff1681525060025f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151815f0160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550905050505050565b5f816129cf612adb565b11612a63576129dc612ae3565b821115612a04576129fd60085f8481526020019081526020015f20546135df565b9050612a64565b600454821015612a62575f5b5f60085f8581526020019081526020015f205491508103612a3c5782612a3590614cd6565b9250612a10565b5f7c01000000000000000000000000000000000000000000000000000000008216149150505b5b5b919050565b805f5260045ffd5b5f919050565b5f601b5f9054906101000a900460ff16905090565b69c61711340011223344555f5230601a5280603a525f80604460166daaeb6d7670e522a718067333cd4e5afa612ac4573d5f803e3d5ffd5b5f603a5250565b612ad78282600161361f565b5050565b5f6001905090565b5f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff905090565b5f612b1482613150565b905073ffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff161693508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612b8957612b8863a114810060e01b612a69565b5b5f80612b9484613749565b91509150612baa8187612ba561376c565b613773565b612bd557612bbf86612bba61376c565b6121d1565b612bd457612bd36359c896be60e01b612a69565b5b5b612be286868660016137b6565b8015612bec575f82555b60095f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060095f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550612cb485612c908888876138c4565b7c0200000000000000000000000000000000000000000000000000000000176138eb565b60085f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603612d31575f6001850190505f60085f8381526020019081526020015f205403612d2f576004548114612d2e578360085f8381526020019081526020015f20819055505b5b505b5f73ffffffffffffffffffffffffffffffffffffffff8673ffffffffffffffffffffffffffffffffffffffff161690508481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a45f8103612da057612d9f63ea553b3460e01b612a69565b5b612dad8787876001613915565b50505050505050565b5f612710905090565b60025f5403612dfa576040517f3ee5aeb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60025f81905550565b60015f81905550565b612e2683838360405180602001604052805f815250611b72565b505050565b5f60045490505f8203612e4957612e4863b562e8dd60e01b612a69565b5b612e555f8483856137b6565b612e7383612e645f865f6138c4565b612e6d8561391b565b176138eb565b60085f8381526020019081526020015f2081905550600160406001901b17820260095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505f73ffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff161690505f8103612f2457612f23632e07630060e01b612a69565b5b5f83830190505f839050612f36612ae3565b600183031115612f5157612f506381647e3a60e01b612a69565b5b5b80835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4818160010191508103612f525781600481905550505050612f9c5f848385613915565b505050565b5f612faa612db6565b6bffffffffffffffffffffffff16905080826bffffffffffffffffffffffff161115613011578382826040517fdfd1fc1b00000000000000000000000000000000000000000000000000000000815260040161300893929190614cfd565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361308357835f6040517f969f085200000000000000000000000000000000000000000000000000000000815260040161307a929190614d32565b60405180910390fd5b60405180604001604052808473ffffffffffffffffffffffffffffffffffffffff168152602001836bffffffffffffffffffffffff1681525060035f8681526020019081526020015f205f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151815f0160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff16021790555090505050505050565b5f8161315a612adb565b1161324a5760085f8381526020019081526020015f2054905061317b612ae3565b8211156131a05761318b816135df565b61325b5761319f63df2d9b4260e01b612a69565b5b5f81036132225760045482106131c1576131c063df2d9b4260e01b612a69565b5b5b60085f836001900393508381526020019081526020015f205490505f81031561321d575f7c01000000000000000000000000000000000000000000000000000000008216031561325b5761321c63df2d9b4260e01b612a69565b5b6131c2565b5f7c01000000000000000000000000000000000000000000000000000000008216031561325b575b61325a63df2d9b4260e01b612a69565b5b919050565b5f60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600b5f61332f61376c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166133d861376c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161341d9190613c5f565b60405180910390a35050565b613434848484611001565b5f8373ffffffffffffffffffffffffffffffffffffffff163b146134745761345e8484848461392a565b6134735761347263d1a57ed660e01b612a69565b5b5b50505050565b6060601c805461348990614754565b80601f01602080910402602001604051908101604052809291908181526020018280546134b590614754565b80156135005780601f106134d757610100808354040283529160200191613500565b820191905f5260205f20905b8154815290600101906020018083116134e357829003601f168201915b5050505050905090565b606060a060405101806040526020810391505f825281835b60011561354457600184039350600a81066030018453600a8104905080613522575b50828103602084039350808452505050919050565b5f826135658584613a54565b1490509392505050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f33905090565b5f7c0100000000000000000000000000000000000000000000000000000000821673ffffffffffffffffffffffffffffffffffffffff8316119050919050565b5f6136298361150c565b905081801561366b57508073ffffffffffffffffffffffffffffffffffffffff1661365261376c565b73ffffffffffffffffffffffffffffffffffffffff1614155b15613697576136818161367c61376c565b6121d1565b6136965761369563cfb3b94260e01b612a69565b5b5b83600a5f8581526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550828473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a450505050565b5f805f600a5f8581526020019081526020015f2090508092508254915050915091565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b601b60019054906101000a900460ff1680156137fe57505f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561383657505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b1561386d576040517fdb89e3f400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61387633613aa2565b1561388c5761388784848484613b68565b6138be565b6040517f4c80d8be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b5f8060e883901c905060e86138da868684613b6e565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b5f6001821460e11b9050919050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261394f61376c565b8786866040518563ffffffff1660e01b81526004016139719493929190614dab565b6020604051808303815f875af19250505080156139ac57506040513d601f19601f820116820180604052508101906139a99190614e09565b60015b613a01573d805f81146139da576040519150601f19603f3d011682016040523d82523d5f602084013e6139df565b606091505b505f8151036139f9576139f863d1a57ed660e01b612a69565b5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b5f808290505f5b8451811015613a9757613a8882868381518110613a7b57613a7a614af6565b5b6020026020010151613b76565b91508080600101915050613a5b565b508091505092915050565b5f601b60029054906101000a900460ff1615613b5e575f601b60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663e18bc08a846040518263ffffffff1660e01b8152600401613b179190613e4e565b602060405180830381865afa158015613b32573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613b569190614e48565b915050613b63565b600190505b919050565b50505050565b5f9392505050565b5f818310613b8d57613b888284613ba0565b613b98565b613b978383613ba0565b5b905092915050565b5f825f528160205260405f20905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613bf981613bc5565b8114613c03575f80fd5b50565b5f81359050613c1481613bf0565b92915050565b5f60208284031215613c2f57613c2e613bbd565b5b5f613c3c84828501613c06565b91505092915050565b5f8115159050919050565b613c5981613c45565b82525050565b5f602082019050613c725f830184613c50565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f613ca182613c78565b9050919050565b613cb181613c97565b8114613cbb575f80fd5b50565b5f81359050613ccc81613ca8565b92915050565b5f6bffffffffffffffffffffffff82169050919050565b613cf281613cd2565b8114613cfc575f80fd5b50565b5f81359050613d0d81613ce9565b92915050565b5f8060408385031215613d2957613d28613bbd565b5b5f613d3685828601613cbe565b9250506020613d4785828601613cff565b9150509250929050565b5f819050919050565b613d6381613d51565b8114613d6d575f80fd5b50565b5f81359050613d7e81613d5a565b92915050565b5f60208284031215613d9957613d98613bbd565b5b5f613da684828501613d70565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f613df182613daf565b613dfb8185613db9565b9350613e0b818560208601613dc9565b613e1481613dd7565b840191505092915050565b5f6020820190508181035f830152613e378184613de7565b905092915050565b613e4881613c97565b82525050565b5f602082019050613e615f830184613e3f565b92915050565b5f8060408385031215613e7d57613e7c613bbd565b5b5f613e8a85828601613cbe565b9250506020613e9b85828601613d70565b9150509250929050565b5f819050919050565b613eb781613ea5565b82525050565b5f602082019050613ed05f830184613eae565b92915050565b613edf81613d51565b82525050565b5f602082019050613ef85f830184613ed6565b92915050565b5f805f60608486031215613f1557613f14613bbd565b5b5f613f2286828701613cbe565b9350506020613f3386828701613cbe565b9250506040613f4486828701613d70565b9150509250925092565b5f8060408385031215613f6457613f63613bbd565b5b5f613f7185828601613d70565b9250506020613f8285828601613d70565b9150509250929050565b5f604082019050613f9f5f830185613e3f565b613fac6020830184613ed6565b9392505050565b613fbc81613c45565b8114613fc6575f80fd5b50565b5f81359050613fd781613fb3565b92915050565b5f60208284031215613ff257613ff1613bbd565b5b5f613fff84828501613fc9565b91505092915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261402957614028614008565b5b8235905067ffffffffffffffff8111156140465761404561400c565b5b60208301915083600182028301111561406257614061614010565b5b9250929050565b5f806020838503121561407f5761407e613bbd565b5b5f83013567ffffffffffffffff81111561409c5761409b613bc1565b5b6140a885828601614014565b92509250509250929050565b5f805f606084860312156140cb576140ca613bbd565b5b5f6140d886828701613d70565b93505060206140e986828701613cbe565b92505060406140fa86828701613cff565b9150509250925092565b5f6020828403121561411957614118613bbd565b5b5f61412684828501613cbe565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61416582613dd7565b810181811067ffffffffffffffff821117156141845761418361412f565b5b80604052505050565b5f614196613bb4565b90506141a2828261415c565b919050565b5f67ffffffffffffffff8211156141c1576141c061412f565b5b602082029050602081019050919050565b5f6141e46141df846141a7565b61418d565b9050808382526020820190506020840283018581111561420757614206614010565b5b835b81811015614230578061421c8882613cbe565b845260208401935050602081019050614209565b5050509392505050565b5f82601f83011261424e5761424d614008565b5b813561425e8482602086016141d2565b91505092915050565b5f67ffffffffffffffff8211156142815761428061412f565b5b602082029050602081019050919050565b5f6142a461429f84614267565b61418d565b905080838252602082019050602084028301858111156142c7576142c6614010565b5b835b818110156142f057806142dc8882613d70565b8452602084019350506020810190506142c9565b5050509392505050565b5f82601f83011261430e5761430d614008565b5b813561431e848260208601614292565b91505092915050565b5f806040838503121561433d5761433c613bbd565b5b5f83013567ffffffffffffffff81111561435a57614359613bc1565b5b6143668582860161423a565b925050602083013567ffffffffffffffff81111561438757614386613bc1565b5b614393858286016142fa565b9150509250929050565b5f6143a782613c78565b9050919050565b6143b78161439d565b81146143c1575f80fd5b50565b5f813590506143d2816143ae565b92915050565b5f602082840312156143ed576143ec613bbd565b5b5f6143fa848285016143c4565b91505092915050565b5f806040838503121561441957614418613bbd565b5b5f61442685828601613cbe565b925050602061443785828601613fc9565b9150509250929050565b5f80fd5b5f67ffffffffffffffff82111561445f5761445e61412f565b5b61446882613dd7565b9050602081019050919050565b828183375f83830152505050565b5f61449561449084614445565b61418d565b9050828152602081018484840111156144b1576144b0614441565b5b6144bc848285614475565b509392505050565b5f82601f8301126144d8576144d7614008565b5b81356144e8848260208601614483565b91505092915050565b5f805f806080858703121561450957614508613bbd565b5b5f61451687828801613cbe565b945050602061452787828801613cbe565b935050604061453887828801613d70565b925050606085013567ffffffffffffffff81111561455957614558613bc1565b5b614565878288016144c4565b91505092959194509250565b5f8083601f84011261458657614585614008565b5b8235905067ffffffffffffffff8111156145a3576145a261400c565b5b6020830191508360208202830111156145bf576145be614010565b5b9250929050565b5f805f604084860312156145dd576145dc613bbd565b5b5f6145ea86828701613d70565b935050602084013567ffffffffffffffff81111561460b5761460a613bc1565b5b61461786828701614571565b92509250509250925092565b61462c81613ea5565b8114614636575f80fd5b50565b5f8135905061464781614623565b92915050565b5f6020828403121561466257614661613bbd565b5b5f61466f84828501614639565b91505092915050565b5f806040838503121561468e5761468d613bbd565b5b5f61469b85828601613cbe565b92505060206146ac85828601613cbe565b9150509250929050565b5f805f80606085870312156146ce576146cd613bbd565b5b5f6146db87828801613d70565b945050602085013567ffffffffffffffff8111156146fc576146fb613bc1565b5b61470887828801614571565b9350935050604061471b87828801613d70565b91505092959194509250565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061476b57607f821691505b60208210810361477e5761477d614727565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6147bb82613d51565b91506147c683613d51565b92508282026147d481613d51565b915082820484148315176147eb576147ea614784565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61482982613d51565b915061483483613d51565b925082614844576148436147f2565b5b828204905092915050565b5f61485982613d51565b915061486483613d51565b925082820190508082111561487c5761487b614784565b5b92915050565b5f82905092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026148e87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826148ad565b6148f286836148ad565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61492d61492861492384613d51565b61490a565b613d51565b9050919050565b5f819050919050565b61494683614913565b61495a61495282614934565b8484546148b9565b825550505050565b5f90565b61496e614962565b61497981848461493d565b505050565b5b8181101561499c576149915f82614966565b60018101905061497f565b5050565b601f8211156149e1576149b28161488c565b6149bb8461489e565b810160208510156149ca578190505b6149de6149d68561489e565b83018261497e565b50505b505050565b5f82821c905092915050565b5f614a015f19846008026149e6565b1980831691505092915050565b5f614a1983836149f2565b9150826002028217905092915050565b614a338383614882565b67ffffffffffffffff811115614a4c57614a4b61412f565b5b614a568254614754565b614a618282856149a0565b5f601f831160018114614a8e575f8415614a7c578287013590505b614a868582614a0e565b865550614aed565b601f198416614a9c8661488c565b5f5b82811015614ac357848901358255600182019150602085019450602081019050614a9e565b86831015614ae05784890135614adc601f8916826149f2565b8355505b6001600288020188555050505b50505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81905092915050565b5f614b3782613daf565b614b418185614b23565b9350614b51818560208601613dc9565b80840191505092915050565b7f2f617065636861696e2f000000000000000000000000000000000000000000005f82015250565b5f614b91600a83614b23565b9150614b9c82614b5d565b600a82019050919050565b5f614bb28285614b2d565b9150614bbd82614b85565b9150614bc98284614b2d565b91508190509392505050565b5f8160601b9050919050565b5f614beb82614bd5565b9050919050565b5f614bfc82614be1565b9050919050565b614c14614c0f82613c97565b614bf2565b82525050565b5f614c258284614c03565b60148201915081905092915050565b5f819050919050565b614c4e614c4982613d51565b614c34565b82525050565b5f614c5f8285614c03565b601482019150614c6f8284614c3d565b6020820191508190509392505050565b5f614c99614c94614c8f84613cd2565b61490a565b613d51565b9050919050565b614ca981614c7f565b82525050565b5f604082019050614cc25f830185614ca0565b614ccf6020830184613ed6565b9392505050565b5f614ce082613d51565b91505f8203614cf257614cf1614784565b5b600182039050919050565b5f606082019050614d105f830186613ed6565b614d1d6020830185614ca0565b614d2a6040830184613ed6565b949350505050565b5f604082019050614d455f830185613ed6565b614d526020830184613e3f565b9392505050565b5f81519050919050565b5f82825260208201905092915050565b5f614d7d82614d59565b614d878185614d63565b9350614d97818560208601613dc9565b614da081613dd7565b840191505092915050565b5f608082019050614dbe5f830187613e3f565b614dcb6020830186613e3f565b614dd86040830185613ed6565b8181036060830152614dea8184614d73565b905095945050505050565b5f81519050614e0381613bf0565b92915050565b5f60208284031215614e1e57614e1d613bbd565b5b5f614e2b84828501614df5565b91505092915050565b5f81519050614e4281613fb3565b92915050565b5f60208284031215614e5d57614e5c613bbd565b5b5f614e6a84828501614e34565b9150509291505056fea26469706673582212200c0eab4887fa140c3bf80652c42f8398f30fa03245c249eebf790819a32c96c164736f6c634300081a0033

Deployed Bytecode Sourcemap

111290:15244:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124602:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;125228:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;119510:188;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21490:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28730:227;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;121715:304;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;112023:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;112232:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;118898:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16692:573;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;122027:222;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70312:673;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;120326:117;;;;;;;;;;;;;:::i;:::-;;118278:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;111821:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;122257:230;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;112105:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;124050:196;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;117677:363;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;111785:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;125975:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;125465:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;111869:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;111636:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;111448:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22892:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;116811:826;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;111479:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;118084:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;119729:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18416:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64152:103;;;;;;;;;;;;;:::i;:::-;;120487:247;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;112143:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63477:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21666:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;111695:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;119084:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;121401:306;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;120770:88;;;;;;;;;;;;;:::i;:::-;;124254:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;112279:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;122758:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;122495:255;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;126203:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;114923:1635;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;119279:188;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;112981:65;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;111905:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;120120:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;111983:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;119916:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;118470:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29688:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;112314:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64410:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;118688:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;113330:1564;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;112182:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;124602:404;124698:4;124918:38;124944:11;124918:25;:38::i;:::-;:80;;;;124960:38;124986:11;124960:25;:38::i;:::-;124918:80;124911:87;;124602:404;;;:::o;125228:229::-;63363:13;:11;:13::i;:::-;125341:4:::1;125326:12;:19;;;125322:75;;;125369:16;;;;;;;;;;;;;;125322:75;125407:42;125426:8;125436:12;125407:18;:42::i;:::-;125228:229:::0;;:::o;119510:188::-;63363:13;:11;:13::i;:::-;119618:14:::1;119596:19;:36;;;;119648:42;119675:14;119648:42;;;;;;:::i;:::-;;;;;;;;119510:188:::0;:::o;21490:100::-;21544:13;21577:5;21570:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21490:100;:::o;28730:227::-;28806:7;28831:16;28839:7;28831;:16::i;:::-;28826:73;;28849:50;28857:41;;;28849:7;:50::i;:::-;28826:73;28919:15;:24;28935:7;28919:24;;;;;;;;;;;:30;;;;;;;;;;;;28912:37;;28730:227;;;:::o;121715:304::-;121865:8;79097:29;79117:8;79097:19;:29::i;:::-;79092:122;;79147:27;:25;:27::i;:::-;79143:59;;;79176:26;79193:8;79176:16;:26::i;:::-;79143:59;79092:122;121895:21:::1;;;;;;;;;;;121891:78;;;121940:17;;;;;;;;;;;;;;121891:78;121979:32;121993:8;122003:7;121979:13;:32::i;:::-;121715:304:::0;;;:::o;112023:33::-;;;;:::o;112232:40::-;;;;;;;;;;;;;:::o;118898:152::-;63363:13;:11;:13::i;:::-;118988:8:::1;118972:13;:24;;;;119012:30;119033:8;119012:30;;;;;;:::i;:::-;;;;;;;;118898:152:::0;:::o;16692:573::-;16753:14;17151:15;:13;:15::i;:::-;17136:12;;17120:13;;:28;:46;17111:55;;17206:17;17185;:15;:17::i;:::-;:38;17181:65;;17235:11;;17225:21;;;;17181:65;16692:573;:::o;122027:222::-;122182:4;78740:10;78732:18;;:4;:18;;;78728:184;;78772:31;78792:10;78772:19;:31::i;:::-;78767:134;;78828:27;:25;:27::i;:::-;78824:61;;;78857:28;78874:10;78857:16;:28::i;:::-;78824:61;78767:134;78728:184;122204:37:::1;122223:4;122229:2;122233:7;122204:18;:37::i;:::-;122027:222:::0;;;;:::o;70312:673::-;70423:16;70441:14;70468:32;70503:17;:26;70521:7;70503:26;;;;;;;;;;;70468:61;;70540:23;70566:12;:21;;;;;;;;;;;;70540:47;;70598:22;70623:12;:28;;;;;;;;;;;;70598:53;;70695:1;70668:29;;:15;:29;;;70664:176;;70732:19;:28;;;;;;;;;;;;70714:46;;70793:19;:35;;;;;;;;;;;;70775:53;;70664:176;70852:21;70908:17;:15;:17::i;:::-;70876:49;;70889:15;70877:27;;:9;:27;;;;:::i;:::-;70876:49;;;;:::i;:::-;70852:73;;70946:15;70963:13;70938:39;;;;;;;;70312:673;;;;;:::o;120326:117::-;63363:13;:11;:13::i;:::-;109805:21:::1;:19;:21::i;:::-;120395:7:::2;:5;:7::i;:::-;120387:25;;:48;120413:21;120387:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;109849:20:::1;:18;:20::i;:::-;120326:117::o:0;118278:150::-;63363:13;:11;:13::i;:::-;118365:8:::1;118350:12;;:23;;;;;;;;;;;;;;;;;;118389:31;118411:8;118389:31;;;;;;:::i;:::-;;;;;;;;118278:150:::0;:::o;111821:41::-;;;;:::o;122257:230::-;122416:4;78740:10;78732:18;;:4;:18;;;78728:184;;78772:31;78792:10;78772:19;:31::i;:::-;78767:134;;78828:27;:25;:27::i;:::-;78824:61;;;78857:28;78874:10;78857:16;:28::i;:::-;78824:61;78767:134;78728:184;122438:41:::1;122461:4;122467:2;122471:7;122438:22;:41::i;:::-;122257:230:::0;;;;:::o;112105:31::-;;;;:::o;124050:196::-;63363:13;:11;:13::i;:::-;124164:1:::1;124137:29;;:15;;;;;;;;;;;:29;;::::0;124133:58:::1;;124175:16;;;;;;;;;;;;;;124133:58;124221:17;124202:16;;:36;;;;;;;;;;;;;;;;;;124050:196:::0;:::o;117677:363::-;63363:13;:11;:13::i;:::-;109805:21:::1;:19;:21::i;:::-;117824:1:::2;117810:16;;:2;:16;;::::0;117806:72:::2;;117850:16;;;;;;;;;;;;;;117806:72;117907:1;117894:9;;:14;;:54;;;;;117939:9;;117928:8;117912:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:36;117894:54;117890:113;;;117972:19;;;;;;;;;;;;;;117890:113;118013:19;118019:2;118023:8;118013:5;:19::i;:::-;109849:20:::1;:18;:20::i;:::-;117677:363:::0;;:::o;111785:29::-;;;;:::o;125975:106::-;63363:13;:11;:13::i;:::-;126066:7:::1;;126050:13;:23;;;;;;;:::i;:::-;;125975:106:::0;;:::o;125465:287::-;63363:13;:11;:13::i;:::-;125629:4:::1;125614:12;:19;;;125610:75;;;125657:16;;;;;;;;;;;;;;125610:75;125695:49;125712:7;125721:8;125731:12;125695:16;:49::i;:::-;125465:287:::0;;;:::o;111869:29::-;;;;:::o;111636:52::-;;;;;;;;;;;;;;;;;:::o;111448:24::-;;;;;;;;;;;;;:::o;22892:152::-;22964:7;23007:27;23026:7;23007:18;:27::i;:::-;22984:52;;22892:152;;;:::o;116811:826::-;63363:13;:11;:13::i;:::-;109805:21:::1;:19;:21::i;:::-;116984:7:::2;:14;116968:5;:12;:30;116964:92;;117022:22;;;;;;;;;;;;;;116964:92;117071:9;117066:564;117086:5;:12;117082:1;:16;117066:564;;;117175:1;117161:7;117169:1;117161:10;;;;;;;;:::i;:::-;;;;;;;;:15:::0;117157:78:::2;;117204:15;;;;;;;;;;;;;;117157:78;117314:1;117294:22;;:5;117300:1;117294:8;;;;;;;;:::i;:::-;;;;;;;;:22;;::::0;117290:86:::2;;117344:16;;;;;;;;;;;;;;117290:86;117409:1;117396:9;;:14;;:56;;;;;117443:9;;117430:7;117438:1;117430:10;;;;;;;;:::i;:::-;;;;;;;;117414:13;:11;:13::i;:::-;:26;;;;:::i;:::-;:38;117396:56;117392:123;;;117480:19;;;;;;;;;;;;;;117392:123;117529:27;117535:5;117541:1;117535:8;;;;;;;;:::i;:::-;;;;;;;;117545:7;117553:1;117545:10;;;;;;;;:::i;:::-;;;;;;;;117529:5;:27::i;:::-;117600:3;;;;;117066:564;;;;109849:20:::1;:18;:20::i;:::-;116811:826:::0;;:::o;111479:24::-;;;;;;;;;;;;;:::o;118084:150::-;63363:13;:11;:13::i;:::-;118171:8:::1;118156:12;;:23;;;;;;;;;;;;;;;;;;118195:31;118217:8;118195:31;;;;;;:::i;:::-;;;;;;;;118084:150:::0;:::o;119729:152::-;63363:13;:11;:13::i;:::-;119815:12:::1;119803:9;:24;;;;119843:30;119860:12;119843:30;;;;;;:::i;:::-;;;;;;;;119729:152:::0;:::o;18416:242::-;18488:7;18529:1;18512:19;;:5;:19;;;18508:69;;18533:44;18541:35;;;18533:7;:44::i;:::-;18508:69;11176:13;18595:18;:25;18614:5;18595:25;;;;;;;;;;;;;;;;:55;18588:62;;18416:242;;;:::o;64152:103::-;63363:13;:11;:13::i;:::-;64217:30:::1;64244:1;64217:18;:30::i;:::-;64152:103::o:0;120487:247::-;63363:13;:11;:13::i;:::-;109805:21:::1;:19;:21::i;:::-;120625:1:::2;120610:17;;:3;:17;;::::0;120606:73:::2;;120651:16;;;;;;;;;;;;;;120606:73;120691:3;:12;;:35;120704:21;120691:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;109849:20:::1;:18;:20::i;:::-;120487:247:::0;:::o;112143:30::-;;;;:::o;63477:87::-;63523:7;63550:6;;;;;;;;;;;63543:13;;63477:87;:::o;21666:104::-;21722:13;21755:7;21748:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21666:104;:::o;111695:52::-;;;;;;;;;;;;;;;;;:::o;119084:152::-;63363:13;:11;:13::i;:::-;119174:8:::1;119158:13;:24;;;;119198:30;119219:8;119198:30;;;;;;:::i;:::-;;;;;;;;119084:152:::0;:::o;121401:306::-;121542:8;79097:29;79117:8;79097:19;:29::i;:::-;79092:122;;79147:27;:25;:27::i;:::-;79143:59;;;79176:26;79193:8;79176:16;:26::i;:::-;79143:59;79092:122;121572:21:::1;;;;;;;;;;;121568:78;;;121617:17;;;;;;;;;;;;;;121568:78;121656:43;121680:8;121690;121656:23;:43::i;:::-;121401:306:::0;;;:::o;120770:88::-;63363:13;:11;:13::i;:::-;120845:5:::1;120821:21;;:29;;;;;;;;;;;;;;;;;;120770:88::o:0;124254:126::-;63363:13;:11;:13::i;:::-;124356:16:::1;124338:15;;:34;;;;;;;;;;;;;;;;;;124254:126:::0;:::o;112279:28::-;;;;;;;;;;;;;:::o;122758:117::-;63363:13;:11;:13::i;:::-;122862:5:::1;122835:24;;:32;;;;;;;;;;;;;;;;;;122758:117:::0;:::o;122495:255::-;122673:4;78740:10;78732:18;;:4;:18;;;78728:184;;78772:31;78792:10;78772:19;:31::i;:::-;78767:134;;78828:27;:25;:27::i;:::-;78824:61;;;78857:28;78874:10;78857:16;:28::i;:::-;78824:61;78767:134;78728:184;122695:47:::1;122718:4;122724:2;122728:7;122737:4;122695:22;:47::i;:::-;122495:255:::0;;;;;:::o;126203:326::-;126268:13;126299:16;126307:7;126299;:16::i;:::-;126294:59;;126324:29;;;;;;;;;;;;;;126294:59;126366:21;126390:10;:8;:10::i;:::-;126366:34;;126443:1;126424:7;126418:21;:26;:101;;;;;;;;;;;;;;;;;126471:7;126494:18;126504:7;126494:9;:18::i;:::-;126454:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;126418:101;126411:108;;;126203:326;;;:::o;114923:1635::-;109805:21;:19;:21::i;:::-;115086:12:::1;;;;;;;;;;;115081:66;;115122:13;;;;;;;;;;;;;;115081:66;115191:12;115233:10;115216:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;115206:39;;;;;;115191:54;;115261:57;115280:11;;115261:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115293:18;;115313:4;115261:18;:57::i;:::-;115256:118;;115342:20;;;;;;;;;;;;;;115256:118;115487:1;115472:11;;:16;;:42;;;;;115503:11;;115492:8;:22;115472:42;115468:103;;;115538:21;;;;;;;;;;;;;;115468:103;115653:1;115637:12;;:17;;:108;;;;;115733:12;;115722:8;115690:17;:29;115708:10;115690:29;;;;;;;;;;;;;;;;115658:17;:29;115676:10;115658:29;;;;;;;;;;;;;;;;:61;;;;:::i;:::-;:72;;;;:::i;:::-;:87;115637:108;115633:170;;;115769:22;;;;;;;;;;;;;;115633:170;115888:1;115870:14;;:19;;:70;;;;;115921:19;;115910:8;115893:14;;:25;;;;:::i;:::-;:47;115870:70;115866:134;;;115964:24;;;;;;;;;;;;;;115866:134;116080:1;116067:9;;:14;;:54;;;;;116112:9;;116101:8;116085:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:36;116067:54;116063:113;;;116145:19;;;;;;;;;;;;;;116063:113;116265:8;116249:13;;:24;;;;:::i;:::-;116235:9;:39;116231:93;;116298:14;;;;;;;;;;;;;;116231:93;116411:8;116378:17;:29;116396:10;116378:29;;;;;;;;;;;;;;;;:41;;;;;;;:::i;:::-;;;;;;;;116482:8;116464:14;;:26;;;;;;;:::i;:::-;;;;;;;;116521:27;116527:10;116539:8;116521:5;:27::i;:::-;115025:1533;109849:20:::0;:18;:20::i;:::-;114923:1635;;;:::o;119279:188::-;63363:13;:11;:13::i;:::-;119387:14:::1;119365:19;:36;;;;119417:42;119444:14;119417:42;;;;;;:::i;:::-;;;;;;;;119279:188:::0;:::o;112981:65::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;111905:41::-;;;;:::o;120120:164::-;63363:13;:11;:13::i;:::-;120212:14:::1;120198:11;:28;;;;120242:34;120261:14;120242:34;;;;;;:::i;:::-;;;;;;;;120120:164:::0;:::o;111983:33::-;;;;:::o;119916:170::-;63363:13;:11;:13::i;:::-;120011:15:::1;119996:12;:30;;;;120042:36;120062:15;120042:36;;;;;;:::i;:::-;;;;;;;;119916:170:::0;:::o;118470:176::-;63363:13;:11;:13::i;:::-;118573:11:::1;118552:18;:32;;;;118600:38;118626:11;118600:38;;;;;;:::i;:::-;;;;;;;;118470:176:::0;:::o;29688:164::-;29785:4;29809:18;:25;29828:5;29809:25;;;;;;;;;;;;;;;:35;29835:8;29809:35;;;;;;;;;;;;;;;;;;;;;;;;;29802:42;;29688:164;;;;:::o;112314:30::-;;;;;;;;;;;;;:::o;64410:220::-;63363:13;:11;:13::i;:::-;64515:1:::1;64495:22;;:8;:22;;::::0;64491:93:::1;;64569:1;64541:31;;;;;;;;;;;:::i;:::-;;;;;;;;64491:93;64594:28;64613:8;64594:18;:28::i;:::-;64410:220:::0;:::o;118688:176::-;63363:13;:11;:13::i;:::-;118791:11:::1;118770:18;:32;;;;118818:38;118844:11;118818:38;;;;;;:::i;:::-;;;;;;;;118688:176:::0;:::o;113330:1564::-;109805:21;:19;:21::i;:::-;113512:12:::1;;;;;;;;;;;113507:66;;113548:13;;;;;;;;;;;;;;113507:66;113617:12;113659:10;113671:9;113642:39;;;;;;;;;:::i;:::-;;;;;;;;;;;;;113632:50;;;;;;113617:65;;113698:57;113717:11;;113698:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113730:18;;113750:4;113698:18;:57::i;:::-;113693:118;;113779:20;;;;;;;;;;;;;;113693:118;113885:9;113874:8;:20;113870:82;;;113918:22;;;;;;;;;;;;;;113870:82;114072:9;114061:8;114029:17;:29;114047:10;114029:29;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;:52;114025:114;;;114105:22;;;;;;;;;;;;;;114025:114;114224:1;114206:14;;:19;;:70;;;;;114257:19;;114246:8;114229:14;;:25;;;;:::i;:::-;:47;114206:70;114202:134;;;114300:24;;;;;;;;;;;;;;114202:134;114416:1;114403:9;;:14;;:54;;;;;114448:9;;114437:8;114421:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:36;114403:54;114399:113;;;114481:19;;;;;;;;;;;;;;114399:113;114601:8;114585:13;;:24;;;;:::i;:::-;114571:9;:39;114567:93;;114634:14;;;;;;;;;;;;;;114567:93;114747:8;114714:17;:29;114732:10;114714:29;;;;;;;;;;;;;;;;:41;;;;;;;:::i;:::-;;;;;;;;114818:8;114800:14;;:26;;;;;;;:::i;:::-;;;;;;;;114857:27;114863:10;114875:8;114857:5;:27::i;:::-;113451:1443;109849:20:::0;:18;:20::i;:::-;113330:1564;;;;:::o;112182:43::-;;;;;;;;;;;;;:::o;20588:639::-;20673:4;21012:10;20997:25;;:11;:25;;;;:102;;;;21089:10;21074:25;;:11;:25;;;;20997:102;:179;;;;21166:10;21151:25;;:11;:25;;;;20997:179;20977:199;;20588:639;;;:::o;70042:215::-;70144:4;70183:26;70168:41;;;:11;:41;;;;:81;;;;70213:36;70237:11;70213:23;:36::i;:::-;70168:81;70161:88;;70042:215;;;:::o;63642:166::-;63713:12;:10;:12::i;:::-;63702:23;;:7;:5;:7::i;:::-;:23;;;63698:103;;63776:12;:10;:12::i;:::-;63749:40;;;;;;;;;;;:::i;:::-;;;;;;;;63698:103;63642:166::o;71635:518::-;71730:19;71752:17;:15;:17::i;:::-;71730:39;;;;71799:11;71784:12;:26;;;71780:176;;;71918:12;71932:11;71889:55;;;;;;;;;;;;:::i;:::-;;;;;;;;71780:176;71990:1;71970:22;;:8;:22;;;71966:110;;72061:1;72016:48;;;;;;;;;;;:::i;:::-;;;;;;;;71966:110;72110:35;;;;;;;;72122:8;72110:35;;;;;;72132:12;72110:35;;;;;72088:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71719:434;71635:518;;:::o;30110:475::-;30175:11;30222:7;30203:15;:13;:15::i;:::-;:26;30199:379;;30260:17;:15;:17::i;:::-;30250:7;:27;30246:90;;;30286:50;30309:17;:26;30327:7;30309:26;;;;;;;;;;;;30286:22;:50::i;:::-;30279:57;;;;30246:90;30367:13;;30357:7;:23;30353:214;;;30401:14;30434:60;30482:1;30451:17;:26;30469:7;30451:26;;;;;;;;;;;;30442:35;;;30441:42;30434:60;;30485:9;;;;:::i;:::-;;;30434:60;;;30550:1;11952:8;30522:6;:24;:29;30513:38;;30382:185;30353:214;30199:379;30110:475;;;;:::o;60619:165::-;60720:13;60714:4;60707:27;60761:4;60755;60748:18;81146:106;81215:4;81146:106;;;:::o;122883:125::-;122952:4;122976:24;;;;;;;;;;;122969:31;;122883:125;:::o;79330:1359::-;79723:22;79717:4;79710:36;79816:9;79810:4;79803:23;79891:8;79885:4;79878:22;80068:4;80062;80056;80050;80023:25;80016:5;80005:68;79995:274;;80189:16;80183:4;80177;80162:44;80237:16;80231:4;80224:30;79995:274;80669:1;80663:4;80656:15;79330:1359;:::o;28447:124::-;28536:27;28545:2;28549:7;28558:4;28536:8;:27::i;:::-;28447:124;;:::o;121081:93::-;121138:7;121165:1;121158:8;;121081:93;:::o;16190:110::-;16248:7;16275:17;16268:24;;16190:110;:::o;33002:3523::-;33144:27;33174;33193:7;33174:18;:27::i;:::-;33144:57;;12634:14;33345:4;33329:22;;:41;33306:66;;33430:4;33389:45;;33405:19;33389:45;;;33385:95;;33436:44;33444:35;;;33436:7;:44::i;:::-;33385:95;33494:27;33523:23;33550:35;33577:7;33550:26;:35::i;:::-;33493:92;;;;33685:68;33710:15;33727:4;33733:19;:17;:19::i;:::-;33685:24;:68::i;:::-;33680:189;;33773:43;33790:4;33796:19;:17;:19::i;:::-;33773:16;:43::i;:::-;33768:101;;33818:51;33826:42;;;33818:7;:51::i;:::-;33768:101;33680:189;33882:43;33904:4;33910:2;33914:7;33923:1;33882:21;:43::i;:::-;34018:15;34015:160;;;34158:1;34137:19;34130:30;34015:160;34555:18;:24;34574:4;34555:24;;;;;;;;;;;;;;;;34553:26;;;;;;;;;;;;34624:18;:22;34643:2;34624:22;;;;;;;;;;;;;;;;34622:24;;;;;;;;;;;34946:146;34983:2;35032:45;35047:4;35053:2;35057:19;35032:14;:45::i;:::-;12232:8;35004:73;34946:18;:146::i;:::-;34917:17;:26;34935:7;34917:26;;;;;;;;;;;:175;;;;35263:1;12232:8;35212:19;:47;:52;35208:627;;35285:19;35317:1;35307:7;:11;35285:33;;35474:1;35440:17;:30;35458:11;35440:30;;;;;;;;;;;;:35;35436:384;;35578:13;;35563:11;:28;35559:242;;35758:19;35725:17;:30;35743:11;35725:30;;;;;;;;;;;:52;;;;35559:242;35436:384;35266:569;35208:627;35948:16;12634:14;35983:2;35967:20;;:39;35948:58;;36347:7;36311:8;36277:4;36219:25;36164:1;36107;36084:299;36420:1;36408:8;:13;36404:58;;36423:39;36431:30;;;36423:7;:39::i;:::-;36404:58;36475:42;36496:4;36502:2;36506:7;36515:1;36475:20;:42::i;:::-;33133:3392;;;;33002:3523;;;:::o;71267:97::-;71325:6;71351:5;71344:12;;71267:97;:::o;109885:315::-;109183:1;110014:7;;:18;110010:88;;110056:30;;;;;;;;;;;;;;110010:88;109183:1;110175:7;:17;;;;109885:315::o;110208:212::-;109140:1;110391:7;:21;;;;110208:212::o;36621:193::-;36767:39;36784:4;36790:2;36794:7;36767:39;;;;;;;;;;;;:16;:39::i;:::-;36621:193;;;:::o;41065:2399::-;41138:20;41161:13;;41138:36;;41201:1;41189:8;:13;41185:53;;41204:34;41212:25;;;41204:7;:34::i;:::-;41185:53;41251:61;41281:1;41285:2;41289:12;41303:8;41251:21;:61::i;:::-;41785:139;41822:2;41876:33;41899:1;41903:2;41907:1;41876:14;:33::i;:::-;41843:30;41864:8;41843:20;:30::i;:::-;:66;41785:18;:139::i;:::-;41751:17;:31;41769:12;41751:31;;;;;;;;;;;:173;;;;42211:1;11314:2;42181:1;:26;;42180:32;42168:8;:45;42142:18;:22;42161:2;42142:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;42324:16;12634:14;42359:2;42343:20;;:39;42324:58;;42415:1;42403:8;:13;42399:54;;42418:35;42426:26;;;42418:7;:35::i;:::-;42399:54;42470:11;42499:8;42484:12;:23;42470:37;;42522:15;42540:12;42522:30;;42583:17;:15;:17::i;:::-;42579:1;42573:3;:7;:27;42569:77;;;42602:44;42610:35;;;42602:7;:44::i;:::-;42569:77;42663:676;43082:7;43038:8;42993:1;42927:25;42864:1;42799;42768:358;43334:3;43321:9;;;;;;:16;42663:676;;43371:3;43355:13;:19;;;;41500:1886;;;43396:60;43425:1;43429:2;43433:12;43447:8;43396:20;:60::i;:::-;41127:2337;41065:2399;;:::o;72604:554::-;72714:19;72736:17;:15;:17::i;:::-;72714:39;;;;72783:11;72768:12;:26;;;72764:183;;;72900:7;72909:12;72923:11;72873:62;;;;;;;;;;;;;:::i;:::-;;;;;;;;72764:183;72981:1;72961:22;;:8;:22;;;72957:117;;73042:7;73059:1;73007:55;;;;;;;;;;;;:::i;:::-;;;;;;;;72957:117;73115:35;;;;;;;;73127:8;73115:35;;;;;;73137:12;73115:35;;;;;73086:17;:26;73104:7;73086:26;;;;;;;;;;;:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72703:455;72604:554;;;:::o;24377:2213::-;24444:14;24494:7;24475:15;:13;:15::i;:::-;:26;24471:2054;;24527:17;:26;24545:7;24527:26;;;;;;;;;;;;24518:35;;24584:17;:15;:17::i;:::-;24574:7;:27;24570:183;;;24626:30;24649:6;24626:22;:30::i;:::-;24658:13;24622:49;24690:47;24698:38;;;24690:7;:47::i;:::-;24570:183;24864:1;24854:6;:11;24850:1292;;24901:13;;24890:7;:24;24886:77;;24916:47;24924:38;;;24916:7;:47::i;:::-;24886:77;25520:607;25598:17;:28;25616:9;;;;;;;25598:28;;;;;;;;;;;;25589:37;;25686:1;25676:6;:11;25672:25;25689:8;25672:25;25752:1;11952:8;25724:6;:24;:29;25720:48;25755:13;25720:48;26060:47;26068:38;;;26060:7;:47::i;:::-;25520:607;;;24850:1292;26497:1;11952:8;26469:6;:24;:29;26465:48;26500:13;26465:48;24471:2054;26535:47;26543:38;;;26535:7;:47::i;:::-;24377:2213;;;;:::o;64790:191::-;64864:16;64883:6;;;;;;;;;;;64864:25;;64909:8;64900:6;;:17;;;;;;;;;;;;;;;;;;64964:8;64933:40;;64954:8;64933:40;;;;;;;;;;;;64853:128;64790:191;:::o;29297:234::-;29444:8;29392:18;:39;29411:19;:17;:19::i;:::-;29392:39;;;;;;;;;;;;;;;:49;29432:8;29392:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;29504:8;29468:55;;29483:19;:17;:19::i;:::-;29468:55;;;29514:8;29468:55;;;;;;:::i;:::-;;;;;;;;29297:234;;:::o;37412:416::-;37587:31;37600:4;37606:2;37610:7;37587:12;:31::i;:::-;37651:1;37633:2;:14;;;:19;37629:192;;37672:56;37703:4;37709:2;37713:7;37722:5;37672:30;:56::i;:::-;37667:154;;37749:56;37757:47;;;37749:7;:56::i;:::-;37667:154;37629:192;37412:416;;;;:::o;126089:106::-;126141:13;126174;126167:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126089:106;:::o;58807:1745::-;58872:17;59306:4;59299;59293:11;59289:22;59398:1;59392:4;59385:15;59473:4;59470:1;59466:12;59459:19;;59555:1;59550:3;59543:14;59659:3;59898:5;59880:428;59906:1;59880:428;;;59946:1;59941:3;59937:11;59930:18;;60117:2;60111:4;60107:13;60103:2;60099:22;60094:3;60086:36;60211:2;60205:4;60201:13;60193:21;;60278:4;59880:428;60268:25;59880:428;59884:21;60347:3;60342;60338:13;60462:4;60457:3;60453:14;60446:21;;60527:6;60522:3;60515:19;58911:1634;;;58807:1745;;;:::o;84310:156::-;84401:4;84454;84425:25;84438:5;84445:4;84425:12;:25::i;:::-;:33;84418:40;;84310:156;;;;;:::o;67814:148::-;67890:4;67929:25;67914:40;;;:11;:40;;;;67907:47;;67814:148;;;:::o;61486:98::-;61539:7;61566:10;61559:17;;61486:98;:::o;30681:335::-;30751:11;30981:15;30973:6;30969:28;30950:16;30942:6;30938:29;30935:63;30925:73;;30681:335;;;:::o;52034:474::-;52163:13;52179:16;52187:7;52179;:16::i;:::-;52163:32;;52212:13;:45;;;;;52252:5;52229:28;;:19;:17;:19::i;:::-;:28;;;;52212:45;52208:201;;;52277:44;52294:5;52301:19;:17;:19::i;:::-;52277:16;:44::i;:::-;52272:137;;52342:51;52350:42;;;52342:7;:51::i;:::-;52272:137;52208:201;52454:2;52421:15;:24;52437:7;52421:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;52492:7;52488:2;52472:28;;52481:5;52472:28;;;;;;;;;;;;52152:356;52034:474;;;:::o;31897:485::-;31999:27;32028:23;32069:38;32110:15;:24;32126:7;32110:24;;;;;;;;;;;32069:65;;32287:18;32264:41;;32344:19;32338:26;32319:45;;32249:126;31897:485;;;:::o;58600:105::-;58660:7;58687:10;58680:17;;58600:105;:::o;31125:659::-;31274:11;31439:16;31432:5;31428:28;31419:37;;31599:16;31588:9;31584:32;31571:45;;31749:15;31738:9;31735:30;31727:5;31716:9;31713:20;31710:56;31700:66;;31125:659;;;;;:::o;123231:497::-;123404:21;;;;;;;;;;;:43;;;;;123445:1;123429:18;;:4;:18;;;;123404:43;:63;;;;;123465:1;123451:16;;:2;:16;;;;123404:63;123400:120;;;123491:17;;;;;;;;;;;;;;123400:120;123534:35;123558:10;123534:23;:35::i;:::-;123530:191;;;123586:61;123614:4;123620:2;123624:12;123638:8;123586:27;:61::i;:::-;123530:191;;;123687:22;;;;;;;;;;;;;;123530:191;123231:497;;;;:::o;57909:311::-;58044:7;58064:16;12356:3;58090:19;:41;;58064:68;;12356:3;58158:31;58169:4;58175:2;58179:9;58158:10;:31::i;:::-;58150:40;;:62;;58143:69;;;57909:311;;;;;:::o;27138:450::-;27218:14;27386:16;27379:5;27375:28;27366:37;;27563:5;27549:11;27524:23;27520:41;27517:52;27510:5;27507:63;27497:73;;27138:450;;;;:::o;39314:158::-;;;;;:::o;27690:324::-;27760:14;27993:1;27983:8;27980:15;27954:24;27950:46;27940:56;;27690:324;;;:::o;39912:691::-;40075:4;40121:2;40096:45;;;40142:19;:17;:19::i;:::-;40163:4;40169:7;40178:5;40096:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40092:504;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40396:1;40379:6;:13;:18;40375:115;;40418:56;40426:47;;;40418:7;:56::i;:::-;40375:115;40562:6;40556:13;40547:6;40543:2;40539:15;40532:38;40092:504;40265:54;;;40255:64;;;:6;:64;;;;40248:71;;;39912:691;;;;;;:::o;84877:314::-;84960:7;84980:20;85003:4;84980:27;;85023:9;85018:136;85042:5;:12;85038:1;:16;85018:136;;;85091:51;85119:12;85133:5;85139:1;85133:8;;;;;;;;:::i;:::-;;;;;;;;85091:27;:51::i;:::-;85076:66;;85056:3;;;;;;;85018:136;;;;85171:12;85164:19;;;84877:314;;;;:::o;123736:306::-;123837:4;123863:16;;;;;;;;;;;123859:154;;;123896:18;123927:15;;;;;;;;;;;123896:47;;123965:8;:26;;;123992:8;123965:36;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;123958:43;;;;;123859:154;124030:4;124023:11;;123736:306;;;;:::o;38490:159::-;;;;;:::o;57610:147::-;57747:6;57610:147;;;;;:::o;81814:171::-;81889:7;81920:1;81916;:5;:61;;81952:25;81972:1;81975;81952:19;:25::i;:::-;81916:61;;;81924:25;81944:1;81947;81924:19;:25::i;:::-;81916:61;81909:68;;81814:171;;;;:::o;82110:245::-;82183:13;82262:1;82256:4;82249:15;82291:1;82285:4;82278:15;82332:4;82326;82316:21;82307:30;;82110:245;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:126::-;1555:7;1595:42;1588:5;1584:54;1573:65;;1518:126;;;:::o;1650:96::-;1687:7;1716:24;1734:5;1716:24;:::i;:::-;1705:35;;1650:96;;;:::o;1752:122::-;1825:24;1843:5;1825:24;:::i;:::-;1818:5;1815:35;1805:63;;1864:1;1861;1854:12;1805:63;1752:122;:::o;1880:139::-;1926:5;1964:6;1951:20;1942:29;;1980:33;2007:5;1980:33;:::i;:::-;1880:139;;;;:::o;2025:109::-;2061:7;2101:26;2094:5;2090:38;2079:49;;2025:109;;;:::o;2140:120::-;2212:23;2229:5;2212:23;:::i;:::-;2205:5;2202:34;2192:62;;2250:1;2247;2240:12;2192:62;2140:120;:::o;2266:137::-;2311:5;2349:6;2336:20;2327:29;;2365:32;2391:5;2365:32;:::i;:::-;2266:137;;;;:::o;2409:472::-;2476:6;2484;2533:2;2521:9;2512:7;2508:23;2504:32;2501:119;;;2539:79;;:::i;:::-;2501:119;2659:1;2684:53;2729:7;2720:6;2709:9;2705:22;2684:53;:::i;:::-;2674:63;;2630:117;2786:2;2812:52;2856:7;2847:6;2836:9;2832:22;2812:52;:::i;:::-;2802:62;;2757:117;2409:472;;;;;:::o;2887:77::-;2924:7;2953:5;2942:16;;2887:77;;;:::o;2970:122::-;3043:24;3061:5;3043:24;:::i;:::-;3036:5;3033:35;3023:63;;3082:1;3079;3072:12;3023:63;2970:122;:::o;3098:139::-;3144:5;3182:6;3169:20;3160:29;;3198:33;3225:5;3198:33;:::i;:::-;3098:139;;;;:::o;3243:329::-;3302:6;3351:2;3339:9;3330:7;3326:23;3322:32;3319:119;;;3357:79;;:::i;:::-;3319:119;3477:1;3502:53;3547:7;3538:6;3527:9;3523:22;3502:53;:::i;:::-;3492:63;;3448:117;3243:329;;;;:::o;3578:99::-;3630:6;3664:5;3658:12;3648:22;;3578:99;;;:::o;3683:169::-;3767:11;3801:6;3796:3;3789:19;3841:4;3836:3;3832:14;3817:29;;3683:169;;;;:::o;3858:139::-;3947:6;3942:3;3937;3931:23;3988:1;3979:6;3974:3;3970:16;3963:27;3858:139;;;:::o;4003:102::-;4044:6;4095:2;4091:7;4086:2;4079:5;4075:14;4071:28;4061:38;;4003:102;;;:::o;4111:377::-;4199:3;4227:39;4260:5;4227:39;:::i;:::-;4282:71;4346:6;4341:3;4282:71;:::i;:::-;4275:78;;4362:65;4420:6;4415:3;4408:4;4401:5;4397:16;4362:65;:::i;:::-;4452:29;4474:6;4452:29;:::i;:::-;4447:3;4443:39;4436:46;;4203:285;4111:377;;;;:::o;4494:313::-;4607:4;4645:2;4634:9;4630:18;4622:26;;4694:9;4688:4;4684:20;4680:1;4669:9;4665:17;4658:47;4722:78;4795:4;4786:6;4722:78;:::i;:::-;4714:86;;4494:313;;;;:::o;4813:118::-;4900:24;4918:5;4900:24;:::i;:::-;4895:3;4888:37;4813:118;;:::o;4937:222::-;5030:4;5068:2;5057:9;5053:18;5045:26;;5081:71;5149:1;5138:9;5134:17;5125:6;5081:71;:::i;:::-;4937:222;;;;:::o;5165:474::-;5233:6;5241;5290:2;5278:9;5269:7;5265:23;5261:32;5258:119;;;5296:79;;:::i;:::-;5258:119;5416:1;5441:53;5486:7;5477:6;5466:9;5462:22;5441:53;:::i;:::-;5431:63;;5387:117;5543:2;5569:53;5614:7;5605:6;5594:9;5590:22;5569:53;:::i;:::-;5559:63;;5514:118;5165:474;;;;;:::o;5645:77::-;5682:7;5711:5;5700:16;;5645:77;;;:::o;5728:118::-;5815:24;5833:5;5815:24;:::i;:::-;5810:3;5803:37;5728:118;;:::o;5852:222::-;5945:4;5983:2;5972:9;5968:18;5960:26;;5996:71;6064:1;6053:9;6049:17;6040:6;5996:71;:::i;:::-;5852:222;;;;:::o;6080:118::-;6167:24;6185:5;6167:24;:::i;:::-;6162:3;6155:37;6080:118;;:::o;6204:222::-;6297:4;6335:2;6324:9;6320:18;6312:26;;6348:71;6416:1;6405:9;6401:17;6392:6;6348:71;:::i;:::-;6204:222;;;;:::o;6432:619::-;6509:6;6517;6525;6574:2;6562:9;6553:7;6549:23;6545:32;6542:119;;;6580:79;;:::i;:::-;6542:119;6700:1;6725:53;6770:7;6761:6;6750:9;6746:22;6725:53;:::i;:::-;6715:63;;6671:117;6827:2;6853:53;6898:7;6889:6;6878:9;6874:22;6853:53;:::i;:::-;6843:63;;6798:118;6955:2;6981:53;7026:7;7017:6;7006:9;7002:22;6981:53;:::i;:::-;6971:63;;6926:118;6432:619;;;;;:::o;7057:474::-;7125:6;7133;7182:2;7170:9;7161:7;7157:23;7153:32;7150:119;;;7188:79;;:::i;:::-;7150:119;7308:1;7333:53;7378:7;7369:6;7358:9;7354:22;7333:53;:::i;:::-;7323:63;;7279:117;7435:2;7461:53;7506:7;7497:6;7486:9;7482:22;7461:53;:::i;:::-;7451:63;;7406:118;7057:474;;;;;:::o;7537:332::-;7658:4;7696:2;7685:9;7681:18;7673:26;;7709:71;7777:1;7766:9;7762:17;7753:6;7709:71;:::i;:::-;7790:72;7858:2;7847:9;7843:18;7834:6;7790:72;:::i;:::-;7537:332;;;;;:::o;7875:116::-;7945:21;7960:5;7945:21;:::i;:::-;7938:5;7935:32;7925:60;;7981:1;7978;7971:12;7925:60;7875:116;:::o;7997:133::-;8040:5;8078:6;8065:20;8056:29;;8094:30;8118:5;8094:30;:::i;:::-;7997:133;;;;:::o;8136:323::-;8192:6;8241:2;8229:9;8220:7;8216:23;8212:32;8209:119;;;8247:79;;:::i;:::-;8209:119;8367:1;8392:50;8434:7;8425:6;8414:9;8410:22;8392:50;:::i;:::-;8382:60;;8338:114;8136:323;;;;:::o;8465:117::-;8574:1;8571;8564:12;8588:117;8697:1;8694;8687:12;8711:117;8820:1;8817;8810:12;8848:553;8906:8;8916:6;8966:3;8959:4;8951:6;8947:17;8943:27;8933:122;;8974:79;;:::i;:::-;8933:122;9087:6;9074:20;9064:30;;9117:18;9109:6;9106:30;9103:117;;;9139:79;;:::i;:::-;9103:117;9253:4;9245:6;9241:17;9229:29;;9307:3;9299:4;9291:6;9287:17;9277:8;9273:32;9270:41;9267:128;;;9314:79;;:::i;:::-;9267:128;8848:553;;;;;:::o;9407:529::-;9478:6;9486;9535:2;9523:9;9514:7;9510:23;9506:32;9503:119;;;9541:79;;:::i;:::-;9503:119;9689:1;9678:9;9674:17;9661:31;9719:18;9711:6;9708:30;9705:117;;;9741:79;;:::i;:::-;9705:117;9854:65;9911:7;9902:6;9891:9;9887:22;9854:65;:::i;:::-;9836:83;;;;9632:297;9407:529;;;;;:::o;9942:617::-;10018:6;10026;10034;10083:2;10071:9;10062:7;10058:23;10054:32;10051:119;;;10089:79;;:::i;:::-;10051:119;10209:1;10234:53;10279:7;10270:6;10259:9;10255:22;10234:53;:::i;:::-;10224:63;;10180:117;10336:2;10362:53;10407:7;10398:6;10387:9;10383:22;10362:53;:::i;:::-;10352:63;;10307:118;10464:2;10490:52;10534:7;10525:6;10514:9;10510:22;10490:52;:::i;:::-;10480:62;;10435:117;9942:617;;;;;:::o;10565:329::-;10624:6;10673:2;10661:9;10652:7;10648:23;10644:32;10641:119;;;10679:79;;:::i;:::-;10641:119;10799:1;10824:53;10869:7;10860:6;10849:9;10845:22;10824:53;:::i;:::-;10814:63;;10770:117;10565:329;;;;:::o;10900:180::-;10948:77;10945:1;10938:88;11045:4;11042:1;11035:15;11069:4;11066:1;11059:15;11086:281;11169:27;11191:4;11169:27;:::i;:::-;11161:6;11157:40;11299:6;11287:10;11284:22;11263:18;11251:10;11248:34;11245:62;11242:88;;;11310:18;;:::i;:::-;11242:88;11350:10;11346:2;11339:22;11129:238;11086:281;;:::o;11373:129::-;11407:6;11434:20;;:::i;:::-;11424:30;;11463:33;11491:4;11483:6;11463:33;:::i;:::-;11373:129;;;:::o;11508:311::-;11585:4;11675:18;11667:6;11664:30;11661:56;;;11697:18;;:::i;:::-;11661:56;11747:4;11739:6;11735:17;11727:25;;11807:4;11801;11797:15;11789:23;;11508:311;;;:::o;11842:710::-;11938:5;11963:81;11979:64;12036:6;11979:64;:::i;:::-;11963:81;:::i;:::-;11954:90;;12064:5;12093:6;12086:5;12079:21;12127:4;12120:5;12116:16;12109:23;;12180:4;12172:6;12168:17;12160:6;12156:30;12209:3;12201:6;12198:15;12195:122;;;12228:79;;:::i;:::-;12195:122;12343:6;12326:220;12360:6;12355:3;12352:15;12326:220;;;12435:3;12464:37;12497:3;12485:10;12464:37;:::i;:::-;12459:3;12452:50;12531:4;12526:3;12522:14;12515:21;;12402:144;12386:4;12381:3;12377:14;12370:21;;12326:220;;;12330:21;11944:608;;11842:710;;;;;:::o;12575:370::-;12646:5;12695:3;12688:4;12680:6;12676:17;12672:27;12662:122;;12703:79;;:::i;:::-;12662:122;12820:6;12807:20;12845:94;12935:3;12927:6;12920:4;12912:6;12908:17;12845:94;:::i;:::-;12836:103;;12652:293;12575:370;;;;:::o;12951:311::-;13028:4;13118:18;13110:6;13107:30;13104:56;;;13140:18;;:::i;:::-;13104:56;13190:4;13182:6;13178:17;13170:25;;13250:4;13244;13240:15;13232:23;;12951:311;;;:::o;13285:710::-;13381:5;13406:81;13422:64;13479:6;13422:64;:::i;:::-;13406:81;:::i;:::-;13397:90;;13507:5;13536:6;13529:5;13522:21;13570:4;13563:5;13559:16;13552:23;;13623:4;13615:6;13611:17;13603:6;13599:30;13652:3;13644:6;13641:15;13638:122;;;13671:79;;:::i;:::-;13638:122;13786:6;13769:220;13803:6;13798:3;13795:15;13769:220;;;13878:3;13907:37;13940:3;13928:10;13907:37;:::i;:::-;13902:3;13895:50;13974:4;13969:3;13965:14;13958:21;;13845:144;13829:4;13824:3;13820:14;13813:21;;13769:220;;;13773:21;13387:608;;13285:710;;;;;:::o;14018:370::-;14089:5;14138:3;14131:4;14123:6;14119:17;14115:27;14105:122;;14146:79;;:::i;:::-;14105:122;14263:6;14250:20;14288:94;14378:3;14370:6;14363:4;14355:6;14351:17;14288:94;:::i;:::-;14279:103;;14095:293;14018:370;;;;:::o;14394:894::-;14512:6;14520;14569:2;14557:9;14548:7;14544:23;14540:32;14537:119;;;14575:79;;:::i;:::-;14537:119;14723:1;14712:9;14708:17;14695:31;14753:18;14745:6;14742:30;14739:117;;;14775:79;;:::i;:::-;14739:117;14880:78;14950:7;14941:6;14930:9;14926:22;14880:78;:::i;:::-;14870:88;;14666:302;15035:2;15024:9;15020:18;15007:32;15066:18;15058:6;15055:30;15052:117;;;15088:79;;:::i;:::-;15052:117;15193:78;15263:7;15254:6;15243:9;15239:22;15193:78;:::i;:::-;15183:88;;14978:303;14394:894;;;;;:::o;15294:104::-;15339:7;15368:24;15386:5;15368:24;:::i;:::-;15357:35;;15294:104;;;:::o;15404:138::-;15485:32;15511:5;15485:32;:::i;:::-;15478:5;15475:43;15465:71;;15532:1;15529;15522:12;15465:71;15404:138;:::o;15548:155::-;15602:5;15640:6;15627:20;15618:29;;15656:41;15691:5;15656:41;:::i;:::-;15548:155;;;;:::o;15709:345::-;15776:6;15825:2;15813:9;15804:7;15800:23;15796:32;15793:119;;;15831:79;;:::i;:::-;15793:119;15951:1;15976:61;16029:7;16020:6;16009:9;16005:22;15976:61;:::i;:::-;15966:71;;15922:125;15709:345;;;;:::o;16060:468::-;16125:6;16133;16182:2;16170:9;16161:7;16157:23;16153:32;16150:119;;;16188:79;;:::i;:::-;16150:119;16308:1;16333:53;16378:7;16369:6;16358:9;16354:22;16333:53;:::i;:::-;16323:63;;16279:117;16435:2;16461:50;16503:7;16494:6;16483:9;16479:22;16461:50;:::i;:::-;16451:60;;16406:115;16060:468;;;;;:::o;16534:117::-;16643:1;16640;16633:12;16657:307;16718:4;16808:18;16800:6;16797:30;16794:56;;;16830:18;;:::i;:::-;16794:56;16868:29;16890:6;16868:29;:::i;:::-;16860:37;;16952:4;16946;16942:15;16934:23;;16657:307;;;:::o;16970:148::-;17068:6;17063:3;17058;17045:30;17109:1;17100:6;17095:3;17091:16;17084:27;16970:148;;;:::o;17124:423::-;17201:5;17226:65;17242:48;17283:6;17242:48;:::i;:::-;17226:65;:::i;:::-;17217:74;;17314:6;17307:5;17300:21;17352:4;17345:5;17341:16;17390:3;17381:6;17376:3;17372:16;17369:25;17366:112;;;17397:79;;:::i;:::-;17366:112;17487:54;17534:6;17529:3;17524;17487:54;:::i;:::-;17207:340;17124:423;;;;;:::o;17566:338::-;17621:5;17670:3;17663:4;17655:6;17651:17;17647:27;17637:122;;17678:79;;:::i;:::-;17637:122;17795:6;17782:20;17820:78;17894:3;17886:6;17879:4;17871:6;17867:17;17820:78;:::i;:::-;17811:87;;17627:277;17566:338;;;;:::o;17910:943::-;18005:6;18013;18021;18029;18078:3;18066:9;18057:7;18053:23;18049:33;18046:120;;;18085:79;;:::i;:::-;18046:120;18205:1;18230:53;18275:7;18266:6;18255:9;18251:22;18230:53;:::i;:::-;18220:63;;18176:117;18332:2;18358:53;18403:7;18394:6;18383:9;18379:22;18358:53;:::i;:::-;18348:63;;18303:118;18460:2;18486:53;18531:7;18522:6;18511:9;18507:22;18486:53;:::i;:::-;18476:63;;18431:118;18616:2;18605:9;18601:18;18588:32;18647:18;18639:6;18636:30;18633:117;;;18669:79;;:::i;:::-;18633:117;18774:62;18828:7;18819:6;18808:9;18804:22;18774:62;:::i;:::-;18764:72;;18559:287;17910:943;;;;;;;:::o;18876:568::-;18949:8;18959:6;19009:3;19002:4;18994:6;18990:17;18986:27;18976:122;;19017:79;;:::i;:::-;18976:122;19130:6;19117:20;19107:30;;19160:18;19152:6;19149:30;19146:117;;;19182:79;;:::i;:::-;19146:117;19296:4;19288:6;19284:17;19272:29;;19350:3;19342:4;19334:6;19330:17;19320:8;19316:32;19313:41;19310:128;;;19357:79;;:::i;:::-;19310:128;18876:568;;;;;:::o;19450:704::-;19545:6;19553;19561;19610:2;19598:9;19589:7;19585:23;19581:32;19578:119;;;19616:79;;:::i;:::-;19578:119;19736:1;19761:53;19806:7;19797:6;19786:9;19782:22;19761:53;:::i;:::-;19751:63;;19707:117;19891:2;19880:9;19876:18;19863:32;19922:18;19914:6;19911:30;19908:117;;;19944:79;;:::i;:::-;19908:117;20057:80;20129:7;20120:6;20109:9;20105:22;20057:80;:::i;:::-;20039:98;;;;19834:313;19450:704;;;;;:::o;20160:122::-;20233:24;20251:5;20233:24;:::i;:::-;20226:5;20223:35;20213:63;;20272:1;20269;20262:12;20213:63;20160:122;:::o;20288:139::-;20334:5;20372:6;20359:20;20350:29;;20388:33;20415:5;20388:33;:::i;:::-;20288:139;;;;:::o;20433:329::-;20492:6;20541:2;20529:9;20520:7;20516:23;20512:32;20509:119;;;20547:79;;:::i;:::-;20509:119;20667:1;20692:53;20737:7;20728:6;20717:9;20713:22;20692:53;:::i;:::-;20682:63;;20638:117;20433:329;;;;:::o;20768:474::-;20836:6;20844;20893:2;20881:9;20872:7;20868:23;20864:32;20861:119;;;20899:79;;:::i;:::-;20861:119;21019:1;21044:53;21089:7;21080:6;21069:9;21065:22;21044:53;:::i;:::-;21034:63;;20990:117;21146:2;21172:53;21217:7;21208:6;21197:9;21193:22;21172:53;:::i;:::-;21162:63;;21117:118;20768:474;;;;;:::o;21248:849::-;21352:6;21360;21368;21376;21425:2;21413:9;21404:7;21400:23;21396:32;21393:119;;;21431:79;;:::i;:::-;21393:119;21551:1;21576:53;21621:7;21612:6;21601:9;21597:22;21576:53;:::i;:::-;21566:63;;21522:117;21706:2;21695:9;21691:18;21678:32;21737:18;21729:6;21726:30;21723:117;;;21759:79;;:::i;:::-;21723:117;21872:80;21944:7;21935:6;21924:9;21920:22;21872:80;:::i;:::-;21854:98;;;;21649:313;22001:2;22027:53;22072:7;22063:6;22052:9;22048:22;22027:53;:::i;:::-;22017:63;;21972:118;21248:849;;;;;;;:::o;22103:180::-;22151:77;22148:1;22141:88;22248:4;22245:1;22238:15;22272:4;22269:1;22262:15;22289:320;22333:6;22370:1;22364:4;22360:12;22350:22;;22417:1;22411:4;22407:12;22438:18;22428:81;;22494:4;22486:6;22482:17;22472:27;;22428:81;22556:2;22548:6;22545:14;22525:18;22522:38;22519:84;;22575:18;;:::i;:::-;22519:84;22340:269;22289:320;;;:::o;22615:180::-;22663:77;22660:1;22653:88;22760:4;22757:1;22750:15;22784:4;22781:1;22774:15;22801:410;22841:7;22864:20;22882:1;22864:20;:::i;:::-;22859:25;;22898:20;22916:1;22898:20;:::i;:::-;22893:25;;22953:1;22950;22946:9;22975:30;22993:11;22975:30;:::i;:::-;22964:41;;23154:1;23145:7;23141:15;23138:1;23135:22;23115:1;23108:9;23088:83;23065:139;;23184:18;;:::i;:::-;23065:139;22849:362;22801:410;;;;:::o;23217:180::-;23265:77;23262:1;23255:88;23362:4;23359:1;23352:15;23386:4;23383:1;23376:15;23403:185;23443:1;23460:20;23478:1;23460:20;:::i;:::-;23455:25;;23494:20;23512:1;23494:20;:::i;:::-;23489:25;;23533:1;23523:35;;23538:18;;:::i;:::-;23523:35;23580:1;23577;23573:9;23568:14;;23403:185;;;;:::o;23594:191::-;23634:3;23653:20;23671:1;23653:20;:::i;:::-;23648:25;;23687:20;23705:1;23687:20;:::i;:::-;23682:25;;23730:1;23727;23723:9;23716:16;;23751:3;23748:1;23745:10;23742:36;;;23758:18;;:::i;:::-;23742:36;23594:191;;;;:::o;23791:97::-;23850:6;23878:3;23868:13;;23791:97;;;;:::o;23894:141::-;23943:4;23966:3;23958:11;;23989:3;23986:1;23979:14;24023:4;24020:1;24010:18;24002:26;;23894:141;;;:::o;24041:93::-;24078:6;24125:2;24120;24113:5;24109:14;24105:23;24095:33;;24041:93;;;:::o;24140:107::-;24184:8;24234:5;24228:4;24224:16;24203:37;;24140:107;;;;:::o;24253:393::-;24322:6;24372:1;24360:10;24356:18;24395:97;24425:66;24414:9;24395:97;:::i;:::-;24513:39;24543:8;24532:9;24513:39;:::i;:::-;24501:51;;24585:4;24581:9;24574:5;24570:21;24561:30;;24634:4;24624:8;24620:19;24613:5;24610:30;24600:40;;24329:317;;24253:393;;;;;:::o;24652:60::-;24680:3;24701:5;24694:12;;24652:60;;;:::o;24718:142::-;24768:9;24801:53;24819:34;24828:24;24846:5;24828:24;:::i;:::-;24819:34;:::i;:::-;24801:53;:::i;:::-;24788:66;;24718:142;;;:::o;24866:75::-;24909:3;24930:5;24923:12;;24866:75;;;:::o;24947:269::-;25057:39;25088:7;25057:39;:::i;:::-;25118:91;25167:41;25191:16;25167:41;:::i;:::-;25159:6;25152:4;25146:11;25118:91;:::i;:::-;25112:4;25105:105;25023:193;24947:269;;;:::o;25222:73::-;25267:3;25222:73;:::o;25301:189::-;25378:32;;:::i;:::-;25419:65;25477:6;25469;25463:4;25419:65;:::i;:::-;25354:136;25301:189;;:::o;25496:186::-;25556:120;25573:3;25566:5;25563:14;25556:120;;;25627:39;25664:1;25657:5;25627:39;:::i;:::-;25600:1;25593:5;25589:13;25580:22;;25556:120;;;25496:186;;:::o;25688:543::-;25789:2;25784:3;25781:11;25778:446;;;25823:38;25855:5;25823:38;:::i;:::-;25907:29;25925:10;25907:29;:::i;:::-;25897:8;25893:44;26090:2;26078:10;26075:18;26072:49;;;26111:8;26096:23;;26072:49;26134:80;26190:22;26208:3;26190:22;:::i;:::-;26180:8;26176:37;26163:11;26134:80;:::i;:::-;25793:431;;25778:446;25688:543;;;:::o;26237:117::-;26291:8;26341:5;26335:4;26331:16;26310:37;;26237:117;;;;:::o;26360:169::-;26404:6;26437:51;26485:1;26481:6;26473:5;26470:1;26466:13;26437:51;:::i;:::-;26433:56;26518:4;26512;26508:15;26498:25;;26411:118;26360:169;;;;:::o;26534:295::-;26610:4;26756:29;26781:3;26775:4;26756:29;:::i;:::-;26748:37;;26818:3;26815:1;26811:11;26805:4;26802:21;26794:29;;26534:295;;;;:::o;26834:1403::-;26958:44;26998:3;26993;26958:44;:::i;:::-;27067:18;27059:6;27056:30;27053:56;;;27089:18;;:::i;:::-;27053:56;27133:38;27165:4;27159:11;27133:38;:::i;:::-;27218:67;27278:6;27270;27264:4;27218:67;:::i;:::-;27312:1;27341:2;27333:6;27330:14;27358:1;27353:632;;;;28029:1;28046:6;28043:84;;;28102:9;28097:3;28093:19;28080:33;28071:42;;28043:84;28153:67;28213:6;28206:5;28153:67;:::i;:::-;28147:4;28140:81;28002:229;27323:908;;27353:632;27405:4;27401:9;27393:6;27389:22;27439:37;27471:4;27439:37;:::i;:::-;27498:1;27512:215;27526:7;27523:1;27520:14;27512:215;;;27612:9;27607:3;27603:19;27590:33;27582:6;27575:49;27663:1;27655:6;27651:14;27641:24;;27710:2;27699:9;27695:18;27682:31;;27549:4;27546:1;27542:12;27537:17;;27512:215;;;27755:6;27746:7;27743:19;27740:186;;;27820:9;27815:3;27811:19;27798:33;27863:48;27905:4;27897:6;27893:17;27882:9;27863:48;:::i;:::-;27855:6;27848:64;27763:163;27740:186;27972:1;27968;27960:6;27956:14;27952:22;27946:4;27939:36;27360:625;;;27323:908;;26933:1304;;;26834:1403;;;:::o;28243:180::-;28291:77;28288:1;28281:88;28388:4;28385:1;28378:15;28412:4;28409:1;28402:15;28429:148;28531:11;28568:3;28553:18;;28429:148;;;;:::o;28583:390::-;28689:3;28717:39;28750:5;28717:39;:::i;:::-;28772:89;28854:6;28849:3;28772:89;:::i;:::-;28765:96;;28870:65;28928:6;28923:3;28916:4;28909:5;28905:16;28870:65;:::i;:::-;28960:6;28955:3;28951:16;28944:23;;28693:280;28583:390;;;;:::o;28979:160::-;29119:12;29115:1;29107:6;29103:14;29096:36;28979:160;:::o;29145:402::-;29305:3;29326:85;29408:2;29403:3;29326:85;:::i;:::-;29319:92;;29420:93;29509:3;29420:93;:::i;:::-;29538:2;29533:3;29529:12;29522:19;;29145:402;;;:::o;29553:701::-;29834:3;29856:95;29947:3;29938:6;29856:95;:::i;:::-;29849:102;;29968:148;30112:3;29968:148;:::i;:::-;29961:155;;30133:95;30224:3;30215:6;30133:95;:::i;:::-;30126:102;;30245:3;30238:10;;29553:701;;;;;:::o;30260:94::-;30293:8;30341:5;30337:2;30333:14;30312:35;;30260:94;;;:::o;30360:::-;30399:7;30428:20;30442:5;30428:20;:::i;:::-;30417:31;;30360:94;;;:::o;30460:100::-;30499:7;30528:26;30548:5;30528:26;:::i;:::-;30517:37;;30460:100;;;:::o;30566:157::-;30671:45;30691:24;30709:5;30691:24;:::i;:::-;30671:45;:::i;:::-;30666:3;30659:58;30566:157;;:::o;30729:256::-;30841:3;30856:75;30927:3;30918:6;30856:75;:::i;:::-;30956:2;30951:3;30947:12;30940:19;;30976:3;30969:10;;30729:256;;;;:::o;30991:79::-;31030:7;31059:5;31048:16;;30991:79;;;:::o;31076:157::-;31181:45;31201:24;31219:5;31201:24;:::i;:::-;31181:45;:::i;:::-;31176:3;31169:58;31076:157;;:::o;31239:397::-;31379:3;31394:75;31465:3;31456:6;31394:75;:::i;:::-;31494:2;31489:3;31485:12;31478:19;;31507:75;31578:3;31569:6;31507:75;:::i;:::-;31607:2;31602:3;31598:12;31591:19;;31627:3;31620:10;;31239:397;;;;;:::o;31642:140::-;31691:9;31724:52;31742:33;31751:23;31768:5;31751:23;:::i;:::-;31742:33;:::i;:::-;31724:52;:::i;:::-;31711:65;;31642:140;;;:::o;31788:129::-;31874:36;31904:5;31874:36;:::i;:::-;31869:3;31862:49;31788:129;;:::o;31923:330::-;32043:4;32081:2;32070:9;32066:18;32058:26;;32094:70;32161:1;32150:9;32146:17;32137:6;32094:70;:::i;:::-;32174:72;32242:2;32231:9;32227:18;32218:6;32174:72;:::i;:::-;31923:330;;;;;:::o;32259:171::-;32298:3;32321:24;32339:5;32321:24;:::i;:::-;32312:33;;32367:4;32360:5;32357:15;32354:41;;32375:18;;:::i;:::-;32354:41;32422:1;32415:5;32411:13;32404:20;;32259:171;;;:::o;32436:440::-;32584:4;32622:2;32611:9;32607:18;32599:26;;32635:71;32703:1;32692:9;32688:17;32679:6;32635:71;:::i;:::-;32716;32783:2;32772:9;32768:18;32759:6;32716:71;:::i;:::-;32797:72;32865:2;32854:9;32850:18;32841:6;32797:72;:::i;:::-;32436:440;;;;;;:::o;32882:332::-;33003:4;33041:2;33030:9;33026:18;33018:26;;33054:71;33122:1;33111:9;33107:17;33098:6;33054:71;:::i;:::-;33135:72;33203:2;33192:9;33188:18;33179:6;33135:72;:::i;:::-;32882:332;;;;;:::o;33220:98::-;33271:6;33305:5;33299:12;33289:22;;33220:98;;;:::o;33324:168::-;33407:11;33441:6;33436:3;33429:19;33481:4;33476:3;33472:14;33457:29;;33324:168;;;;:::o;33498:373::-;33584:3;33612:38;33644:5;33612:38;:::i;:::-;33666:70;33729:6;33724:3;33666:70;:::i;:::-;33659:77;;33745:65;33803:6;33798:3;33791:4;33784:5;33780:16;33745:65;:::i;:::-;33835:29;33857:6;33835:29;:::i;:::-;33830:3;33826:39;33819:46;;33588:283;33498:373;;;;:::o;33877:640::-;34072:4;34110:3;34099:9;34095:19;34087:27;;34124:71;34192:1;34181:9;34177:17;34168:6;34124:71;:::i;:::-;34205:72;34273:2;34262:9;34258:18;34249:6;34205:72;:::i;:::-;34287;34355:2;34344:9;34340:18;34331:6;34287:72;:::i;:::-;34406:9;34400:4;34396:20;34391:2;34380:9;34376:18;34369:48;34434:76;34505:4;34496:6;34434:76;:::i;:::-;34426:84;;33877:640;;;;;;;:::o;34523:141::-;34579:5;34610:6;34604:13;34595:22;;34626:32;34652:5;34626:32;:::i;:::-;34523:141;;;;:::o;34670:349::-;34739:6;34788:2;34776:9;34767:7;34763:23;34759:32;34756:119;;;34794:79;;:::i;:::-;34756:119;34914:1;34939:63;34994:7;34985:6;34974:9;34970:22;34939:63;:::i;:::-;34929:73;;34885:127;34670:349;;;;:::o;35025:137::-;35079:5;35110:6;35104:13;35095:22;;35126:30;35150:5;35126:30;:::i;:::-;35025:137;;;;:::o;35168:345::-;35235:6;35284:2;35272:9;35263:7;35259:23;35255:32;35252:119;;;35290:79;;:::i;:::-;35252:119;35410:1;35435:61;35488:7;35479:6;35468:9;35464:22;35435:61;:::i;:::-;35425:71;;35381:125;35168:345;;;;:::o

Swarm Source

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