ETH Price: $2,999.67 (+4.05%)
Gas: 2 Gwei

Token

Maestros Mix (MMAB)
 

Overview

Max Total Supply

1,920 MMAB

Holders

820

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 MMAB
0xFc4214E2eD57aB7b0Ffd5f376cF5d31512222DB3
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MaestrosMix

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-14
*/

//SPDX-License-Identifier: GPL-3.0
// File: erc721a/contracts/IERC721A.sol


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

    // =============================================================
    //                            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.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].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);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public 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();
            }
    }

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 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)
        }
    }
}

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


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

pragma solidity ^0.8.0;

/**
 * @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.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

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

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

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

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

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

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

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

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

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

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

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

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

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: contracts/maestrosmix.sol



pragma solidity >=0.7.0 <0.9.0;





/// @title Mestro's Mix
/// @author Adam Bawany
contract MaestrosMix is ERC721A, Ownable {

    using Strings for uint256;
    
    bool public paused = false; 
    bool public revealed = false;
    bool public pauseOG = true; //To pause only OG
    bool public pauseWL = true; //To pause only WL
    bool public pausePublicSale = true; //To pause only public
    
    uint8 public maxMintAmountPerWallet = 5; //Max Limit per Wallet
    uint8 public maxOGFreePerWallet =2; //Max Free mint for WL
    uint8 public maxWLFreePerWallet =1; //Max Limit per Wallet for WL
    uint8 public maxPublicFreePerWallet =1; //Max Free mint for WL
    
    uint256 public cost = 0.005 ether;
    uint256 public maxSupply = 1920;

    uint256 public OGMinted=0;
    uint256 public WLMinted=0;
    uint256 public publicFreeMinted=0;
    uint256 public paidMinted=0;

    uint256 public totalOGLimit=300;
    uint256 public totalWLLimit=500;
    uint256 public totalPublicFreeLimit=100;
    uint256 public totalPaidLimit=1000;

    string private baseURI;
    string public baseExtension = ".json";
    string private notRevealedUri;

     enum MintType{ OG, WL, Public }

    mapping(address => uint8) tokensMintedPerWallet;

    bytes32 OGRoot;
    bytes32 WLRoot;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI,
        string memory _initNotRevealedUri,
        bytes32 _OGRoot,
        bytes32 _WLRoot
    ) ERC721A(_name, _symbol) {
        setBaseURI(_initBaseURI);
        setNotRevealedURI(_initNotRevealedUri);
        OGRoot=_OGRoot;
        WLRoot=_WLRoot;
        _safeMint(msg.sender, 20);
    }

    ///@notice some common conditions for public and pre sale that needs to be true like minting is not paused,amount to mint is greater than 0,supply dont exceed more than the total supply and sender dont exceed the max mint amount set
    ///@dev this modifier needs to be added on every function thats going to mint tokens
    ///@param _mintAmount is the amount to mint tokens
    modifier preConditions(uint8 _mintAmount) {
        require(!paused,"Minting is currently paused");
        require(_mintAmount > 0,"Mint amount should be greater than 0");
        require(totalSupply() + _mintAmount <= maxSupply,"Insuffiecient tokens available");
        require(_mintAmount+ tokensMintedPerWallet[msg.sender] <= maxMintAmountPerWallet,"Max lmit of tokens exceeded");
        _;
    }
    
    ///@notice it is the helper mint function which cheks if the mint amount is less than free mint available then it mint wwithout charges.Otherwise it calculates mint amount that need to be charged,alculate and verify the charges and then mint the tokens
    ///@dev  if the mint amount is less than free mint available,then we mint without checking the amount.Otherwise we first calculate how many tokens need to be minted are paid,then checkes the amount send by the minter and then mints the tokens
    ///@param _mintAmount is the number of tokens to mint,senderAmount is the amount send by minter while minting,freeMintAvailable is the number of free tokens that are left for the specified addresss.
    function mint(
        uint8 _mintAmount,
        uint256 senderAmount,
        uint256 freeMintAvailable,
        MintType mintType 
    ) private {
         if (_mintAmount <= freeMintAvailable) {

             if(mintType==MintType.OG){
                // whitelistFreeMinted=whitelistFreeMinted+_mintAmount;
                OGMinted=OGMinted+_mintAmount;
             }
             else if(mintType==MintType.WL){
                //  whitelistFreeMinted=whitelistFreeMinted+_mintAmount;
                 WLMinted=WLMinted+_mintAmount;
             }
             else{
                 publicFreeMinted=publicFreeMinted+_mintAmount;
             }

            _safeMint(msg.sender, _mintAmount);
            tokensMintedPerWallet[msg.sender]+=_mintAmount;
           
           

        } else {

           
            if(mintType==MintType.OG){
                // whitelistFreeMinted=whitelistFreeMinted+freeMintAvailable;
                 OGMinted=OGMinted+freeMintAvailable;
            }
            else if(mintType==MintType.WL){
                // whitelistFreeMinted=whitelistFreeMinted+freeMintAvailable;
                WLMinted=WLMinted+freeMintAvailable;
            }
             else{
                 publicFreeMinted=publicFreeMinted+freeMintAvailable;
             }
             

            uint256 paidMint = _mintAmount - freeMintAvailable;
            require(senderAmount >= paidMint * cost,"Insuffiecient funds transfered");
            require(paidMinted+paidMint<=totalPaidLimit,"paid limit is exceded");
            _safeMint(msg.sender, _mintAmount);
            tokensMintedPerWallet[msg.sender]+=_mintAmount;
            paidMinted=paidMinted+paidMint;
           
        }
    }

    ///@notice It returns the number of free mint available for the specific address depending on the type of mint such as pre sale and public sale
    ///@dev It is used to calculate the number of free token available for the specific address.It is used as we have different number of free mints for different whitelisting and public sale.
    ///@param maxFreeMintAmount is the maximum amount of tokens available to mint free.
    ///@return it returns the number of free tokens available to mint,in type uint256, for the senders address.
    function getFreeMintAvailableAmount(uint256 maxFreeMintAmount,MintType mintTpe)
        private
        view
        returns (uint256)
    {
        uint256 currentMintAmount = tokensMintedPerWallet[msg.sender];
        if (maxFreeMintAmount > currentMintAmount) {
            uint256 freeMintAvailable=maxFreeMintAmount - currentMintAmount;
            if((mintTpe==MintType.OG&&OGMinted<totalOGLimit)){
                
                if(freeMintAvailable<totalOGLimit-OGMinted){
                    return freeMintAvailable;
                }
                else{
                    return(totalOGLimit-OGMinted);
                }
                    
            }
            else if((mintTpe==MintType.WL&&WLMinted<totalWLLimit)){
                
                if(freeMintAvailable<totalWLLimit-WLMinted){
                    return freeMintAvailable;
                }
                else{
                    return(totalWLLimit-WLMinted);
                }
                    
            }
            else if((mintTpe==MintType.Public&&publicFreeMinted<totalPublicFreeLimit)){

                if(freeMintAvailable<totalPublicFreeLimit-publicFreeMinted){
                    return freeMintAvailable;
                }
                else{
                    return(totalPublicFreeLimit-publicFreeMinted);
                }
            }
            else{
                return 0;
            }
            
        } else {
            return 0;
        }
    }

    /// @notice It is use to allow mint for the adresses added in og whitelist
    /// @dev Since we have two whitelist,we calculate there free mint avialble depending on the whitelist and call the private mint function.Cannot break further as free mints are variable to type of sale
    /// @param _mintAmount is the quantity of tocken to mint
    function OGMint(uint8 _mintAmount,bytes32[] calldata proof) preConditions(_mintAmount) public payable {
       
        require(!pauseOG,"Pre sale OG is not active currently");

        // uint256 ownerTokenCount = tokensMintedPerWallet[msg.sender];
        // require(_mintAmount+ownerTokenCount<= nftPerAddressLimitO,"Max lmit of tokens exceeded for Whitelists");

        require(isWalletOG(msg.sender,proof),"This Adresses is not whitelisted, You can Mint Maestro's Mix in Public Sale");
        // if (isWhiteListedO(msg.sender)) {
            // require(ownerTokenCount < nftPerAddressLimitO,"Max lmit of tokens exceeded for OG list");
            uint256 freeMintAvailable = getFreeMintAvailableAmount(
                maxOGFreePerWallet,MintType.OG
            );
            // require(freeMintAvailable+whitelistFreeMinted<=500,"White list free mint are over");
            mint(_mintAmount,msg.value,freeMintAvailable,MintType.OG);
           
        // }
}

    /// @notice It is use to allow mint for the adresses added in whitelist
    /// @dev Since we have two whitelist,we calculate there free mint avialble depending on the whitelist and call the private mint function.Cannot break further as free mints are variable to type of sale
    /// @param _mintAmount is the quantity of tocken to mint
    function WLMint(uint8 _mintAmount,bytes32[] calldata proof) preConditions(_mintAmount) public payable {
       
        require(!pauseWL,"Pre sale WL is not active currently");

        // uint256 ownerTokenCount = tokensMintedPerWallet[msg.sender];
        // require(_mintAmount+ownerTokenCount<= nftPerAddressLimitL,"Max lmit of tokens exceeded for Whitelists");

        require(isWalletWL(msg.sender,proof),"This Adresses is not whitelisted, You can Mint Maestro's Mix in Public Sale");
        // if (isWhiteListedL(msg.sender)) {
            // require(ownerTokenCount < nftPerAddressLimitL,"Max lmit of tokens exceeded for OG list");
            uint256 freeMintAvailable = getFreeMintAvailableAmount(
                maxWLFreePerWallet,MintType.WL
            );
            // require(freeMintAvailable+whitelistFreeMinted<=500,"White list free mint are over");
            mint(_mintAmount,msg.value,freeMintAvailable,MintType.WL);
           
        // }
}

    /// @notice It is use to allow mint for the public sale
    /// @dev Use in public sale.Can also add a check of boolean onlyPulicSale in order to make it discrete with onlyWhiteListed.Cause as of now when whitelisting is off,public sales gets active immediately.Can also add lazy minting for optimization
    /// @param _mintAmount is the quantity of tocken to mint
    function PublicMint(uint8 _mintAmount) preConditions(_mintAmount) public payable {
       
        require(!pausePublicSale,"Public sale is currently inactive");
        //require(_mintAmount <= nftPerAddressLimitPublic,"Mint amount should be greater than 0");
        // uint256 ownerTokenCount = tokensMintedPerWallet[msg.sender];
        // require(_mintAmount+ownerTokenCount <= nftPerAddressLimitPublic,"Max lmit of tokens exceeded for public sale");

        uint256 freeMintAvailable = getFreeMintAvailableAmount(
            maxPublicFreePerWallet,MintType.Public
        );

        // require(freeMintAvailable+publicFreeMinted<=1000,"Public free mint is over free");

         mint( _mintAmount,msg.value,freeMintAvailable,MintType.Public);
    }

    function mintOwner(uint256 _mintAmount) public onlyOwner {
         _safeMint(msg.sender, _mintAmount);
    }

    /// @notice check if the address is in whitelisted og list
    /// @dev use to check if address is in whitelisted og list
    /// @param _user is the address of wallet to check
    /// @return it returns the boolen,true if address exist in the whitelist og list
    function isWalletOG(address _user,bytes32[] calldata proof) public view returns (bool) {
        bytes32 leaf=keccak256(abi.encodePacked(_user));
        return MerkleProof.verify(proof,OGRoot,leaf);
    }

    /// @notice check if the address is in whitelisted wl list
    /// @dev use to check if address is in whitelisted wl list
    /// @param _user is the address of wallet to check
    /// @return it returns the boolen,true if address exist in the whitelist wl list
    function isWalletWL(address _user,bytes32[] calldata proof) public view returns (bool) {
       bytes32 leaf=keccak256(abi.encodePacked(_user));
        return MerkleProof.verify(proof,WLRoot,leaf);
    }


    /// @notice set the max amount of token that can be minted by a single wallet
    /// @dev it is to set max amount of token that can be minted by a single wallet
    /// @param _maxMintAmountPerWallet is the new max amount that a single wallet can mint totally
    function setMaxMintAmountPerWallet(uint8 _maxMintAmountPerWallet) public onlyOwner {
        maxMintAmountPerWallet = _maxMintAmountPerWallet;
    }
      
    ///@notice To set the number of token allowed to free mint in OG whitelist per address
    ///@dev set the number of token allowed to free mint in OG list
    ///@param _maxOGFreePerWallet of type uint8 is the number of free tokens allowed to mint in OG whitelist
    function setMaxOGFreePerWallet (uint8 _maxOGFreePerWallet) public onlyOwner{
       maxOGFreePerWallet=_maxOGFreePerWallet;
       
    }
    
    ///@notice To set the total number of token allowed to mint in WL whitelist per address
    ///@dev set the total number of token allowed to mint in WL list per address
    ///@param _maxWLFreePerWallet of type uint8 is the total number of tokens allowed to mint in WL whitelist per address
    function setMaxWLFreePerWallet (uint8 _maxWLFreePerWallet) public onlyOwner{
        maxWLFreePerWallet=_maxWLFreePerWallet;
    }

     ///@notice To set the number of token allowed to free mint in public sale per address
    ///@dev set the number of token allowed to free mint in public sale per address
    ///@param _maxPublicFreePerWallet of type uint8 is the number of free tokens allowed to mint in public sale per address
    function setMaxPublicFreePerWallet (uint8 _maxPublicFreePerWallet) public onlyOwner{
        maxPublicFreePerWallet=_maxPublicFreePerWallet;
    }

    
    function setTotalLimitsOfMint(uint256 _totalOGLimit,uint256 _totalWLLimit,uint256 _totalPublicFreeLimit,uint256 _totalPaidLimit)
        public
        onlyOwner
    {
        totalOGLimit=_totalOGLimit;
        totalWLLimit=_totalWLLimit;
        totalPublicFreeLimit=_totalPublicFreeLimit;
        totalPaidLimit=_totalPaidLimit;
    }

    /// @notice Gives the base uri for tocken
    /// @dev use for the BaseUri setup at the time of initialization
    /// @return base uri of tockens on ipfs in string
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
    /// @notice gives the token uri of specific token
    /// @dev it is to give us the token uri when minted an nft
    /// @param tokenId is the index of the token for which uri has to return
    /// @return it returns the uri of specific token
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        if (revealed == false) {
            return notRevealedUri;
        }

        string memory currentBaseURI = _baseURI();
        if(bytes(currentBaseURI).length > 0){
                return string(
                    abi.encodePacked(
                        currentBaseURI,
                        tokenId.toString(),
                        baseExtension
                    )
                );
        }else{
                return "";
            }
    }

    /// @notice reveal the nft art
    /// @dev set the reveal to true inorder to reveal nft art.
    function reveal() public onlyOwner {
        revealed = true;
    }

    /// @notice set the cost for paid mint
    /// @dev it is to set the cost for the tokens minted in paid mint
    /// @param _newCost is the new cost to set for the paid mint
    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    /// @notice it sets the uri for the image to show when tokens are not revealed
    /// @dev it is to set uri of json that has details to show along with image when the tokens are not revealed
    /// @param _notRevealedURI is the new uri of json for the metadata when tokens are not revealed
    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    /// @notice it sets the uri for the data including images,description to show when tokens are  revealed
    /// @dev it is to set domain uri of json metadata that has details to show along with image when the tokens are revealed
    /// @param _newBaseURI is the new domain uri of json for the metadata when tokens are  revealed
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    /// @notice it sets the extension of file containing metadata
    /// @dev it is to set file extension of metadata that has details to show along with image when the tokens are not revealed
    /// @param _newBaseExtension is the new extension of the metadata file
    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    /// @notice it is to withraw funds from the paid mint
    /// @dev it withdraws the fund from minting to the wallet of owner
    function withdraw() public payable onlyOwner {
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }

    /// @notice it to track addresses that mints and thier amount
    /// @dev it is added to stop addresses from selling and minting again
    /// @param wallet is the wallet addr of minter
    function getTokensMintedPerWallet(address wallet) public view returns (uint8){
    return tokensMintedPerWallet[wallet];
    }
    
    /// @notice it stops/resume wallet from minting.
    /// @dev it is to stop/resume the minting process.Could be used when system is compromised.
    /// @param _state is the boolean to whther resume or pause the minting process.
    function setPause(bool _state) public onlyOwner {
        paused = _state;
    }

    /// @notice it toggle the whitelistog
    /// @dev it toggle the whitelistog
    /// @param _pauseOG is the bool to toggle the whitelistog
    function setPauseOG(bool _pauseOG)
        public
        onlyOwner
    {
        pauseOG=_pauseOG;
    }
    /// @notice it toggle the whitelist
    /// @dev it toggle the whitelist
    /// @param _pauseWL is the bool to toggle the whitelist
    function setPauseWL(bool _pauseWL)
        public
        onlyOwner
    {
        pauseWL=_pauseWL;
    }
    /// @notice it toggle the publicSale
    /// @dev it toggle the publicsale
    /// @param _pausePublicSale is the bool to toggle the whitelist
    function setPausePublicSale(bool _pausePublicSale)
        public
        onlyOwner
    {
        pausePublicSale=_pausePublicSale;
    }

     /// @notice this sets the og and wl proofs
    /// @dev this sets the og and wl proofs
    /// @param _OGRoot _WLRoot are the merkle proofs
    function setProofs( bytes32 _OGRoot,bytes32 _WLRoot)
        public
        onlyOwner
    {
        OGRoot=_OGRoot;
        WLRoot=_WLRoot;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"},{"internalType":"bytes32","name":"_OGRoot","type":"bytes32"},{"internalType":"bytes32","name":"_WLRoot","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"OGMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"OGMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"PublicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"WLMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"WLMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"getTokensMintedPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"isWalletOG","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"isWalletWL","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxOGFreePerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicFreePerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWLFreePerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paidMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseOG","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pausePublicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseWL","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxMintAmountPerWallet","type":"uint8"}],"name":"setMaxMintAmountPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxOGFreePerWallet","type":"uint8"}],"name":"setMaxOGFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxPublicFreePerWallet","type":"uint8"}],"name":"setMaxPublicFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxWLFreePerWallet","type":"uint8"}],"name":"setMaxWLFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_pauseOG","type":"bool"}],"name":"setPauseOG","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_pausePublicSale","type":"bool"}],"name":"setPausePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_pauseWL","type":"bool"}],"name":"setPauseWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_OGRoot","type":"bytes32"},{"internalType":"bytes32","name":"_WLRoot","type":"bytes32"}],"name":"setProofs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_totalOGLimit","type":"uint256"},{"internalType":"uint256","name":"_totalWLLimit","type":"uint256"},{"internalType":"uint256","name":"_totalPublicFreeLimit","type":"uint256"},{"internalType":"uint256","name":"_totalPaidLimit","type":"uint256"}],"name":"setTotalLimitsOfMint","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":"totalOGLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPaidLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPublicFreeLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalWLLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526000600860146101000a81548160ff0219169083151502179055506000600860156101000a81548160ff0219169083151502179055506001600860166101000a81548160ff0219169083151502179055506001600860176101000a81548160ff0219169083151502179055506001600860186101000a81548160ff0219169083151502179055506005600860196101000a81548160ff021916908360ff16021790555060026008601a6101000a81548160ff021916908360ff16021790555060016008601b6101000a81548160ff021916908360ff16021790555060016008601c6101000a81548160ff021916908360ff1602179055506611c37937e08000600955610780600a556000600b556000600c556000600d556000600e5561012c600f556101f460105560646011556103e86012556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250601490805190602001906200018492919062000913565b503480156200019257600080fd5b5060405162005ad038038062005ad08339818101604052810190620001b8919062000aa1565b85858160029080519060200190620001d292919062000913565b508060039080519060200190620001eb92919062000913565b50620001fc6200027360201b60201c565b600081905550505062000224620002186200027860201b60201c565b6200028060201b60201c565b62000235846200034660201b60201c565b62000246836200037260201b60201c565b8160178190555080601881905550620002673360146200039e60201b60201c565b50505050505062000f3b565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000356620003c460201b60201c565b80601390805190602001906200036e92919062000913565b5050565b62000382620003c460201b60201c565b80601590805190602001906200039a92919062000913565b5050565b620003c08282604051806020016040528060008152506200045560201b60201c565b5050565b620003d46200027860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003fa6200050660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000453576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200044a9062000c97565b60405180910390fd5b565b6200046783836200053060201b60201c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146200050157600080549050600083820390505b620004b060008683806001019450866200071960201b60201c565b620004e7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811062000495578160005414620004fe57600080fd5b50505b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080549050600082141562000572576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200058760008483856200088b60201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506200061683620005f860008660006200089160201b60201c565b6200060985620008c160201b60201c565b17620008d160201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114620006b957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506200067c565b506000821415620006f6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050620007146000848385620008fc60201b60201c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620007476200090260201b60201c565b8786866040518563ffffffff1660e01b81526004016200076b949392919062000c43565b602060405180830381600087803b1580156200078657600080fd5b505af1925050508015620007ba57506040513d601f19601f82011682018060405250810190620007b7919062000a6f565b60015b62000838573d8060008114620007ed576040519150601f19603f3d011682016040523d82523d6000602084013e620007f2565b606091505b5060008151141562000830576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b60008060e883901c905060e8620008b08686846200090a60201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60009392505050565b828054620009219062000def565b90600052602060002090601f01602090048101928262000945576000855562000991565b82601f106200096057805160ff191683800117855562000991565b8280016001018555821562000991579182015b828111156200099057825182559160200191906001019062000973565b5b509050620009a09190620009a4565b5090565b5b80821115620009bf576000816000905550600101620009a5565b5090565b6000620009da620009d48462000ce2565b62000cb9565b905082815260208101848484011115620009f957620009f862000ebe565b5b62000a0684828562000db9565b509392505050565b60008151905062000a1f8162000f07565b92915050565b60008151905062000a368162000f21565b92915050565b600082601f83011262000a545762000a5362000eb9565b5b815162000a66848260208601620009c3565b91505092915050565b60006020828403121562000a885762000a8762000ec8565b5b600062000a988482850162000a25565b91505092915050565b60008060008060008060c0878903121562000ac15762000ac062000ec8565b5b600087015167ffffffffffffffff81111562000ae25762000ae162000ec3565b5b62000af089828a0162000a3c565b965050602087015167ffffffffffffffff81111562000b145762000b1362000ec3565b5b62000b2289828a0162000a3c565b955050604087015167ffffffffffffffff81111562000b465762000b4562000ec3565b5b62000b5489828a0162000a3c565b945050606087015167ffffffffffffffff81111562000b785762000b7762000ec3565b5b62000b8689828a0162000a3c565b935050608062000b9989828a0162000a0e565b92505060a062000bac89828a0162000a0e565b9150509295509295509295565b62000bc48162000d45565b82525050565b600062000bd78262000d18565b62000be3818562000d23565b935062000bf581856020860162000db9565b62000c008162000ecd565b840191505092915050565b600062000c1a60208362000d34565b915062000c278262000ede565b602082019050919050565b62000c3d8162000daf565b82525050565b600060808201905062000c5a600083018762000bb9565b62000c69602083018662000bb9565b62000c78604083018562000c32565b818103606083015262000c8c818462000bca565b905095945050505050565b6000602082019050818103600083015262000cb28162000c0b565b9050919050565b600062000cc562000cd8565b905062000cd3828262000e25565b919050565b6000604051905090565b600067ffffffffffffffff82111562000d005762000cff62000e8a565b5b62000d0b8262000ecd565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000d528262000d8f565b9050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000dd957808201518184015260208101905062000dbc565b8381111562000de9576000848401525b50505050565b6000600282049050600182168062000e0857607f821691505b6020821081141562000e1f5762000e1e62000e5b565b5b50919050565b62000e308262000ecd565b810181811067ffffffffffffffff8211171562000e525762000e5162000e8a565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b62000f128162000d59565b811462000f1e57600080fd5b50565b62000f2c8162000d63565b811462000f3857600080fd5b50565b614b858062000f4b6000396000f3fe6080604052600436106103975760003560e01c806355f804b3116101dc578063a475b5dd11610102578063cca6aae2116100a0578063e26274831161006f578063e262748314610cc6578063e985e9c514610cef578063f2c4ce1e14610d2c578063f2fde38b14610d5557610397565b8063cca6aae214610c2b578063d00631bc14610c47578063d5abeb0114610c72578063da3ef23f14610c9d57610397565b8063bc951b91116100dc578063bc951b9114610b6f578063bedb86fb14610b9a578063c668286214610bc3578063c87b56dd14610bee57610397565b8063a475b5dd14610b20578063b88d4fde14610b37578063bb462de114610b5357610397565b80638692a6b51161017a578063952bd5da11610149578063952bd5da14610a7857806395d89b4114610aa15780639c960b3b14610acc578063a22cb46514610af757610397565b80638692a6b5146109be578063887467d3146109e75780638da5cb5b14610a24578063939f769b14610a4f57610397565b80636383269a116101b65780636383269a1461091657806370a0823114610941578063715018a61461097e5780637b35fb4a1461099557610397565b806355f804b3146108855780635c975abb146108ae5780636352211e146108d957610397565b806328b60d15116102c15780633ccfd60b1161025f578063483209921161022e57806348320992146107c75780634c4a0054146107f2578063511899d61461082f578063518302271461085a57610397565b80633ccfd60b1461074d57806341842b441461075757806342842e0e1461078257806344a0d68a1461079e57610397565b806333f88d221161029b57806333f88d22146106a757806337c886ce146106d05780633a56af50146106f95780633a5bcda81461072257610397565b806328b60d15146106285780632959d3031461065157806333511cd21461067c57610397565b806314f499ba11610339578063237849de11610308578063237849de1461059a57806323b872dd146105c557806323ff9846146105e15780632806b8fb146105fd57610397565b806314f499ba146104de578063157be9b11461050757806318160ddd14610532578063198f4b241461055d57610397565b8063095ea7b311610375578063095ea7b3146104415780630a6a4d191461045d5780630c41f4971461048857806313faede6146104b357610397565b806301ffc9a71461039c57806306fdde03146103d9578063081812fc14610404575b600080fd5b3480156103a857600080fd5b506103c360048036038101906103be9190613a87565b610d7e565b6040516103d09190614072565b60405180910390f35b3480156103e557600080fd5b506103ee610e10565b6040516103fb919061408d565b60405180910390f35b34801561041057600080fd5b5061042b60048036038101906104269190613b2a565b610ea2565b604051610438919061400b565b60405180910390f35b61045b600480360381019061045691906139da565b610f21565b005b34801561046957600080fd5b50610472611065565b60405161047f919061426a565b60405180910390f35b34801561049457600080fd5b5061049d611078565b6040516104aa9190614072565b60405180910390f35b3480156104bf57600080fd5b506104c861108b565b6040516104d5919061424f565b60405180910390f35b3480156104ea57600080fd5b5061050560048036038101906105009190613a47565b611091565b005b34801561051357600080fd5b5061051c6110ab565b604051610529919061424f565b60405180910390f35b34801561053e57600080fd5b506105476110b1565b604051610554919061424f565b60405180910390f35b34801561056957600080fd5b50610584600480360381019061057f919061393a565b6110c8565b6040516105919190614072565b60405180910390f35b3480156105a657600080fd5b506105af61114c565b6040516105bc9190614072565b60405180910390f35b6105df60048036038101906105da9190613864565b61115f565b005b6105fb60048036038101906105f69190613bbe565b611484565b005b34801561060957600080fd5b506106126116a7565b60405161061f919061424f565b60405180910390f35b34801561063457600080fd5b5061064f600480360381019061064a9190613bbe565b6116ad565b005b34801561065d57600080fd5b506106666116d3565b604051610673919061424f565b60405180910390f35b34801561068857600080fd5b506106916116d9565b60405161069e919061424f565b60405180910390f35b3480156106b357600080fd5b506106ce60048036038101906106c99190613b2a565b6116df565b005b3480156106dc57600080fd5b506106f760048036038101906106f29190613a1a565b6116f4565b005b34801561070557600080fd5b50610720600480360381019061071b9190613bbe565b611719565b005b34801561072e57600080fd5b5061073761173f565b604051610744919061426a565b60405180910390f35b610755611752565b005b34801561076357600080fd5b5061076c6117da565b604051610779919061424f565b60405180910390f35b61079c60048036038101906107979190613864565b6117e0565b005b3480156107aa57600080fd5b506107c560048036038101906107c09190613b2a565b611800565b005b3480156107d357600080fd5b506107dc611812565b6040516107e9919061424f565b60405180910390f35b3480156107fe57600080fd5b50610819600480360381019061081491906137f7565b611818565b604051610826919061426a565b60405180910390f35b34801561083b57600080fd5b5061084461186e565b604051610851919061424f565b60405180910390f35b34801561086657600080fd5b5061086f611874565b60405161087c9190614072565b60405180910390f35b34801561089157600080fd5b506108ac60048036038101906108a79190613ae1565b611887565b005b3480156108ba57600080fd5b506108c36118a9565b6040516108d09190614072565b60405180910390f35b3480156108e557600080fd5b5061090060048036038101906108fb9190613b2a565b6118bc565b60405161090d919061400b565b60405180910390f35b34801561092257600080fd5b5061092b6118ce565b604051610938919061426a565b60405180910390f35b34801561094d57600080fd5b50610968600480360381019061096391906137f7565b6118e1565b604051610975919061424f565b60405180910390f35b34801561098a57600080fd5b5061099361199a565b005b3480156109a157600080fd5b506109bc60048036038101906109b79190613bbe565b6119ae565b005b3480156109ca57600080fd5b506109e560048036038101906109e09190613b57565b6119d4565b005b3480156109f357600080fd5b50610a0e6004803603810190610a09919061393a565b6119fe565b604051610a1b9190614072565b60405180910390f35b348015610a3057600080fd5b50610a39611a82565b604051610a46919061400b565b60405180910390f35b348015610a5b57600080fd5b50610a766004803603810190610a719190613a1a565b611aac565b005b348015610a8457600080fd5b50610a9f6004803603810190610a9a9190613bbe565b611ad1565b005b348015610aad57600080fd5b50610ab6611af7565b604051610ac3919061408d565b60405180910390f35b348015610ad857600080fd5b50610ae1611b89565b604051610aee9190614072565b60405180910390f35b348015610b0357600080fd5b50610b1e6004803603810190610b19919061399a565b611b9c565b005b348015610b2c57600080fd5b50610b35611ca7565b005b610b516004803603810190610b4c91906138b7565b611ccc565b005b610b6d6004803603810190610b689190613beb565b611d3f565b005b348015610b7b57600080fd5b50610b84611fae565b604051610b91919061426a565b60405180910390f35b348015610ba657600080fd5b50610bc16004803603810190610bbc9190613a1a565b611fc1565b005b348015610bcf57600080fd5b50610bd8611fe6565b604051610be5919061408d565b60405180910390f35b348015610bfa57600080fd5b50610c156004803603810190610c109190613b2a565b612074565b604051610c22919061408d565b60405180910390f35b610c456004803603810190610c409190613beb565b6121d0565b005b348015610c5357600080fd5b50610c5c61243f565b604051610c69919061424f565b60405180910390f35b348015610c7e57600080fd5b50610c87612445565b604051610c94919061424f565b60405180910390f35b348015610ca957600080fd5b50610cc46004803603810190610cbf9190613ae1565b61244b565b005b348015610cd257600080fd5b50610ced6004803603810190610ce89190613a1a565b61246d565b005b348015610cfb57600080fd5b50610d166004803603810190610d119190613824565b612492565b604051610d239190614072565b60405180910390f35b348015610d3857600080fd5b50610d536004803603810190610d4e9190613ae1565b612526565b005b348015610d6157600080fd5b50610d7c6004803603810190610d7791906137f7565b612548565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610dd957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e095750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610e1f90614557565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4b90614557565b8015610e985780601f10610e6d57610100808354040283529160200191610e98565b820191906000526020600020905b815481529060010190602001808311610e7b57829003601f168201915b5050505050905090565b6000610ead826125cc565b610ee3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f2c826118bc565b90508073ffffffffffffffffffffffffffffffffffffffff16610f4d61262b565b73ffffffffffffffffffffffffffffffffffffffff1614610fb057610f7981610f7461262b565b612492565b610faf576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6008601c9054906101000a900460ff1681565b600860189054906101000a900460ff1681565b60095481565b611099612633565b81601781905550806018819055505050565b600c5481565b60006110bb6126b1565b6001546000540303905090565b600080846040516020016110dc9190613faa565b604051602081830303815290604052805190602001209050611142848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601754836126b6565b9150509392505050565b600860169054906101000a900460ff1681565b600061116a826126cd565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111d1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806111dd8461279b565b915091506111f381876111ee61262b565b6127c2565b61123f576112088661120361262b565b612492565b61123e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156112a6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6112b38686866001612806565b80156112be57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061138c8561136888888761280c565b7c020000000000000000000000000000000000000000000000000000000017612834565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611414576000600185019050600060046000838152602001908152602001600020541415611412576000548114611411578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461147c868686600161285f565b505050505050565b80600860149054906101000a900460ff16156114d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cc906141ef565b60405180910390fd5b60008160ff161161151b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115129061420f565b60405180910390fd5b600a548160ff1661152a6110b1565b611534919061436f565b1115611575576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156c9061410f565b60405180910390fd5b600860199054906101000a900460ff1660ff16601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16826115e091906143c5565b60ff161115611624576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161b9061416f565b60405180910390fd5b600860189054906101000a900460ff1615611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166b9061412f565b60405180910390fd5b60006116936008601c9054906101000a900460ff1660ff166002612865565b90506116a28334836002612a4a565b505050565b600e5481565b6116b5612633565b80600860196101000a81548160ff021916908360ff16021790555050565b60105481565b600d5481565b6116e7612633565b6116f13382612d77565b50565b6116fc612633565b80600860186101000a81548160ff02191690831515021790555050565b611721612633565b806008601b6101000a81548160ff021916908360ff16021790555050565b6008601a9054906101000a900460ff1681565b61175a612633565b6000611764611a82565b73ffffffffffffffffffffffffffffffffffffffff164760405161178790613ff6565b60006040518083038185875af1925050503d80600081146117c4576040519150601f19603f3d011682016040523d82523d6000602084013e6117c9565b606091505b50509050806117d757600080fd5b50565b60125481565b6117fb83838360405180602001604052806000815250611ccc565b505050565b611808612633565b8060098190555050565b600b5481565b6000601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60115481565b600860159054906101000a900460ff1681565b61188f612633565b80601390805190602001906118a592919061358b565b5050565b600860149054906101000a900460ff1681565b60006118c7826126cd565b9050919050565b6008601b9054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611949576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6119a2612633565b6119ac6000612d95565b565b6119b6612633565b806008601c6101000a81548160ff021916908360ff16021790555050565b6119dc612633565b83600f8190555082601081905550816011819055508060128190555050505050565b60008084604051602001611a129190613faa565b604051602081830303815290604052805190602001209050611a78848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601854836126b6565b9150509392505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611ab4612633565b80600860166101000a81548160ff02191690831515021790555050565b611ad9612633565b806008601a6101000a81548160ff021916908360ff16021790555050565b606060038054611b0690614557565b80601f0160208091040260200160405190810160405280929190818152602001828054611b3290614557565b8015611b7f5780601f10611b5457610100808354040283529160200191611b7f565b820191906000526020600020905b815481529060010190602001808311611b6257829003601f168201915b5050505050905090565b600860179054906101000a900460ff1681565b8060076000611ba961262b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c5661262b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c9b9190614072565b60405180910390a35050565b611caf612633565b6001600860156101000a81548160ff021916908315150217905550565b611cd784848461115f565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d3957611d0284848484612e5b565b611d38576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b82600860149054906101000a900460ff1615611d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d87906141ef565b60405180910390fd5b60008160ff1611611dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcd9061420f565b60405180910390fd5b600a548160ff16611de56110b1565b611def919061436f565b1115611e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e279061410f565b60405180910390fd5b600860199054906101000a900460ff1660ff16601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1682611e9b91906143c5565b60ff161115611edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed69061416f565b60405180910390fd5b600860169054906101000a900460ff1615611f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f26906141cf565b60405180910390fd5b611f3a3384846110c8565b611f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f709061422f565b60405180910390fd5b6000611f986008601a9054906101000a900460ff1660ff166000612865565b9050611fa78534836000612a4a565b5050505050565b600860199054906101000a900460ff1681565b611fc9612633565b80600860146101000a81548160ff02191690831515021790555050565b60148054611ff390614557565b80601f016020809104026020016040519081016040528092919081815260200182805461201f90614557565b801561206c5780601f106120415761010080835404028352916020019161206c565b820191906000526020600020905b81548152906001019060200180831161204f57829003601f168201915b505050505081565b606061207f826125cc565b6120be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b5906141af565b60405180910390fd5b60001515600860159054906101000a900460ff161515141561216c57601580546120e790614557565b80601f016020809104026020016040519081016040528092919081815260200182805461211390614557565b80156121605780601f1061213557610100808354040283529160200191612160565b820191906000526020600020905b81548152906001019060200180831161214357829003601f168201915b505050505090506121cb565b6000612176612fbb565b90506000815111156121b7578061218c8461304d565b60146040516020016121a093929190613fc5565b6040516020818303038152906040529150506121cb565b604051806020016040528060008152509150505b919050565b82600860149054906101000a900460ff1615612221576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612218906141ef565b60405180910390fd5b60008160ff1611612267576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225e9061420f565b60405180910390fd5b600a548160ff166122766110b1565b612280919061436f565b11156122c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b89061410f565b60405180910390fd5b600860199054906101000a900460ff1660ff16601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168261232c91906143c5565b60ff161115612370576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123679061416f565b60405180910390fd5b600860179054906101000a900460ff16156123c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b79061414f565b60405180910390fd5b6123cb3384846119fe565b61240a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124019061422f565b60405180910390fd5b60006124296008601b9054906101000a900460ff1660ff166001612865565b90506124388534836001612a4a565b5050505050565b600f5481565b600a5481565b612453612633565b806014908051906020019061246992919061358b565b5050565b612475612633565b80600860176101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61252e612633565b806015908051906020019061254492919061358b565b5050565b612550612633565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b7906140ef565b60405180910390fd5b6125c981612d95565b50565b6000816125d76126b1565b111580156125e6575060005482105b8015612624575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b61263b613125565b73ffffffffffffffffffffffffffffffffffffffff16612659611a82565b73ffffffffffffffffffffffffffffffffffffffff16146126af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a69061418f565b60405180910390fd5b565b600090565b6000826126c3858461312d565b1490509392505050565b600080829050806126dc6126b1565b11612764576000548110156127635760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612761575b600081141561275757600460008360019003935083815260200190815260200160002054905061272c565b8092505050612796565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612823868684613183565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600080601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff16905080841115612a3e57600081856128d09190614456565b9050600060028111156128e6576128e5614685565b5b8460028111156128f9576128f8614685565b5b1480156129095750600f54600b54105b1561294857600b54600f5461291e9190614456565b81101561292f578092505050612a44565b600b54600f5461293f9190614456565b92505050612a44565b6001600281111561295c5761295b614685565b5b84600281111561296f5761296e614685565b5b14801561297f5750601054600c54105b156129be57600c546010546129949190614456565b8110156129a5578092505050612a44565b600c546010546129b59190614456565b92505050612a44565b6002808111156129d1576129d0614685565b5b8460028111156129e4576129e3614685565b5b1480156129f45750601154600d54105b15612a3357600d54601154612a099190614456565b811015612a1a578092505050612a44565b600d54601154612a2a9190614456565b92505050612a44565b600092505050612a44565b60009150505b92915050565b818460ff1611612b845760006002811115612a6857612a67614685565b5b816002811115612a7b57612a7a614685565b5b1415612a9d578360ff16600b54612a92919061436f565b600b81905550612aff565b60016002811115612ab157612ab0614685565b5b816002811115612ac457612ac3614685565b5b1415612ae6578360ff16600c54612adb919061436f565b600c81905550612afe565b8360ff16600d54612af7919061436f565b600d819055505b5b612b0c338560ff16612d77565b83601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff16612b6791906143c5565b92506101000a81548160ff021916908360ff160217905550612d71565b60006002811115612b9857612b97614685565b5b816002811115612bab57612baa614685565b5b1415612bca5781600b54612bbf919061436f565b600b81905550612c26565b60016002811115612bde57612bdd614685565b5b816002811115612bf157612bf0614685565b5b1415612c105781600c54612c05919061436f565b600c81905550612c25565b81600d54612c1e919061436f565b600d819055505b5b6000828560ff16612c379190614456565b905060095481612c4791906143fc565b841015612c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c80906140af565b60405180910390fd5b60125481600e54612c9a919061436f565b1115612cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd2906140cf565b60405180910390fd5b612ce8338660ff16612d77565b84601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff16612d4391906143c5565b92506101000a81548160ff021916908360ff16021790555080600e54612d69919061436f565b600e81905550505b50505050565b612d9182826040518060200160405280600081525061318c565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e8161262b565b8786866040518563ffffffff1660e01b8152600401612ea39493929190614026565b602060405180830381600087803b158015612ebd57600080fd5b505af1925050508015612eee57506040513d601f19601f82011682018060405250810190612eeb9190613ab4565b60015b612f68573d8060008114612f1e576040519150601f19603f3d011682016040523d82523d6000602084013e612f23565b606091505b50600081511415612f60576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060138054612fca90614557565b80601f0160208091040260200160405190810160405280929190818152602001828054612ff690614557565b80156130435780601f1061301857610100808354040283529160200191613043565b820191906000526020600020905b81548152906001019060200180831161302657829003601f168201915b5050505050905090565b60606000600161305c84613229565b01905060008167ffffffffffffffff81111561307b5761307a614712565b5b6040519080825280601f01601f1916602001820160405280156130ad5781602001600182028036833780820191505090505b509050600082602001820190505b60011561311a578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161310457613103614656565b5b04945060008514156131155761311a565b6130bb565b819350505050919050565b600033905090565b60008082905060005b84518110156131785761316382868381518110613156576131556146e3565b5b602002602001015161337c565b91508080613170906145ba565b915050613136565b508091505092915050565b60009392505050565b61319683836133a7565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461322457600080549050600083820390505b6131d66000868380600101945086612e5b565b61320c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106131c357816000541461322157600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310613287577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161327d5761327c614656565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106132c4576d04ee2d6d415b85acef810000000083816132ba576132b9614656565b5b0492506020810190505b662386f26fc1000083106132f357662386f26fc1000083816132e9576132e8614656565b5b0492506010810190505b6305f5e100831061331c576305f5e100838161331257613311614656565b5b0492506008810190505b612710831061334157612710838161333757613336614656565b5b0492506004810190505b60648310613364576064838161335a57613359614656565b5b0492506002810190505b600a8310613373576001810190505b80915050919050565b60008183106133945761338f8284613564565b61339f565b61339e8383613564565b5b905092915050565b60008054905060008214156133e8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6133f56000848385612806565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061346c8361345d600086600061280c565b6134668561357b565b17612834565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461350d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506134d2565b506000821415613549576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061355f600084838561285f565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b82805461359790614557565b90600052602060002090601f0160209004810192826135b95760008555613600565b82601f106135d257805160ff1916838001178555613600565b82800160010185558215613600579182015b828111156135ff5782518255916020019190600101906135e4565b5b50905061360d9190613611565b5090565b5b8082111561362a576000816000905550600101613612565b5090565b600061364161363c846142aa565b614285565b90508281526020810184848401111561365d5761365c614750565b5b613668848285614515565b509392505050565b600061368361367e846142db565b614285565b90508281526020810184848401111561369f5761369e614750565b5b6136aa848285614515565b509392505050565b6000813590506136c181614ac5565b92915050565b60008083601f8401126136dd576136dc614746565b5b8235905067ffffffffffffffff8111156136fa576136f9614741565b5b6020830191508360208202830111156137165761371561474b565b5b9250929050565b60008135905061372c81614adc565b92915050565b60008135905061374181614af3565b92915050565b60008135905061375681614b0a565b92915050565b60008151905061376b81614b0a565b92915050565b600082601f83011261378657613785614746565b5b813561379684826020860161362e565b91505092915050565b600082601f8301126137b4576137b3614746565b5b81356137c4848260208601613670565b91505092915050565b6000813590506137dc81614b21565b92915050565b6000813590506137f181614b38565b92915050565b60006020828403121561380d5761380c61475a565b5b600061381b848285016136b2565b91505092915050565b6000806040838503121561383b5761383a61475a565b5b6000613849858286016136b2565b925050602061385a858286016136b2565b9150509250929050565b60008060006060848603121561387d5761387c61475a565b5b600061388b868287016136b2565b935050602061389c868287016136b2565b92505060406138ad868287016137cd565b9150509250925092565b600080600080608085870312156138d1576138d061475a565b5b60006138df878288016136b2565b94505060206138f0878288016136b2565b9350506040613901878288016137cd565b925050606085013567ffffffffffffffff81111561392257613921614755565b5b61392e87828801613771565b91505092959194509250565b6000806000604084860312156139535761395261475a565b5b6000613961868287016136b2565b935050602084013567ffffffffffffffff81111561398257613981614755565b5b61398e868287016136c7565b92509250509250925092565b600080604083850312156139b1576139b061475a565b5b60006139bf858286016136b2565b92505060206139d08582860161371d565b9150509250929050565b600080604083850312156139f1576139f061475a565b5b60006139ff858286016136b2565b9250506020613a10858286016137cd565b9150509250929050565b600060208284031215613a3057613a2f61475a565b5b6000613a3e8482850161371d565b91505092915050565b60008060408385031215613a5e57613a5d61475a565b5b6000613a6c85828601613732565b9250506020613a7d85828601613732565b9150509250929050565b600060208284031215613a9d57613a9c61475a565b5b6000613aab84828501613747565b91505092915050565b600060208284031215613aca57613ac961475a565b5b6000613ad88482850161375c565b91505092915050565b600060208284031215613af757613af661475a565b5b600082013567ffffffffffffffff811115613b1557613b14614755565b5b613b218482850161379f565b91505092915050565b600060208284031215613b4057613b3f61475a565b5b6000613b4e848285016137cd565b91505092915050565b60008060008060808587031215613b7157613b7061475a565b5b6000613b7f878288016137cd565b9450506020613b90878288016137cd565b9350506040613ba1878288016137cd565b9250506060613bb2878288016137cd565b91505092959194509250565b600060208284031215613bd457613bd361475a565b5b6000613be2848285016137e2565b91505092915050565b600080600060408486031215613c0457613c0361475a565b5b6000613c12868287016137e2565b935050602084013567ffffffffffffffff811115613c3357613c32614755565b5b613c3f868287016136c7565b92509250509250925092565b613c548161448a565b82525050565b613c6b613c668261448a565b614603565b82525050565b613c7a8161449c565b82525050565b6000613c8b82614321565b613c958185614337565b9350613ca5818560208601614524565b613cae8161475f565b840191505092915050565b6000613cc48261432c565b613cce8185614353565b9350613cde818560208601614524565b613ce78161475f565b840191505092915050565b6000613cfd8261432c565b613d078185614364565b9350613d17818560208601614524565b80840191505092915050565b60008154613d3081614557565b613d3a8186614364565b94506001821660008114613d555760018114613d6657613d99565b60ff19831686528186019350613d99565b613d6f8561430c565b60005b83811015613d9157815481890152600182019150602081019050613d72565b838801955050505b50505092915050565b6000613daf601e83614353565b9150613dba8261477d565b602082019050919050565b6000613dd2601583614353565b9150613ddd826147a6565b602082019050919050565b6000613df5602683614353565b9150613e00826147cf565b604082019050919050565b6000613e18601e83614353565b9150613e238261481e565b602082019050919050565b6000613e3b602183614353565b9150613e4682614847565b604082019050919050565b6000613e5e602383614353565b9150613e6982614896565b604082019050919050565b6000613e81601b83614353565b9150613e8c826148e5565b602082019050919050565b6000613ea4602083614353565b9150613eaf8261490e565b602082019050919050565b6000613ec7602f83614353565b9150613ed282614937565b604082019050919050565b6000613eea602383614353565b9150613ef582614986565b604082019050919050565b6000613f0d601b83614353565b9150613f18826149d5565b602082019050919050565b6000613f30600083614348565b9150613f3b826149fe565b600082019050919050565b6000613f53602483614353565b9150613f5e82614a01565b604082019050919050565b6000613f76604b83614353565b9150613f8182614a50565b606082019050919050565b613f95816144fe565b82525050565b613fa481614508565b82525050565b6000613fb68284613c5a565b60148201915081905092915050565b6000613fd18286613cf2565b9150613fdd8285613cf2565b9150613fe98284613d23565b9150819050949350505050565b600061400182613f23565b9150819050919050565b60006020820190506140206000830184613c4b565b92915050565b600060808201905061403b6000830187613c4b565b6140486020830186613c4b565b6140556040830185613f8c565b81810360608301526140678184613c80565b905095945050505050565b60006020820190506140876000830184613c71565b92915050565b600060208201905081810360008301526140a78184613cb9565b905092915050565b600060208201905081810360008301526140c881613da2565b9050919050565b600060208201905081810360008301526140e881613dc5565b9050919050565b6000602082019050818103600083015261410881613de8565b9050919050565b6000602082019050818103600083015261412881613e0b565b9050919050565b6000602082019050818103600083015261414881613e2e565b9050919050565b6000602082019050818103600083015261416881613e51565b9050919050565b6000602082019050818103600083015261418881613e74565b9050919050565b600060208201905081810360008301526141a881613e97565b9050919050565b600060208201905081810360008301526141c881613eba565b9050919050565b600060208201905081810360008301526141e881613edd565b9050919050565b6000602082019050818103600083015261420881613f00565b9050919050565b6000602082019050818103600083015261422881613f46565b9050919050565b6000602082019050818103600083015261424881613f69565b9050919050565b60006020820190506142646000830184613f8c565b92915050565b600060208201905061427f6000830184613f9b565b92915050565b600061428f6142a0565b905061429b8282614589565b919050565b6000604051905090565b600067ffffffffffffffff8211156142c5576142c4614712565b5b6142ce8261475f565b9050602081019050919050565b600067ffffffffffffffff8211156142f6576142f5614712565b5b6142ff8261475f565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061437a826144fe565b9150614385836144fe565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143ba576143b9614627565b5b828201905092915050565b60006143d082614508565b91506143db83614508565b92508260ff038211156143f1576143f0614627565b5b828201905092915050565b6000614407826144fe565b9150614412836144fe565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561444b5761444a614627565b5b828202905092915050565b6000614461826144fe565b915061446c836144fe565b92508282101561447f5761447e614627565b5b828203905092915050565b6000614495826144de565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614542578082015181840152602081019050614527565b83811115614551576000848401525b50505050565b6000600282049050600182168061456f57607f821691505b60208210811415614583576145826146b4565b5b50919050565b6145928261475f565b810181811067ffffffffffffffff821117156145b1576145b0614712565b5b80604052505050565b60006145c5826144fe565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145f8576145f7614627565b5b600182019050919050565b600061460e82614615565b9050919050565b600061462082614770565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f496e7375666669656369656e742066756e6473207472616e7366657265640000600082015250565b7f70616964206c696d697420697320657863656465640000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e7375666669656369656e7420746f6b656e7320617661696c61626c650000600082015250565b7f5075626c69632073616c652069732063757272656e746c7920696e616374697660008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f5072652073616c6520574c206973206e6f74206163746976652063757272656e60008201527f746c790000000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206c6d6974206f6620746f6b656e732065786365656465640000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5072652073616c65204f47206973206e6f74206163746976652063757272656e60008201527f746c790000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74696e672069732063757272656e746c79207061757365640000000000600082015250565b50565b7f4d696e7420616d6f756e742073686f756c64206265206772656174657220746860008201527f616e203000000000000000000000000000000000000000000000000000000000602082015250565b7f54686973204164726573736573206973206e6f742077686974656c697374656460008201527f2c20596f752063616e204d696e74204d61657374726f2773204d697820696e2060208201527f5075626c69632053616c65000000000000000000000000000000000000000000604082015250565b614ace8161448a565b8114614ad957600080fd5b50565b614ae58161449c565b8114614af057600080fd5b50565b614afc816144a8565b8114614b0757600080fd5b50565b614b13816144b2565b8114614b1e57600080fd5b50565b614b2a816144fe565b8114614b3557600080fd5b50565b614b4181614508565b8114614b4c57600080fd5b5056fea264697066735822122036c8f2a826211312cb325a13e3a5b99798f46ba548a4a2ce98022d5529df4aa864736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001c0d537d4c10cc1320b9add2c192411ca530cfe9061c7c667f0de27e880de6f73be237da86c3c4acbda8b8bf35b1a05112dd3421b2734d7da466bfbdfdfca65fd89000000000000000000000000000000000000000000000000000000000000000c4d61657374726f73204d6978000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d4d414200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005968747470733a2f2f62616679626569666c7a36626635356962736361616d6d67636d6c6b6d63327175326e323464757a6b67716a346f69656171636a616f62707768652e697066732e6e667473746f726167652e6c696e6b2f00000000000000000000000000000000000000000000000000000000000000000000000000006968747470733a2f2f626166796265696665673362373776346c777463706f7a6a356b736e766d626572637132677577666a7074707a34776b73353637766e61706361652e697066732e6e667473746f726167652e6c696e6b2f756e72657665616c65642e6a736f6e2f0000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103975760003560e01c806355f804b3116101dc578063a475b5dd11610102578063cca6aae2116100a0578063e26274831161006f578063e262748314610cc6578063e985e9c514610cef578063f2c4ce1e14610d2c578063f2fde38b14610d5557610397565b8063cca6aae214610c2b578063d00631bc14610c47578063d5abeb0114610c72578063da3ef23f14610c9d57610397565b8063bc951b91116100dc578063bc951b9114610b6f578063bedb86fb14610b9a578063c668286214610bc3578063c87b56dd14610bee57610397565b8063a475b5dd14610b20578063b88d4fde14610b37578063bb462de114610b5357610397565b80638692a6b51161017a578063952bd5da11610149578063952bd5da14610a7857806395d89b4114610aa15780639c960b3b14610acc578063a22cb46514610af757610397565b80638692a6b5146109be578063887467d3146109e75780638da5cb5b14610a24578063939f769b14610a4f57610397565b80636383269a116101b65780636383269a1461091657806370a0823114610941578063715018a61461097e5780637b35fb4a1461099557610397565b806355f804b3146108855780635c975abb146108ae5780636352211e146108d957610397565b806328b60d15116102c15780633ccfd60b1161025f578063483209921161022e57806348320992146107c75780634c4a0054146107f2578063511899d61461082f578063518302271461085a57610397565b80633ccfd60b1461074d57806341842b441461075757806342842e0e1461078257806344a0d68a1461079e57610397565b806333f88d221161029b57806333f88d22146106a757806337c886ce146106d05780633a56af50146106f95780633a5bcda81461072257610397565b806328b60d15146106285780632959d3031461065157806333511cd21461067c57610397565b806314f499ba11610339578063237849de11610308578063237849de1461059a57806323b872dd146105c557806323ff9846146105e15780632806b8fb146105fd57610397565b806314f499ba146104de578063157be9b11461050757806318160ddd14610532578063198f4b241461055d57610397565b8063095ea7b311610375578063095ea7b3146104415780630a6a4d191461045d5780630c41f4971461048857806313faede6146104b357610397565b806301ffc9a71461039c57806306fdde03146103d9578063081812fc14610404575b600080fd5b3480156103a857600080fd5b506103c360048036038101906103be9190613a87565b610d7e565b6040516103d09190614072565b60405180910390f35b3480156103e557600080fd5b506103ee610e10565b6040516103fb919061408d565b60405180910390f35b34801561041057600080fd5b5061042b60048036038101906104269190613b2a565b610ea2565b604051610438919061400b565b60405180910390f35b61045b600480360381019061045691906139da565b610f21565b005b34801561046957600080fd5b50610472611065565b60405161047f919061426a565b60405180910390f35b34801561049457600080fd5b5061049d611078565b6040516104aa9190614072565b60405180910390f35b3480156104bf57600080fd5b506104c861108b565b6040516104d5919061424f565b60405180910390f35b3480156104ea57600080fd5b5061050560048036038101906105009190613a47565b611091565b005b34801561051357600080fd5b5061051c6110ab565b604051610529919061424f565b60405180910390f35b34801561053e57600080fd5b506105476110b1565b604051610554919061424f565b60405180910390f35b34801561056957600080fd5b50610584600480360381019061057f919061393a565b6110c8565b6040516105919190614072565b60405180910390f35b3480156105a657600080fd5b506105af61114c565b6040516105bc9190614072565b60405180910390f35b6105df60048036038101906105da9190613864565b61115f565b005b6105fb60048036038101906105f69190613bbe565b611484565b005b34801561060957600080fd5b506106126116a7565b60405161061f919061424f565b60405180910390f35b34801561063457600080fd5b5061064f600480360381019061064a9190613bbe565b6116ad565b005b34801561065d57600080fd5b506106666116d3565b604051610673919061424f565b60405180910390f35b34801561068857600080fd5b506106916116d9565b60405161069e919061424f565b60405180910390f35b3480156106b357600080fd5b506106ce60048036038101906106c99190613b2a565b6116df565b005b3480156106dc57600080fd5b506106f760048036038101906106f29190613a1a565b6116f4565b005b34801561070557600080fd5b50610720600480360381019061071b9190613bbe565b611719565b005b34801561072e57600080fd5b5061073761173f565b604051610744919061426a565b60405180910390f35b610755611752565b005b34801561076357600080fd5b5061076c6117da565b604051610779919061424f565b60405180910390f35b61079c60048036038101906107979190613864565b6117e0565b005b3480156107aa57600080fd5b506107c560048036038101906107c09190613b2a565b611800565b005b3480156107d357600080fd5b506107dc611812565b6040516107e9919061424f565b60405180910390f35b3480156107fe57600080fd5b50610819600480360381019061081491906137f7565b611818565b604051610826919061426a565b60405180910390f35b34801561083b57600080fd5b5061084461186e565b604051610851919061424f565b60405180910390f35b34801561086657600080fd5b5061086f611874565b60405161087c9190614072565b60405180910390f35b34801561089157600080fd5b506108ac60048036038101906108a79190613ae1565b611887565b005b3480156108ba57600080fd5b506108c36118a9565b6040516108d09190614072565b60405180910390f35b3480156108e557600080fd5b5061090060048036038101906108fb9190613b2a565b6118bc565b60405161090d919061400b565b60405180910390f35b34801561092257600080fd5b5061092b6118ce565b604051610938919061426a565b60405180910390f35b34801561094d57600080fd5b50610968600480360381019061096391906137f7565b6118e1565b604051610975919061424f565b60405180910390f35b34801561098a57600080fd5b5061099361199a565b005b3480156109a157600080fd5b506109bc60048036038101906109b79190613bbe565b6119ae565b005b3480156109ca57600080fd5b506109e560048036038101906109e09190613b57565b6119d4565b005b3480156109f357600080fd5b50610a0e6004803603810190610a09919061393a565b6119fe565b604051610a1b9190614072565b60405180910390f35b348015610a3057600080fd5b50610a39611a82565b604051610a46919061400b565b60405180910390f35b348015610a5b57600080fd5b50610a766004803603810190610a719190613a1a565b611aac565b005b348015610a8457600080fd5b50610a9f6004803603810190610a9a9190613bbe565b611ad1565b005b348015610aad57600080fd5b50610ab6611af7565b604051610ac3919061408d565b60405180910390f35b348015610ad857600080fd5b50610ae1611b89565b604051610aee9190614072565b60405180910390f35b348015610b0357600080fd5b50610b1e6004803603810190610b19919061399a565b611b9c565b005b348015610b2c57600080fd5b50610b35611ca7565b005b610b516004803603810190610b4c91906138b7565b611ccc565b005b610b6d6004803603810190610b689190613beb565b611d3f565b005b348015610b7b57600080fd5b50610b84611fae565b604051610b91919061426a565b60405180910390f35b348015610ba657600080fd5b50610bc16004803603810190610bbc9190613a1a565b611fc1565b005b348015610bcf57600080fd5b50610bd8611fe6565b604051610be5919061408d565b60405180910390f35b348015610bfa57600080fd5b50610c156004803603810190610c109190613b2a565b612074565b604051610c22919061408d565b60405180910390f35b610c456004803603810190610c409190613beb565b6121d0565b005b348015610c5357600080fd5b50610c5c61243f565b604051610c69919061424f565b60405180910390f35b348015610c7e57600080fd5b50610c87612445565b604051610c94919061424f565b60405180910390f35b348015610ca957600080fd5b50610cc46004803603810190610cbf9190613ae1565b61244b565b005b348015610cd257600080fd5b50610ced6004803603810190610ce89190613a1a565b61246d565b005b348015610cfb57600080fd5b50610d166004803603810190610d119190613824565b612492565b604051610d239190614072565b60405180910390f35b348015610d3857600080fd5b50610d536004803603810190610d4e9190613ae1565b612526565b005b348015610d6157600080fd5b50610d7c6004803603810190610d7791906137f7565b612548565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610dd957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e095750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610e1f90614557565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4b90614557565b8015610e985780601f10610e6d57610100808354040283529160200191610e98565b820191906000526020600020905b815481529060010190602001808311610e7b57829003601f168201915b5050505050905090565b6000610ead826125cc565b610ee3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f2c826118bc565b90508073ffffffffffffffffffffffffffffffffffffffff16610f4d61262b565b73ffffffffffffffffffffffffffffffffffffffff1614610fb057610f7981610f7461262b565b612492565b610faf576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6008601c9054906101000a900460ff1681565b600860189054906101000a900460ff1681565b60095481565b611099612633565b81601781905550806018819055505050565b600c5481565b60006110bb6126b1565b6001546000540303905090565b600080846040516020016110dc9190613faa565b604051602081830303815290604052805190602001209050611142848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601754836126b6565b9150509392505050565b600860169054906101000a900460ff1681565b600061116a826126cd565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111d1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806111dd8461279b565b915091506111f381876111ee61262b565b6127c2565b61123f576112088661120361262b565b612492565b61123e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156112a6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6112b38686866001612806565b80156112be57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061138c8561136888888761280c565b7c020000000000000000000000000000000000000000000000000000000017612834565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611414576000600185019050600060046000838152602001908152602001600020541415611412576000548114611411578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461147c868686600161285f565b505050505050565b80600860149054906101000a900460ff16156114d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cc906141ef565b60405180910390fd5b60008160ff161161151b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115129061420f565b60405180910390fd5b600a548160ff1661152a6110b1565b611534919061436f565b1115611575576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156c9061410f565b60405180910390fd5b600860199054906101000a900460ff1660ff16601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16826115e091906143c5565b60ff161115611624576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161b9061416f565b60405180910390fd5b600860189054906101000a900460ff1615611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166b9061412f565b60405180910390fd5b60006116936008601c9054906101000a900460ff1660ff166002612865565b90506116a28334836002612a4a565b505050565b600e5481565b6116b5612633565b80600860196101000a81548160ff021916908360ff16021790555050565b60105481565b600d5481565b6116e7612633565b6116f13382612d77565b50565b6116fc612633565b80600860186101000a81548160ff02191690831515021790555050565b611721612633565b806008601b6101000a81548160ff021916908360ff16021790555050565b6008601a9054906101000a900460ff1681565b61175a612633565b6000611764611a82565b73ffffffffffffffffffffffffffffffffffffffff164760405161178790613ff6565b60006040518083038185875af1925050503d80600081146117c4576040519150601f19603f3d011682016040523d82523d6000602084013e6117c9565b606091505b50509050806117d757600080fd5b50565b60125481565b6117fb83838360405180602001604052806000815250611ccc565b505050565b611808612633565b8060098190555050565b600b5481565b6000601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60115481565b600860159054906101000a900460ff1681565b61188f612633565b80601390805190602001906118a592919061358b565b5050565b600860149054906101000a900460ff1681565b60006118c7826126cd565b9050919050565b6008601b9054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611949576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6119a2612633565b6119ac6000612d95565b565b6119b6612633565b806008601c6101000a81548160ff021916908360ff16021790555050565b6119dc612633565b83600f8190555082601081905550816011819055508060128190555050505050565b60008084604051602001611a129190613faa565b604051602081830303815290604052805190602001209050611a78848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601854836126b6565b9150509392505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611ab4612633565b80600860166101000a81548160ff02191690831515021790555050565b611ad9612633565b806008601a6101000a81548160ff021916908360ff16021790555050565b606060038054611b0690614557565b80601f0160208091040260200160405190810160405280929190818152602001828054611b3290614557565b8015611b7f5780601f10611b5457610100808354040283529160200191611b7f565b820191906000526020600020905b815481529060010190602001808311611b6257829003601f168201915b5050505050905090565b600860179054906101000a900460ff1681565b8060076000611ba961262b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c5661262b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c9b9190614072565b60405180910390a35050565b611caf612633565b6001600860156101000a81548160ff021916908315150217905550565b611cd784848461115f565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d3957611d0284848484612e5b565b611d38576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b82600860149054906101000a900460ff1615611d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d87906141ef565b60405180910390fd5b60008160ff1611611dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcd9061420f565b60405180910390fd5b600a548160ff16611de56110b1565b611def919061436f565b1115611e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e279061410f565b60405180910390fd5b600860199054906101000a900460ff1660ff16601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1682611e9b91906143c5565b60ff161115611edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed69061416f565b60405180910390fd5b600860169054906101000a900460ff1615611f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f26906141cf565b60405180910390fd5b611f3a3384846110c8565b611f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f709061422f565b60405180910390fd5b6000611f986008601a9054906101000a900460ff1660ff166000612865565b9050611fa78534836000612a4a565b5050505050565b600860199054906101000a900460ff1681565b611fc9612633565b80600860146101000a81548160ff02191690831515021790555050565b60148054611ff390614557565b80601f016020809104026020016040519081016040528092919081815260200182805461201f90614557565b801561206c5780601f106120415761010080835404028352916020019161206c565b820191906000526020600020905b81548152906001019060200180831161204f57829003601f168201915b505050505081565b606061207f826125cc565b6120be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b5906141af565b60405180910390fd5b60001515600860159054906101000a900460ff161515141561216c57601580546120e790614557565b80601f016020809104026020016040519081016040528092919081815260200182805461211390614557565b80156121605780601f1061213557610100808354040283529160200191612160565b820191906000526020600020905b81548152906001019060200180831161214357829003601f168201915b505050505090506121cb565b6000612176612fbb565b90506000815111156121b7578061218c8461304d565b60146040516020016121a093929190613fc5565b6040516020818303038152906040529150506121cb565b604051806020016040528060008152509150505b919050565b82600860149054906101000a900460ff1615612221576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612218906141ef565b60405180910390fd5b60008160ff1611612267576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225e9061420f565b60405180910390fd5b600a548160ff166122766110b1565b612280919061436f565b11156122c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b89061410f565b60405180910390fd5b600860199054906101000a900460ff1660ff16601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168261232c91906143c5565b60ff161115612370576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123679061416f565b60405180910390fd5b600860179054906101000a900460ff16156123c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b79061414f565b60405180910390fd5b6123cb3384846119fe565b61240a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124019061422f565b60405180910390fd5b60006124296008601b9054906101000a900460ff1660ff166001612865565b90506124388534836001612a4a565b5050505050565b600f5481565b600a5481565b612453612633565b806014908051906020019061246992919061358b565b5050565b612475612633565b80600860176101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61252e612633565b806015908051906020019061254492919061358b565b5050565b612550612633565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b7906140ef565b60405180910390fd5b6125c981612d95565b50565b6000816125d76126b1565b111580156125e6575060005482105b8015612624575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b61263b613125565b73ffffffffffffffffffffffffffffffffffffffff16612659611a82565b73ffffffffffffffffffffffffffffffffffffffff16146126af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a69061418f565b60405180910390fd5b565b600090565b6000826126c3858461312d565b1490509392505050565b600080829050806126dc6126b1565b11612764576000548110156127635760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612761575b600081141561275757600460008360019003935083815260200190815260200160002054905061272c565b8092505050612796565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612823868684613183565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600080601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff16905080841115612a3e57600081856128d09190614456565b9050600060028111156128e6576128e5614685565b5b8460028111156128f9576128f8614685565b5b1480156129095750600f54600b54105b1561294857600b54600f5461291e9190614456565b81101561292f578092505050612a44565b600b54600f5461293f9190614456565b92505050612a44565b6001600281111561295c5761295b614685565b5b84600281111561296f5761296e614685565b5b14801561297f5750601054600c54105b156129be57600c546010546129949190614456565b8110156129a5578092505050612a44565b600c546010546129b59190614456565b92505050612a44565b6002808111156129d1576129d0614685565b5b8460028111156129e4576129e3614685565b5b1480156129f45750601154600d54105b15612a3357600d54601154612a099190614456565b811015612a1a578092505050612a44565b600d54601154612a2a9190614456565b92505050612a44565b600092505050612a44565b60009150505b92915050565b818460ff1611612b845760006002811115612a6857612a67614685565b5b816002811115612a7b57612a7a614685565b5b1415612a9d578360ff16600b54612a92919061436f565b600b81905550612aff565b60016002811115612ab157612ab0614685565b5b816002811115612ac457612ac3614685565b5b1415612ae6578360ff16600c54612adb919061436f565b600c81905550612afe565b8360ff16600d54612af7919061436f565b600d819055505b5b612b0c338560ff16612d77565b83601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff16612b6791906143c5565b92506101000a81548160ff021916908360ff160217905550612d71565b60006002811115612b9857612b97614685565b5b816002811115612bab57612baa614685565b5b1415612bca5781600b54612bbf919061436f565b600b81905550612c26565b60016002811115612bde57612bdd614685565b5b816002811115612bf157612bf0614685565b5b1415612c105781600c54612c05919061436f565b600c81905550612c25565b81600d54612c1e919061436f565b600d819055505b5b6000828560ff16612c379190614456565b905060095481612c4791906143fc565b841015612c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c80906140af565b60405180910390fd5b60125481600e54612c9a919061436f565b1115612cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd2906140cf565b60405180910390fd5b612ce8338660ff16612d77565b84601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff16612d4391906143c5565b92506101000a81548160ff021916908360ff16021790555080600e54612d69919061436f565b600e81905550505b50505050565b612d9182826040518060200160405280600081525061318c565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e8161262b565b8786866040518563ffffffff1660e01b8152600401612ea39493929190614026565b602060405180830381600087803b158015612ebd57600080fd5b505af1925050508015612eee57506040513d601f19601f82011682018060405250810190612eeb9190613ab4565b60015b612f68573d8060008114612f1e576040519150601f19603f3d011682016040523d82523d6000602084013e612f23565b606091505b50600081511415612f60576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060138054612fca90614557565b80601f0160208091040260200160405190810160405280929190818152602001828054612ff690614557565b80156130435780601f1061301857610100808354040283529160200191613043565b820191906000526020600020905b81548152906001019060200180831161302657829003601f168201915b5050505050905090565b60606000600161305c84613229565b01905060008167ffffffffffffffff81111561307b5761307a614712565b5b6040519080825280601f01601f1916602001820160405280156130ad5781602001600182028036833780820191505090505b509050600082602001820190505b60011561311a578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161310457613103614656565b5b04945060008514156131155761311a565b6130bb565b819350505050919050565b600033905090565b60008082905060005b84518110156131785761316382868381518110613156576131556146e3565b5b602002602001015161337c565b91508080613170906145ba565b915050613136565b508091505092915050565b60009392505050565b61319683836133a7565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461322457600080549050600083820390505b6131d66000868380600101945086612e5b565b61320c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106131c357816000541461322157600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310613287577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161327d5761327c614656565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106132c4576d04ee2d6d415b85acef810000000083816132ba576132b9614656565b5b0492506020810190505b662386f26fc1000083106132f357662386f26fc1000083816132e9576132e8614656565b5b0492506010810190505b6305f5e100831061331c576305f5e100838161331257613311614656565b5b0492506008810190505b612710831061334157612710838161333757613336614656565b5b0492506004810190505b60648310613364576064838161335a57613359614656565b5b0492506002810190505b600a8310613373576001810190505b80915050919050565b60008183106133945761338f8284613564565b61339f565b61339e8383613564565b5b905092915050565b60008054905060008214156133e8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6133f56000848385612806565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061346c8361345d600086600061280c565b6134668561357b565b17612834565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461350d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506134d2565b506000821415613549576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061355f600084838561285f565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b82805461359790614557565b90600052602060002090601f0160209004810192826135b95760008555613600565b82601f106135d257805160ff1916838001178555613600565b82800160010185558215613600579182015b828111156135ff5782518255916020019190600101906135e4565b5b50905061360d9190613611565b5090565b5b8082111561362a576000816000905550600101613612565b5090565b600061364161363c846142aa565b614285565b90508281526020810184848401111561365d5761365c614750565b5b613668848285614515565b509392505050565b600061368361367e846142db565b614285565b90508281526020810184848401111561369f5761369e614750565b5b6136aa848285614515565b509392505050565b6000813590506136c181614ac5565b92915050565b60008083601f8401126136dd576136dc614746565b5b8235905067ffffffffffffffff8111156136fa576136f9614741565b5b6020830191508360208202830111156137165761371561474b565b5b9250929050565b60008135905061372c81614adc565b92915050565b60008135905061374181614af3565b92915050565b60008135905061375681614b0a565b92915050565b60008151905061376b81614b0a565b92915050565b600082601f83011261378657613785614746565b5b813561379684826020860161362e565b91505092915050565b600082601f8301126137b4576137b3614746565b5b81356137c4848260208601613670565b91505092915050565b6000813590506137dc81614b21565b92915050565b6000813590506137f181614b38565b92915050565b60006020828403121561380d5761380c61475a565b5b600061381b848285016136b2565b91505092915050565b6000806040838503121561383b5761383a61475a565b5b6000613849858286016136b2565b925050602061385a858286016136b2565b9150509250929050565b60008060006060848603121561387d5761387c61475a565b5b600061388b868287016136b2565b935050602061389c868287016136b2565b92505060406138ad868287016137cd565b9150509250925092565b600080600080608085870312156138d1576138d061475a565b5b60006138df878288016136b2565b94505060206138f0878288016136b2565b9350506040613901878288016137cd565b925050606085013567ffffffffffffffff81111561392257613921614755565b5b61392e87828801613771565b91505092959194509250565b6000806000604084860312156139535761395261475a565b5b6000613961868287016136b2565b935050602084013567ffffffffffffffff81111561398257613981614755565b5b61398e868287016136c7565b92509250509250925092565b600080604083850312156139b1576139b061475a565b5b60006139bf858286016136b2565b92505060206139d08582860161371d565b9150509250929050565b600080604083850312156139f1576139f061475a565b5b60006139ff858286016136b2565b9250506020613a10858286016137cd565b9150509250929050565b600060208284031215613a3057613a2f61475a565b5b6000613a3e8482850161371d565b91505092915050565b60008060408385031215613a5e57613a5d61475a565b5b6000613a6c85828601613732565b9250506020613a7d85828601613732565b9150509250929050565b600060208284031215613a9d57613a9c61475a565b5b6000613aab84828501613747565b91505092915050565b600060208284031215613aca57613ac961475a565b5b6000613ad88482850161375c565b91505092915050565b600060208284031215613af757613af661475a565b5b600082013567ffffffffffffffff811115613b1557613b14614755565b5b613b218482850161379f565b91505092915050565b600060208284031215613b4057613b3f61475a565b5b6000613b4e848285016137cd565b91505092915050565b60008060008060808587031215613b7157613b7061475a565b5b6000613b7f878288016137cd565b9450506020613b90878288016137cd565b9350506040613ba1878288016137cd565b9250506060613bb2878288016137cd565b91505092959194509250565b600060208284031215613bd457613bd361475a565b5b6000613be2848285016137e2565b91505092915050565b600080600060408486031215613c0457613c0361475a565b5b6000613c12868287016137e2565b935050602084013567ffffffffffffffff811115613c3357613c32614755565b5b613c3f868287016136c7565b92509250509250925092565b613c548161448a565b82525050565b613c6b613c668261448a565b614603565b82525050565b613c7a8161449c565b82525050565b6000613c8b82614321565b613c958185614337565b9350613ca5818560208601614524565b613cae8161475f565b840191505092915050565b6000613cc48261432c565b613cce8185614353565b9350613cde818560208601614524565b613ce78161475f565b840191505092915050565b6000613cfd8261432c565b613d078185614364565b9350613d17818560208601614524565b80840191505092915050565b60008154613d3081614557565b613d3a8186614364565b94506001821660008114613d555760018114613d6657613d99565b60ff19831686528186019350613d99565b613d6f8561430c565b60005b83811015613d9157815481890152600182019150602081019050613d72565b838801955050505b50505092915050565b6000613daf601e83614353565b9150613dba8261477d565b602082019050919050565b6000613dd2601583614353565b9150613ddd826147a6565b602082019050919050565b6000613df5602683614353565b9150613e00826147cf565b604082019050919050565b6000613e18601e83614353565b9150613e238261481e565b602082019050919050565b6000613e3b602183614353565b9150613e4682614847565b604082019050919050565b6000613e5e602383614353565b9150613e6982614896565b604082019050919050565b6000613e81601b83614353565b9150613e8c826148e5565b602082019050919050565b6000613ea4602083614353565b9150613eaf8261490e565b602082019050919050565b6000613ec7602f83614353565b9150613ed282614937565b604082019050919050565b6000613eea602383614353565b9150613ef582614986565b604082019050919050565b6000613f0d601b83614353565b9150613f18826149d5565b602082019050919050565b6000613f30600083614348565b9150613f3b826149fe565b600082019050919050565b6000613f53602483614353565b9150613f5e82614a01565b604082019050919050565b6000613f76604b83614353565b9150613f8182614a50565b606082019050919050565b613f95816144fe565b82525050565b613fa481614508565b82525050565b6000613fb68284613c5a565b60148201915081905092915050565b6000613fd18286613cf2565b9150613fdd8285613cf2565b9150613fe98284613d23565b9150819050949350505050565b600061400182613f23565b9150819050919050565b60006020820190506140206000830184613c4b565b92915050565b600060808201905061403b6000830187613c4b565b6140486020830186613c4b565b6140556040830185613f8c565b81810360608301526140678184613c80565b905095945050505050565b60006020820190506140876000830184613c71565b92915050565b600060208201905081810360008301526140a78184613cb9565b905092915050565b600060208201905081810360008301526140c881613da2565b9050919050565b600060208201905081810360008301526140e881613dc5565b9050919050565b6000602082019050818103600083015261410881613de8565b9050919050565b6000602082019050818103600083015261412881613e0b565b9050919050565b6000602082019050818103600083015261414881613e2e565b9050919050565b6000602082019050818103600083015261416881613e51565b9050919050565b6000602082019050818103600083015261418881613e74565b9050919050565b600060208201905081810360008301526141a881613e97565b9050919050565b600060208201905081810360008301526141c881613eba565b9050919050565b600060208201905081810360008301526141e881613edd565b9050919050565b6000602082019050818103600083015261420881613f00565b9050919050565b6000602082019050818103600083015261422881613f46565b9050919050565b6000602082019050818103600083015261424881613f69565b9050919050565b60006020820190506142646000830184613f8c565b92915050565b600060208201905061427f6000830184613f9b565b92915050565b600061428f6142a0565b905061429b8282614589565b919050565b6000604051905090565b600067ffffffffffffffff8211156142c5576142c4614712565b5b6142ce8261475f565b9050602081019050919050565b600067ffffffffffffffff8211156142f6576142f5614712565b5b6142ff8261475f565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061437a826144fe565b9150614385836144fe565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143ba576143b9614627565b5b828201905092915050565b60006143d082614508565b91506143db83614508565b92508260ff038211156143f1576143f0614627565b5b828201905092915050565b6000614407826144fe565b9150614412836144fe565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561444b5761444a614627565b5b828202905092915050565b6000614461826144fe565b915061446c836144fe565b92508282101561447f5761447e614627565b5b828203905092915050565b6000614495826144de565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614542578082015181840152602081019050614527565b83811115614551576000848401525b50505050565b6000600282049050600182168061456f57607f821691505b60208210811415614583576145826146b4565b5b50919050565b6145928261475f565b810181811067ffffffffffffffff821117156145b1576145b0614712565b5b80604052505050565b60006145c5826144fe565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145f8576145f7614627565b5b600182019050919050565b600061460e82614615565b9050919050565b600061462082614770565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f496e7375666669656369656e742066756e6473207472616e7366657265640000600082015250565b7f70616964206c696d697420697320657863656465640000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e7375666669656369656e7420746f6b656e7320617661696c61626c650000600082015250565b7f5075626c69632073616c652069732063757272656e746c7920696e616374697660008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f5072652073616c6520574c206973206e6f74206163746976652063757272656e60008201527f746c790000000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206c6d6974206f6620746f6b656e732065786365656465640000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5072652073616c65204f47206973206e6f74206163746976652063757272656e60008201527f746c790000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74696e672069732063757272656e746c79207061757365640000000000600082015250565b50565b7f4d696e7420616d6f756e742073686f756c64206265206772656174657220746860008201527f616e203000000000000000000000000000000000000000000000000000000000602082015250565b7f54686973204164726573736573206973206e6f742077686974656c697374656460008201527f2c20596f752063616e204d696e74204d61657374726f2773204d697820696e2060208201527f5075626c69632053616c65000000000000000000000000000000000000000000604082015250565b614ace8161448a565b8114614ad957600080fd5b50565b614ae58161449c565b8114614af057600080fd5b50565b614afc816144a8565b8114614b0757600080fd5b50565b614b13816144b2565b8114614b1e57600080fd5b50565b614b2a816144fe565b8114614b3557600080fd5b50565b614b4181614508565b8114614b4c57600080fd5b5056fea264697066735822122036c8f2a826211312cb325a13e3a5b99798f46ba548a4a2ce98022d5529df4aa864736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001c0d537d4c10cc1320b9add2c192411ca530cfe9061c7c667f0de27e880de6f73be237da86c3c4acbda8b8bf35b1a05112dd3421b2734d7da466bfbdfdfca65fd89000000000000000000000000000000000000000000000000000000000000000c4d61657374726f73204d6978000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d4d414200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005968747470733a2f2f62616679626569666c7a36626635356962736361616d6d67636d6c6b6d63327175326e323464757a6b67716a346f69656171636a616f62707768652e697066732e6e667473746f726167652e6c696e6b2f00000000000000000000000000000000000000000000000000000000000000000000000000006968747470733a2f2f626166796265696665673362373776346c777463706f7a6a356b736e766d626572637132677577666a7074707a34776b73353637766e61706361652e697066732e6e667473746f726167652e6c696e6b2f756e72657665616c65642e6a736f6e2f0000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Maestros Mix
Arg [1] : _symbol (string): MMAB
Arg [2] : _initBaseURI (string): https://bafybeiflz6bf55ibscaammgcmlkmc2qu2n24duzkgqj4oieaqcjaobpwhe.ipfs.nftstorage.link/
Arg [3] : _initNotRevealedUri (string): https://bafybeifeg3b77v4lwtcpozj5ksnvmbercq2guwfjptpz4wks567vnapcae.ipfs.nftstorage.link/unrevealed.json/
Arg [4] : _OGRoot (bytes32): 0xd537d4c10cc1320b9add2c192411ca530cfe9061c7c667f0de27e880de6f73be
Arg [5] : _WLRoot (bytes32): 0x237da86c3c4acbda8b8bf35b1a05112dd3421b2734d7da466bfbdfdfca65fd89

-----Encoded View---------------
19 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [4] : d537d4c10cc1320b9add2c192411ca530cfe9061c7c667f0de27e880de6f73be
Arg [5] : 237da86c3c4acbda8b8bf35b1a05112dd3421b2734d7da466bfbdfdfca65fd89
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [7] : 4d61657374726f73204d69780000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [9] : 4d4d414200000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000059
Arg [11] : 68747470733a2f2f62616679626569666c7a36626635356962736361616d6d67
Arg [12] : 636d6c6b6d63327175326e323464757a6b67716a346f69656171636a616f6270
Arg [13] : 7768652e697066732e6e667473746f726167652e6c696e6b2f00000000000000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000069
Arg [15] : 68747470733a2f2f626166796265696665673362373776346c777463706f7a6a
Arg [16] : 356b736e766d626572637132677577666a7074707a34776b73353637766e6170
Arg [17] : 6361652e697066732e6e667473746f726167652e6c696e6b2f756e7265766561
Arg [18] : 6c65642e6a736f6e2f0000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

79959:19214:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18440:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19342:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25833:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25266:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80494:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80220:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80568:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;99019:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80680:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15093:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91225:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80116:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29472:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;90057:771;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80752:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92196:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80826:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80712:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90836:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;98721:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;93081:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80359:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;97230:155;;;:::i;:::-;;80910:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32393:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95693:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80648:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;97587:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80864:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80081:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;96556:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80047:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20735:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80423:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16277:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79007:103;;;;;;;;;;;;;:::i;:::-;;93523:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;93685:345;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;91711:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78359:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;98199:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92631:140;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19518:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80168:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26391:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95435:69;;;;;;;;;;;;;:::i;:::-;;33184:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;87351:986;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80290:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;97963:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80982:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;94575:752;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88690:986;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80788:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80608;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;96940:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;98455:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26782:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;96086:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79265:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18440:639;18525:4;18864:10;18849:25;;:11;:25;;;;:102;;;;18941:10;18926:25;;:11;:25;;;;18849:102;:179;;;;19018:10;19003:25;;:11;:25;;;;18849:179;18829:199;;18440:639;;;:::o;19342:100::-;19396:13;19429:5;19422:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19342:100;:::o;25833:218::-;25909:7;25934:16;25942:7;25934;:16::i;:::-;25929:64;;25959:34;;;;;;;;;;;;;;25929:64;26013:15;:24;26029:7;26013:24;;;;;;;;;;;:30;;;;;;;;;;;;26006:37;;25833:218;;;:::o;25266:408::-;25355:13;25371:16;25379:7;25371;:16::i;:::-;25355:32;;25427:5;25404:28;;:19;:17;:19::i;:::-;:28;;;25400:175;;25452:44;25469:5;25476:19;:17;:19::i;:::-;25452:16;:44::i;:::-;25447:128;;25524:35;;;;;;;;;;;;;;25447:128;25400:175;25620:2;25587:15;:24;25603:7;25587:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25658:7;25654:2;25638:28;;25647:5;25638:28;;;;;;;;;;;;25344:330;25266:408;;:::o;80494:38::-;;;;;;;;;;;;;:::o;80220:34::-;;;;;;;;;;;;;:::o;80568:33::-;;;;:::o;99019:151::-;78245:13;:11;:13::i;:::-;99130:7:::1;99123:6;:14;;;;99155:7;99148:6;:14;;;;99019:151:::0;;:::o;80680:25::-;;;;:::o;15093:323::-;15154:7;15382:15;:13;:15::i;:::-;15367:12;;15351:13;;:28;:46;15344:53;;15093:323;:::o;91225:208::-;91306:4;91323:12;91363:5;91346:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;91336:34;;;;;;91323:47;;91388:37;91407:5;;91388:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91413:6;;91420:4;91388:18;:37::i;:::-;91381:44;;;91225:208;;;;;:::o;80116:26::-;;;;;;;;;;;;;:::o;29472:2825::-;29614:27;29644;29663:7;29644:18;:27::i;:::-;29614:57;;29729:4;29688:45;;29704:19;29688:45;;;29684:86;;29742:28;;;;;;;;;;;;;;29684:86;29784:27;29813:23;29840:35;29867:7;29840:26;:35::i;:::-;29783:92;;;;29975:68;30000:15;30017:4;30023:19;:17;:19::i;:::-;29975:24;:68::i;:::-;29970:180;;30063:43;30080:4;30086:19;:17;:19::i;:::-;30063:16;:43::i;:::-;30058:92;;30115:35;;;;;;;;;;;;;;30058:92;29970:180;30181:1;30167:16;;:2;:16;;;30163:52;;;30192:23;;;;;;;;;;;;;;30163:52;30228:43;30250:4;30256:2;30260:7;30269:1;30228:21;:43::i;:::-;30364:15;30361:160;;;30504:1;30483:19;30476:30;30361:160;30901:18;:24;30920:4;30901:24;;;;;;;;;;;;;;;;30899:26;;;;;;;;;;;;30970:18;:22;30989:2;30970:22;;;;;;;;;;;;;;;;30968:24;;;;;;;;;;;31292:146;31329:2;31378:45;31393:4;31399:2;31403:19;31378:14;:45::i;:::-;11492:8;31350:73;31292:18;:146::i;:::-;31263:17;:26;31281:7;31263:26;;;;;;;;;;;:175;;;;31609:1;11492:8;31558:19;:47;:52;31554:627;;;31631:19;31663:1;31653:7;:11;31631:33;;31820:1;31786:17;:30;31804:11;31786:30;;;;;;;;;;;;:35;31782:384;;;31924:13;;31909:11;:28;31905:242;;32104:19;32071:17;:30;32089:11;32071:30;;;;;;;;;;;:52;;;;31905:242;31782:384;31612:569;31554:627;32228:7;32224:2;32209:27;;32218:4;32209:27;;;;;;;;;;;;32247:42;32268:4;32274:2;32278:7;32287:1;32247:20;:42::i;:::-;29603:2694;;;29472:2825;;;:::o;90057:771::-;90110:11;82074:6;;;;;;;;;;;82073:7;82065:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;82144:1;82130:11;:15;;;82122:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;82235:9;;82220:11;82204:27;;:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;82196:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;82347:22;;;;;;;;;;;82297:72;;82310:21;:33;82332:10;82310:33;;;;;;;;;;;;;;;;;;;;;;;;;82297:11;:46;;;;:::i;:::-;:72;;;;82289:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;90167:15:::1;;;;;;;;;;;90166:16;90158:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;90529:25;90557:90;90598:22;;;;;;;;;;;90557:90;;90621:15;90557:26;:90::i;:::-;90529:118;;90758:62;90764:11;90776:9;90786:17;90804:15;90758:4;:62::i;:::-;90138:690;90057:771:::0;;:::o;80752:27::-;;;;:::o;92196:150::-;78245:13;:11;:13::i;:::-;92315:23:::1;92290:22;;:48;;;;;;;;;;;;;;;;;;92196:150:::0;:::o;80826:31::-;;;;:::o;80712:33::-;;;;:::o;90836:111::-;78245:13;:11;:13::i;:::-;90905:34:::1;90915:10;90927:11;90905:9;:34::i;:::-;90836:111:::0;:::o;98721:142::-;78245:13;:11;:13::i;:::-;98839:16:::1;98823:15;;:32;;;;;;;;;;;;;;;;;;98721:142:::0;:::o;93081:132::-;78245:13;:11;:13::i;:::-;93186:19:::1;93167:18;;:38;;;;;;;;;;;;;;;;;;93081:132:::0;:::o;80359:34::-;;;;;;;;;;;;;:::o;97230:155::-;78245:13;:11;:13::i;:::-;97287:7:::1;97308;:5;:7::i;:::-;97300:21;;97329;97300:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97286:69;;;97374:2;97366:11;;;::::0;::::1;;97275:110;97230:155::o:0;80910:34::-;;;;:::o;32393:193::-;32539:39;32556:4;32562:2;32566:7;32539:39;;;;;;;;;;;;:16;:39::i;:::-;32393:193;;;:::o;95693:86::-;78245:13;:11;:13::i;:::-;95763:8:::1;95756:4;:15;;;;95693:86:::0;:::o;80648:25::-;;;;:::o;97587:128::-;97658:5;97678:21;:29;97700:6;97678:29;;;;;;;;;;;;;;;;;;;;;;;;;97671:36;;97587:128;;;:::o;80864:39::-;;;;:::o;80081:28::-;;;;;;;;;;;;;:::o;96556:104::-;78245:13;:11;:13::i;:::-;96641:11:::1;96631:7;:21;;;;;;;;;;;;:::i;:::-;;96556:104:::0;:::o;80047:26::-;;;;;;;;;;;;;:::o;20735:152::-;20807:7;20850:27;20869:7;20850:18;:27::i;:::-;20827:52;;20735:152;;;:::o;80423:34::-;;;;;;;;;;;;;:::o;16277:233::-;16349:7;16390:1;16373:19;;:5;:19;;;16369:60;;;16401:28;;;;;;;;;;;;;;16369:60;10436:13;16447:18;:25;16466:5;16447:25;;;;;;;;;;;;;;;;:55;16440:62;;16277:233;;;:::o;79007:103::-;78245:13;:11;:13::i;:::-;79072:30:::1;79099:1;79072:18;:30::i;:::-;79007:103::o:0;93523:148::-;78245:13;:11;:13::i;:::-;93640:23:::1;93617:22;;:46;;;;;;;;;;;;;;;;;;93523:148:::0;:::o;93685:345::-;78245:13;:11;:13::i;:::-;93878::::1;93865:12;:26;;;;93915:13;93902:12;:26;;;;93960:21;93939:20;:42;;;;94007:15;93992:14;:30;;;;93685:345:::0;;;;:::o;91711:207::-;91792:4;91808:12;91848:5;91831:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;91821:34;;;;;;91808:47;;91873:37;91892:5;;91873:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91898:6;;91905:4;91873:18;:37::i;:::-;91866:44;;;91711:207;;;;;:::o;78359:87::-;78405:7;78432:6;;;;;;;;;;;78425:13;;78359:87;:::o;98199:110::-;78245:13;:11;:13::i;:::-;98293:8:::1;98285:7;;:16;;;;;;;;;;;;;;;;;;98199:110:::0;:::o;92631:140::-;78245:13;:11;:13::i;:::-;92735:19:::1;92716:18;;:38;;;;;;;;;;;;;;;;;;92631:140:::0;:::o;19518:104::-;19574:13;19607:7;19600:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19518:104;:::o;80168:26::-;;;;;;;;;;;;;:::o;26391:234::-;26538:8;26486:18;:39;26505:19;:17;:19::i;:::-;26486:39;;;;;;;;;;;;;;;:49;26526:8;26486:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26598:8;26562:55;;26577:19;:17;:19::i;:::-;26562:55;;;26608:8;26562:55;;;;;;:::i;:::-;;;;;;;;26391:234;;:::o;95435:69::-;78245:13;:11;:13::i;:::-;95492:4:::1;95481:8;;:15;;;;;;;;;;;;;;;;;;95435:69::o:0;33184:407::-;33359:31;33372:4;33378:2;33382:7;33359:12;:31::i;:::-;33423:1;33405:2;:14;;;:19;33401:183;;33444:56;33475:4;33481:2;33485:7;33494:5;33444:30;:56::i;:::-;33439:145;;33528:40;;;;;;;;;;;;;;33439:145;33401:183;33184:407;;;;:::o;87351:986::-;87425:11;82074:6;;;;;;;;;;;82073:7;82065:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;82144:1;82130:11;:15;;;82122:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;82235:9;;82220:11;82204:27;;:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;82196:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;82347:22;;;;;;;;;;;82297:72;;82310:21;:33;82332:10;82310:33;;;;;;;;;;;;;;;;;;;;;;;;;82297:11;:46;;;;:::i;:::-;:72;;;;82289:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;87482:7:::1;;;;;;;;;;;87481:8;87473:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;87741:28;87752:10;87763:5;;87741:10;:28::i;:::-;87733:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;88015:25;88043:90;88088:18;;;;;;;;;;;88043:90;;88107:11;88043:26;:90::i;:::-;88015:118;;88249:57;88254:11;88266:9;88276:17;88294:11;88249:4;:57::i;:::-;87453:884;87351:986:::0;;;;:::o;80290:39::-;;;;;;;;;;;;;:::o;97963:82::-;78245:13;:11;:13::i;:::-;98031:6:::1;98022;;:15;;;;;;;;;;;;;;;;;;97963:82:::0;:::o;80982:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;94575:752::-;94693:13;94746:16;94754:7;94746;:16::i;:::-;94724:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;94866:5;94854:17;;:8;;;;;;;;;;;:17;;;94850:71;;;94895:14;94888:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94850:71;94933:28;94964:10;:8;:10::i;:::-;94933:41;;95019:1;94994:14;94988:28;:32;94985:335;;;95119:14;95160:18;:7;:16;:18::i;:::-;95205:13;95076:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;95040:220;;;;;94985:335;95295:9;;;;;;;;;;;;;;;94575:752;;;;:::o;88690:986::-;88764:11;82074:6;;;;;;;;;;;82073:7;82065:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;82144:1;82130:11;:15;;;82122:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;82235:9;;82220:11;82204:27;;:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;82196:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;82347:22;;;;;;;;;;;82297:72;;82310:21;:33;82332:10;82310:33;;;;;;;;;;;;;;;;;;;;;;;;;82297:11;:46;;;;:::i;:::-;:72;;;;82289:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;88821:7:::1;;;;;;;;;;;88820:8;88812:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;89080:28;89091:10;89102:5;;89080:10;:28::i;:::-;89072:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;89354:25;89382:90;89427:18;;;;;;;;;;;89382:90;;89446:11;89382:26;:90::i;:::-;89354:118;;89588:57;89593:11;89605:9;89615:17;89633:11;89588:4;:57::i;:::-;88792:884;88690:986:::0;;;;:::o;80788:31::-;;;;:::o;80608:::-;;;;:::o;96940:151::-;78245:13;:11;:13::i;:::-;97066:17:::1;97050:13;:33;;;;;;;;;;;;:::i;:::-;;96940:151:::0;:::o;98455:110::-;78245:13;:11;:13::i;:::-;98549:8:::1;98541:7;;:16;;;;;;;;;;;;;;;;;;98455:110:::0;:::o;26782:164::-;26879:4;26903:18;:25;26922:5;26903:25;;;;;;;;;;;;;;;:35;26929:8;26903:35;;;;;;;;;;;;;;;;;;;;;;;;;26896:42;;26782:164;;;;:::o;96086:126::-;78245:13;:11;:13::i;:::-;96189:15:::1;96172:14;:32;;;;;;;;;;;;:::i;:::-;;96086:126:::0;:::o;79265:201::-;78245:13;:11;:13::i;:::-;79374:1:::1;79354:22;;:8;:22;;;;79346:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;79430:28;79449:8;79430:18;:28::i;:::-;79265:201:::0;:::o;27204:282::-;27269:4;27325:7;27306:15;:13;:15::i;:::-;:26;;:66;;;;;27359:13;;27349:7;:23;27306:66;:153;;;;;27458:1;11212:8;27410:17;:26;27428:7;27410:26;;;;;;;;;;;;:44;:49;27306:153;27286:173;;27204:282;;;:::o;49512:105::-;49572:7;49599:10;49592:17;;49512:105;:::o;78524:132::-;78599:12;:10;:12::i;:::-;78588:23;;:7;:5;:7::i;:::-;:23;;;78580:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78524:132::o;14609:92::-;14665:7;14609:92;:::o;52693:190::-;52818:4;52871;52842:25;52855:5;52862:4;52842:12;:25::i;:::-;:33;52835:40;;52693:190;;;;;:::o;21890:1275::-;21957:7;21977:12;21992:7;21977:22;;22060:4;22041:15;:13;:15::i;:::-;:23;22037:1061;;22094:13;;22087:4;:20;22083:1015;;;22132:14;22149:17;:23;22167:4;22149:23;;;;;;;;;;;;22132:40;;22266:1;11212:8;22238:6;:24;:29;22234:845;;;22903:113;22920:1;22910:6;:11;22903:113;;;22963:17;:25;22981:6;;;;;;;22963:25;;;;;;;;;;;;22954:34;;22903:113;;;23049:6;23042:13;;;;;;22234:845;22109:989;22083:1015;22037:1061;23126:31;;;;;;;;;;;;;;21890:1275;;;;:::o;28367:485::-;28469:27;28498:23;28539:38;28580:15;:24;28596:7;28580:24;;;;;;;;;;;28539:65;;28757:18;28734:41;;28814:19;28808:26;28789:45;;28719:126;28367:485;;;:::o;27595:659::-;27744:11;27909:16;27902:5;27898:28;27889:37;;28069:16;28058:9;28054:32;28041:45;;28219:15;28208:9;28205:30;28197:5;28186:9;28183:20;28180:56;28170:66;;27595:659;;;;;:::o;34253:159::-;;;;;:::o;48821:311::-;48956:7;48976:16;11616:3;49002:19;:41;;48976:68;;11616:3;49070:31;49081:4;49087:2;49091:9;49070:10;:31::i;:::-;49062:40;;:62;;49055:69;;;48821:311;;;;;:::o;23713:450::-;23793:14;23961:16;23954:5;23950:28;23941:37;;24138:5;24124:11;24099:23;24095:41;24092:52;24085:5;24082:63;24072:73;;23713:450;;;;:::o;35077:158::-;;;;;:::o;85466:1529::-;85595:7;85620:25;85648:21;:33;85670:10;85648:33;;;;;;;;;;;;;;;;;;;;;;;;;85620:61;;;;85716:17;85696;:37;85692:1296;;;85750:25;85796:17;85776;:37;;;;:::i;:::-;85750:63;;85841:11;85832:20;;;;;;;;:::i;:::-;;:7;:20;;;;;;;;:::i;:::-;;;:43;;;;;85863:12;;85854:8;;:21;85832:43;85828:1094;;;85948:8;;85935:12;;:21;;;;:::i;:::-;85917:17;:39;85914:204;;;85987:17;85980:24;;;;;;85914:204;86089:8;;86076:12;;:21;;;;:::i;:::-;86069:29;;;;;;85828:1094;86187:11;86178:20;;;;;;;;:::i;:::-;;:7;:20;;;;;;;;:::i;:::-;;;:43;;;;;86209:12;;86200:8;;:21;86178:43;86174:748;;;86294:8;;86281:12;;:21;;;;:::i;:::-;86263:17;:39;86260:204;;;86333:17;86326:24;;;;;;86260:204;86435:8;;86422:12;;:21;;;;:::i;:::-;86415:29;;;;;;86174:748;86533:15;86524:24;;;;;;;;:::i;:::-;;:7;:24;;;;;;;;:::i;:::-;;;:63;;;;;86567:20;;86550:16;;:37;86524:63;86520:402;;;86652:16;;86631:20;;:37;;;;:::i;:::-;86613:17;:55;86610:236;;;86699:17;86692:24;;;;;;86610:236;86809:16;;86788:20;;:37;;;;:::i;:::-;86781:45;;;;;;86520:402;86905:1;86898:8;;;;;;85692:1296;86975:1;86968:8;;;85466:1529;;;;;:::o;83142:1771::-;83326:17;83311:11;:32;;;83307:1599;;83376:11;83366:21;;;;;;;;:::i;:::-;;:8;:21;;;;;;;;:::i;:::-;;;83363:449;;;83498:11;83489:20;;:8;;:20;;;;:::i;:::-;83480:8;:29;;;;83363:449;;;83559:11;83549:21;;;;;;;;:::i;:::-;;:8;:21;;;;;;;;:::i;:::-;;;83546:266;;;83683:11;83674:20;;:8;;:20;;;;:::i;:::-;83665:8;:29;;;;83546:266;;;83784:11;83767:28;;:16;;:28;;;;:::i;:::-;83750:16;:45;;;;83546:266;83363:449;83828:34;83838:10;83850:11;83828:34;;:9;:34::i;:::-;83912:11;83877:21;:33;83899:10;83877:33;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;83307:1599;;;84012:11;84002:21;;;;;;;;:::i;:::-;;:8;:21;;;;;;;;:::i;:::-;;;83999:475;;;84141:17;84132:8;;:26;;;;:::i;:::-;84123:8;:35;;;;83999:475;;;84206:11;84196:21;;;;;;;;:::i;:::-;;:8;:21;;;;;;;;:::i;:::-;;;84193:281;;;84334:17;84325:8;;:26;;;;:::i;:::-;84316:8;:35;;;;84193:281;;;84440:17;84423:16;;:34;;;;:::i;:::-;84406:16;:51;;;;84193:281;83999:475;84505:16;84538:17;84524:11;:31;;;;;;:::i;:::-;84505:50;;84605:4;;84594:8;:15;;;;:::i;:::-;84578:12;:31;;84570:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;84687:14;;84677:8;84666:10;;:19;;;;:::i;:::-;:35;;84658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;84741:34;84751:10;84763:11;84741:34;;:9;:34::i;:::-;84825:11;84790:21;:33;84812:10;84790:33;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;84873:8;84862:10;;:19;;;;:::i;:::-;84851:10;:30;;;;83969:937;83307:1599;83142:1771;;;;:::o;43344:112::-;43421:27;43431:2;43435:8;43421:27;;;;;;;;;;;;:9;:27::i;:::-;43344:112;;:::o;79626:191::-;79700:16;79719:6;;;;;;;;;;;79700:25;;79745:8;79736:6;;:17;;;;;;;;;;;;;;;;;;79800:8;79769:40;;79790:8;79769:40;;;;;;;;;;;;79689:128;79626:191;:::o;35675:716::-;35838:4;35884:2;35859:45;;;35905:19;:17;:19::i;:::-;35926:4;35932:7;35941:5;35859:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35855:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36159:1;36142:6;:13;:18;36138:235;;;36188:40;;;;;;;;;;;;;;36138:235;36331:6;36325:13;36316:6;36312:2;36308:15;36301:38;35855:529;36028:54;;;36018:64;;;:6;:64;;;;36011:71;;;35675:716;;;;;;:::o;94210:108::-;94270:13;94303:7;94296:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94210:108;:::o;74337:716::-;74393:13;74444:14;74481:1;74461:17;74472:5;74461:10;:17::i;:::-;:21;74444:38;;74497:20;74531:6;74520:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74497:41;;74553:11;74682:6;74678:2;74674:15;74666:6;74662:28;74655:35;;74719:288;74726:4;74719:288;;;74751:5;;;;;;;;74893:8;74888:2;74881:5;74877:14;74872:30;74867:3;74859:44;74949:2;74940:11;;;;;;:::i;:::-;;;;;74983:1;74974:5;:10;74970:21;;;74986:5;;74970:21;74719:288;;;75028:6;75021:13;;;;;74337:716;;;:::o;76910:98::-;76963:7;76990:10;76983:17;;76910:98;:::o;53560:296::-;53643:7;53663:20;53686:4;53663:27;;53706:9;53701:118;53725:5;:12;53721:1;:16;53701:118;;;53774:33;53784:12;53798:5;53804:1;53798:8;;;;;;;;:::i;:::-;;;;;;;;53774:9;:33::i;:::-;53759:48;;53739:3;;;;;:::i;:::-;;;;53701:118;;;;53836:12;53829:19;;;53560:296;;;;:::o;48522:147::-;48659:6;48522:147;;;;;:::o;42571:689::-;42702:19;42708:2;42712:8;42702:5;:19::i;:::-;42781:1;42763:2;:14;;;:19;42759:483;;42803:11;42817:13;;42803:27;;42849:13;42871:8;42865:3;:14;42849:30;;42898:233;42929:62;42968:1;42972:2;42976:7;;;;;;42985:5;42929:30;:62::i;:::-;42924:167;;43027:40;;;;;;;;;;;;;;42924:167;43126:3;43118:5;:11;42898:233;;43213:3;43196:13;;:20;43192:34;;43218:8;;;43192:34;42784:458;;42759:483;42571:689;;;:::o;71203:922::-;71256:7;71276:14;71293:1;71276:18;;71343:6;71334:5;:15;71330:102;;71379:6;71370:15;;;;;;:::i;:::-;;;;;71414:2;71404:12;;;;71330:102;71459:6;71450:5;:15;71446:102;;71495:6;71486:15;;;;;;:::i;:::-;;;;;71530:2;71520:12;;;;71446:102;71575:6;71566:5;:15;71562:102;;71611:6;71602:15;;;;;;:::i;:::-;;;;;71646:2;71636:12;;;;71562:102;71691:5;71682;:14;71678:99;;71726:5;71717:14;;;;;;:::i;:::-;;;;;71760:1;71750:11;;;;71678:99;71804:5;71795;:14;71791:99;;71839:5;71830:14;;;;;;:::i;:::-;;;;;71873:1;71863:11;;;;71791:99;71917:5;71908;:14;71904:99;;71952:5;71943:14;;;;;;:::i;:::-;;;;;71986:1;71976:11;;;;71904:99;72030:5;72021;:14;72017:66;;72066:1;72056:11;;;;72017:66;72111:6;72104:13;;;71203:922;;;:::o;60600:149::-;60663:7;60694:1;60690;:5;:51;;60721:20;60736:1;60739;60721:14;:20::i;:::-;60690:51;;;60698:20;60713:1;60716;60698:14;:20::i;:::-;60690:51;60683:58;;60600:149;;;;:::o;36853:2966::-;36926:20;36949:13;;36926:36;;36989:1;36977:8;:13;36973:44;;;36999:18;;;;;;;;;;;;;;36973:44;37030:61;37060:1;37064:2;37068:12;37082:8;37030:21;:61::i;:::-;37574:1;10574:2;37544:1;:26;;37543:32;37531:8;:45;37505:18;:22;37524:2;37505:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;37853:139;37890:2;37944:33;37967:1;37971:2;37975:1;37944:14;:33::i;:::-;37911:30;37932:8;37911:20;:30::i;:::-;:66;37853:18;:139::i;:::-;37819:17;:31;37837:12;37819:31;;;;;;;;;;;:173;;;;38009:16;38040:11;38069:8;38054:12;:23;38040:37;;38590:16;38586:2;38582:25;38570:37;;38962:12;38922:8;38881:1;38819:25;38760:1;38699;38672:335;39333:1;39319:12;39315:20;39273:346;39374:3;39365:7;39362:16;39273:346;;39592:7;39582:8;39579:1;39552:25;39549:1;39546;39541:59;39427:1;39418:7;39414:15;39403:26;;39273:346;;;39277:77;39664:1;39652:8;:13;39648:45;;;39674:19;;;;;;;;;;;;;;39648:45;39726:3;39710:13;:19;;;;37279:2462;;39751:60;39780:1;39784:2;39788:12;39802:8;39751:20;:60::i;:::-;36915:2904;36853:2966;;:::o;60757:268::-;60825:13;60932:1;60926:4;60919:15;60961:1;60955:4;60948:15;61002:4;60996;60986:21;60977:30;;60757:268;;;;:::o;24265:324::-;24335:14;24568:1;24558:8;24555:15;24529:24;24525:46;24515:56;;24265:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:139::-;1762:5;1800:6;1787:20;1778:29;;1816:33;1843:5;1816:33;:::i;:::-;1716:139;;;;:::o;1861:137::-;1906:5;1944:6;1931:20;1922:29;;1960:32;1986:5;1960:32;:::i;:::-;1861:137;;;;:::o;2004:141::-;2060:5;2091:6;2085:13;2076:22;;2107:32;2133:5;2107:32;:::i;:::-;2004:141;;;;:::o;2164:338::-;2219:5;2268:3;2261:4;2253:6;2249:17;2245:27;2235:122;;2276:79;;:::i;:::-;2235:122;2393:6;2380:20;2418:78;2492:3;2484:6;2477:4;2469:6;2465:17;2418:78;:::i;:::-;2409:87;;2225:277;2164:338;;;;:::o;2522:340::-;2578:5;2627:3;2620:4;2612:6;2608:17;2604:27;2594:122;;2635:79;;:::i;:::-;2594:122;2752:6;2739:20;2777:79;2852:3;2844:6;2837:4;2829:6;2825:17;2777:79;:::i;:::-;2768:88;;2584:278;2522:340;;;;:::o;2868:139::-;2914:5;2952:6;2939:20;2930:29;;2968:33;2995:5;2968:33;:::i;:::-;2868:139;;;;:::o;3013:135::-;3057:5;3095:6;3082:20;3073:29;;3111:31;3136:5;3111:31;:::i;:::-;3013:135;;;;:::o;3154:329::-;3213:6;3262:2;3250:9;3241:7;3237:23;3233:32;3230:119;;;3268:79;;:::i;:::-;3230:119;3388:1;3413:53;3458:7;3449:6;3438:9;3434:22;3413:53;:::i;:::-;3403:63;;3359:117;3154:329;;;;:::o;3489:474::-;3557:6;3565;3614:2;3602:9;3593:7;3589:23;3585:32;3582:119;;;3620:79;;:::i;:::-;3582:119;3740:1;3765:53;3810:7;3801:6;3790:9;3786:22;3765:53;:::i;:::-;3755:63;;3711:117;3867:2;3893:53;3938:7;3929:6;3918:9;3914:22;3893:53;:::i;:::-;3883:63;;3838:118;3489:474;;;;;:::o;3969:619::-;4046:6;4054;4062;4111:2;4099:9;4090:7;4086:23;4082:32;4079:119;;;4117:79;;:::i;:::-;4079:119;4237:1;4262:53;4307:7;4298:6;4287:9;4283:22;4262:53;:::i;:::-;4252:63;;4208:117;4364:2;4390:53;4435:7;4426:6;4415:9;4411:22;4390:53;:::i;:::-;4380:63;;4335:118;4492:2;4518:53;4563:7;4554:6;4543:9;4539:22;4518:53;:::i;:::-;4508:63;;4463:118;3969:619;;;;;:::o;4594:943::-;4689:6;4697;4705;4713;4762:3;4750:9;4741:7;4737:23;4733:33;4730:120;;;4769:79;;:::i;:::-;4730:120;4889:1;4914:53;4959:7;4950:6;4939:9;4935:22;4914:53;:::i;:::-;4904:63;;4860:117;5016:2;5042:53;5087:7;5078:6;5067:9;5063:22;5042:53;:::i;:::-;5032:63;;4987:118;5144:2;5170:53;5215:7;5206:6;5195:9;5191:22;5170:53;:::i;:::-;5160:63;;5115:118;5300:2;5289:9;5285:18;5272:32;5331:18;5323:6;5320:30;5317:117;;;5353:79;;:::i;:::-;5317:117;5458:62;5512:7;5503:6;5492:9;5488:22;5458:62;:::i;:::-;5448:72;;5243:287;4594:943;;;;;;;:::o;5543:704::-;5638:6;5646;5654;5703:2;5691:9;5682:7;5678:23;5674:32;5671:119;;;5709:79;;:::i;:::-;5671:119;5829:1;5854:53;5899:7;5890:6;5879:9;5875:22;5854:53;:::i;:::-;5844:63;;5800:117;5984:2;5973:9;5969:18;5956:32;6015:18;6007:6;6004:30;6001:117;;;6037:79;;:::i;:::-;6001:117;6150:80;6222:7;6213:6;6202:9;6198:22;6150:80;:::i;:::-;6132:98;;;;5927:313;5543:704;;;;;:::o;6253:468::-;6318:6;6326;6375:2;6363:9;6354:7;6350:23;6346:32;6343:119;;;6381:79;;:::i;:::-;6343:119;6501:1;6526:53;6571:7;6562:6;6551:9;6547:22;6526:53;:::i;:::-;6516:63;;6472:117;6628:2;6654:50;6696:7;6687:6;6676:9;6672:22;6654:50;:::i;:::-;6644:60;;6599:115;6253:468;;;;;:::o;6727:474::-;6795:6;6803;6852:2;6840:9;6831:7;6827:23;6823:32;6820:119;;;6858:79;;:::i;:::-;6820:119;6978:1;7003:53;7048:7;7039:6;7028:9;7024:22;7003:53;:::i;:::-;6993:63;;6949:117;7105:2;7131:53;7176:7;7167:6;7156:9;7152:22;7131:53;:::i;:::-;7121:63;;7076:118;6727:474;;;;;:::o;7207:323::-;7263:6;7312:2;7300:9;7291:7;7287:23;7283:32;7280:119;;;7318:79;;:::i;:::-;7280:119;7438:1;7463:50;7505:7;7496:6;7485:9;7481:22;7463:50;:::i;:::-;7453:60;;7409:114;7207:323;;;;:::o;7536:474::-;7604:6;7612;7661:2;7649:9;7640:7;7636:23;7632:32;7629:119;;;7667:79;;:::i;:::-;7629:119;7787:1;7812:53;7857:7;7848:6;7837:9;7833:22;7812:53;:::i;:::-;7802:63;;7758:117;7914:2;7940:53;7985:7;7976:6;7965:9;7961:22;7940:53;:::i;:::-;7930:63;;7885:118;7536:474;;;;;:::o;8016:327::-;8074:6;8123:2;8111:9;8102:7;8098:23;8094:32;8091:119;;;8129:79;;:::i;:::-;8091:119;8249:1;8274:52;8318:7;8309:6;8298:9;8294:22;8274:52;:::i;:::-;8264:62;;8220:116;8016:327;;;;:::o;8349:349::-;8418:6;8467:2;8455:9;8446:7;8442:23;8438:32;8435:119;;;8473:79;;:::i;:::-;8435:119;8593:1;8618:63;8673:7;8664:6;8653:9;8649:22;8618:63;:::i;:::-;8608:73;;8564:127;8349:349;;;;:::o;8704:509::-;8773:6;8822:2;8810:9;8801:7;8797:23;8793:32;8790:119;;;8828:79;;:::i;:::-;8790:119;8976:1;8965:9;8961:17;8948:31;9006:18;8998:6;8995:30;8992:117;;;9028:79;;:::i;:::-;8992:117;9133:63;9188:7;9179:6;9168:9;9164:22;9133:63;:::i;:::-;9123:73;;8919:287;8704:509;;;;:::o;9219:329::-;9278:6;9327:2;9315:9;9306:7;9302:23;9298:32;9295:119;;;9333:79;;:::i;:::-;9295:119;9453:1;9478:53;9523:7;9514:6;9503:9;9499:22;9478:53;:::i;:::-;9468:63;;9424:117;9219:329;;;;:::o;9554:765::-;9640:6;9648;9656;9664;9713:3;9701:9;9692:7;9688:23;9684:33;9681:120;;;9720:79;;:::i;:::-;9681:120;9840:1;9865:53;9910:7;9901:6;9890:9;9886:22;9865:53;:::i;:::-;9855:63;;9811:117;9967:2;9993:53;10038:7;10029:6;10018:9;10014:22;9993:53;:::i;:::-;9983:63;;9938:118;10095:2;10121:53;10166:7;10157:6;10146:9;10142:22;10121:53;:::i;:::-;10111:63;;10066:118;10223:2;10249:53;10294:7;10285:6;10274:9;10270:22;10249:53;:::i;:::-;10239:63;;10194:118;9554:765;;;;;;;:::o;10325:325::-;10382:6;10431:2;10419:9;10410:7;10406:23;10402:32;10399:119;;;10437:79;;:::i;:::-;10399:119;10557:1;10582:51;10625:7;10616:6;10605:9;10601:22;10582:51;:::i;:::-;10572:61;;10528:115;10325:325;;;;:::o;10656:700::-;10749:6;10757;10765;10814:2;10802:9;10793:7;10789:23;10785:32;10782:119;;;10820:79;;:::i;:::-;10782:119;10940:1;10965:51;11008:7;10999:6;10988:9;10984:22;10965:51;:::i;:::-;10955:61;;10911:115;11093:2;11082:9;11078:18;11065:32;11124:18;11116:6;11113:30;11110:117;;;11146:79;;:::i;:::-;11110:117;11259:80;11331:7;11322:6;11311:9;11307:22;11259:80;:::i;:::-;11241:98;;;;11036:313;10656:700;;;;;:::o;11362:118::-;11449:24;11467:5;11449:24;:::i;:::-;11444:3;11437:37;11362:118;;:::o;11486:157::-;11591:45;11611:24;11629:5;11611:24;:::i;:::-;11591:45;:::i;:::-;11586:3;11579:58;11486:157;;:::o;11649:109::-;11730:21;11745:5;11730:21;:::i;:::-;11725:3;11718:34;11649:109;;:::o;11764:360::-;11850:3;11878:38;11910:5;11878:38;:::i;:::-;11932:70;11995:6;11990:3;11932:70;:::i;:::-;11925:77;;12011:52;12056:6;12051:3;12044:4;12037:5;12033:16;12011:52;:::i;:::-;12088:29;12110:6;12088:29;:::i;:::-;12083:3;12079:39;12072:46;;11854:270;11764:360;;;;:::o;12130:364::-;12218:3;12246:39;12279:5;12246:39;:::i;:::-;12301:71;12365:6;12360:3;12301:71;:::i;:::-;12294:78;;12381:52;12426:6;12421:3;12414:4;12407:5;12403:16;12381:52;:::i;:::-;12458:29;12480:6;12458:29;:::i;:::-;12453:3;12449:39;12442:46;;12222:272;12130:364;;;;:::o;12500:377::-;12606:3;12634:39;12667:5;12634:39;:::i;:::-;12689:89;12771:6;12766:3;12689:89;:::i;:::-;12682:96;;12787:52;12832:6;12827:3;12820:4;12813:5;12809:16;12787:52;:::i;:::-;12864:6;12859:3;12855:16;12848:23;;12610:267;12500:377;;;;:::o;12907:845::-;13010:3;13047:5;13041:12;13076:36;13102:9;13076:36;:::i;:::-;13128:89;13210:6;13205:3;13128:89;:::i;:::-;13121:96;;13248:1;13237:9;13233:17;13264:1;13259:137;;;;13410:1;13405:341;;;;13226:520;;13259:137;13343:4;13339:9;13328;13324:25;13319:3;13312:38;13379:6;13374:3;13370:16;13363:23;;13259:137;;13405:341;13472:38;13504:5;13472:38;:::i;:::-;13532:1;13546:154;13560:6;13557:1;13554:13;13546:154;;;13634:7;13628:14;13624:1;13619:3;13615:11;13608:35;13684:1;13675:7;13671:15;13660:26;;13582:4;13579:1;13575:12;13570:17;;13546:154;;;13729:6;13724:3;13720:16;13713:23;;13412:334;;13226:520;;13014:738;;12907:845;;;;:::o;13758:366::-;13900:3;13921:67;13985:2;13980:3;13921:67;:::i;:::-;13914:74;;13997:93;14086:3;13997:93;:::i;:::-;14115:2;14110:3;14106:12;14099:19;;13758:366;;;:::o;14130:::-;14272:3;14293:67;14357:2;14352:3;14293:67;:::i;:::-;14286:74;;14369:93;14458:3;14369:93;:::i;:::-;14487:2;14482:3;14478:12;14471:19;;14130:366;;;:::o;14502:::-;14644:3;14665:67;14729:2;14724:3;14665:67;:::i;:::-;14658:74;;14741:93;14830:3;14741:93;:::i;:::-;14859:2;14854:3;14850:12;14843:19;;14502:366;;;:::o;14874:::-;15016:3;15037:67;15101:2;15096:3;15037:67;:::i;:::-;15030:74;;15113:93;15202:3;15113:93;:::i;:::-;15231:2;15226:3;15222:12;15215:19;;14874:366;;;:::o;15246:::-;15388:3;15409:67;15473:2;15468:3;15409:67;:::i;:::-;15402:74;;15485:93;15574:3;15485:93;:::i;:::-;15603:2;15598:3;15594:12;15587:19;;15246:366;;;:::o;15618:::-;15760:3;15781:67;15845:2;15840:3;15781:67;:::i;:::-;15774:74;;15857:93;15946:3;15857:93;:::i;:::-;15975:2;15970:3;15966:12;15959:19;;15618:366;;;:::o;15990:::-;16132:3;16153:67;16217:2;16212:3;16153:67;:::i;:::-;16146:74;;16229:93;16318:3;16229:93;:::i;:::-;16347:2;16342:3;16338:12;16331:19;;15990:366;;;:::o;16362:::-;16504:3;16525:67;16589:2;16584:3;16525:67;:::i;:::-;16518:74;;16601:93;16690:3;16601:93;:::i;:::-;16719:2;16714:3;16710:12;16703:19;;16362:366;;;:::o;16734:::-;16876:3;16897:67;16961:2;16956:3;16897:67;:::i;:::-;16890:74;;16973:93;17062:3;16973:93;:::i;:::-;17091:2;17086:3;17082:12;17075:19;;16734:366;;;:::o;17106:::-;17248:3;17269:67;17333:2;17328:3;17269:67;:::i;:::-;17262:74;;17345:93;17434:3;17345:93;:::i;:::-;17463:2;17458:3;17454:12;17447:19;;17106:366;;;:::o;17478:::-;17620:3;17641:67;17705:2;17700:3;17641:67;:::i;:::-;17634:74;;17717:93;17806:3;17717:93;:::i;:::-;17835:2;17830:3;17826:12;17819:19;;17478:366;;;:::o;17850:398::-;18009:3;18030:83;18111:1;18106:3;18030:83;:::i;:::-;18023:90;;18122:93;18211:3;18122:93;:::i;:::-;18240:1;18235:3;18231:11;18224:18;;17850:398;;;:::o;18254:366::-;18396:3;18417:67;18481:2;18476:3;18417:67;:::i;:::-;18410:74;;18493:93;18582:3;18493:93;:::i;:::-;18611:2;18606:3;18602:12;18595:19;;18254:366;;;:::o;18626:::-;18768:3;18789:67;18853:2;18848:3;18789:67;:::i;:::-;18782:74;;18865:93;18954:3;18865:93;:::i;:::-;18983:2;18978:3;18974:12;18967:19;;18626:366;;;:::o;18998:118::-;19085:24;19103:5;19085:24;:::i;:::-;19080:3;19073:37;18998:118;;:::o;19122:112::-;19205:22;19221:5;19205:22;:::i;:::-;19200:3;19193:35;19122:112;;:::o;19240:256::-;19352:3;19367:75;19438:3;19429:6;19367:75;:::i;:::-;19467:2;19462:3;19458:12;19451:19;;19487:3;19480:10;;19240:256;;;;:::o;19502:589::-;19727:3;19749:95;19840:3;19831:6;19749:95;:::i;:::-;19742:102;;19861:95;19952:3;19943:6;19861:95;:::i;:::-;19854:102;;19973:92;20061:3;20052:6;19973:92;:::i;:::-;19966:99;;20082:3;20075:10;;19502:589;;;;;;:::o;20097:379::-;20281:3;20303:147;20446:3;20303:147;:::i;:::-;20296:154;;20467:3;20460:10;;20097:379;;;:::o;20482:222::-;20575:4;20613:2;20602:9;20598:18;20590:26;;20626:71;20694:1;20683:9;20679:17;20670:6;20626:71;:::i;:::-;20482:222;;;;:::o;20710:640::-;20905:4;20943:3;20932:9;20928:19;20920:27;;20957:71;21025:1;21014:9;21010:17;21001:6;20957:71;:::i;:::-;21038:72;21106:2;21095:9;21091:18;21082:6;21038:72;:::i;:::-;21120;21188:2;21177:9;21173:18;21164:6;21120:72;:::i;:::-;21239:9;21233:4;21229:20;21224:2;21213:9;21209:18;21202:48;21267:76;21338:4;21329:6;21267:76;:::i;:::-;21259:84;;20710:640;;;;;;;:::o;21356:210::-;21443:4;21481:2;21470:9;21466:18;21458:26;;21494:65;21556:1;21545:9;21541:17;21532:6;21494:65;:::i;:::-;21356:210;;;;:::o;21572:313::-;21685:4;21723:2;21712:9;21708:18;21700:26;;21772:9;21766:4;21762:20;21758:1;21747:9;21743:17;21736:47;21800:78;21873:4;21864:6;21800:78;:::i;:::-;21792:86;;21572:313;;;;:::o;21891:419::-;22057:4;22095:2;22084:9;22080:18;22072:26;;22144:9;22138:4;22134:20;22130:1;22119:9;22115:17;22108:47;22172:131;22298:4;22172:131;:::i;:::-;22164:139;;21891:419;;;:::o;22316:::-;22482:4;22520:2;22509:9;22505:18;22497:26;;22569:9;22563:4;22559:20;22555:1;22544:9;22540:17;22533:47;22597:131;22723:4;22597:131;:::i;:::-;22589:139;;22316:419;;;:::o;22741:::-;22907:4;22945:2;22934:9;22930:18;22922:26;;22994:9;22988:4;22984:20;22980:1;22969:9;22965:17;22958:47;23022:131;23148:4;23022:131;:::i;:::-;23014:139;;22741:419;;;:::o;23166:::-;23332:4;23370:2;23359:9;23355:18;23347:26;;23419:9;23413:4;23409:20;23405:1;23394:9;23390:17;23383:47;23447:131;23573:4;23447:131;:::i;:::-;23439:139;;23166:419;;;:::o;23591:::-;23757:4;23795:2;23784:9;23780:18;23772:26;;23844:9;23838:4;23834:20;23830:1;23819:9;23815:17;23808:47;23872:131;23998:4;23872:131;:::i;:::-;23864:139;;23591:419;;;:::o;24016:::-;24182:4;24220:2;24209:9;24205:18;24197:26;;24269:9;24263:4;24259:20;24255:1;24244:9;24240:17;24233:47;24297:131;24423:4;24297:131;:::i;:::-;24289:139;;24016:419;;;:::o;24441:::-;24607:4;24645:2;24634:9;24630:18;24622:26;;24694:9;24688:4;24684:20;24680:1;24669:9;24665:17;24658:47;24722:131;24848:4;24722:131;:::i;:::-;24714:139;;24441:419;;;:::o;24866:::-;25032:4;25070:2;25059:9;25055:18;25047:26;;25119:9;25113:4;25109:20;25105:1;25094:9;25090:17;25083:47;25147:131;25273:4;25147:131;:::i;:::-;25139:139;;24866:419;;;:::o;25291:::-;25457:4;25495:2;25484:9;25480:18;25472:26;;25544:9;25538:4;25534:20;25530:1;25519:9;25515:17;25508:47;25572:131;25698:4;25572:131;:::i;:::-;25564:139;;25291:419;;;:::o;25716:::-;25882:4;25920:2;25909:9;25905:18;25897:26;;25969:9;25963:4;25959:20;25955:1;25944:9;25940:17;25933:47;25997:131;26123:4;25997:131;:::i;:::-;25989:139;;25716:419;;;:::o;26141:::-;26307:4;26345:2;26334:9;26330:18;26322:26;;26394:9;26388:4;26384:20;26380:1;26369:9;26365:17;26358:47;26422:131;26548:4;26422:131;:::i;:::-;26414:139;;26141:419;;;:::o;26566:::-;26732:4;26770:2;26759:9;26755:18;26747:26;;26819:9;26813:4;26809:20;26805:1;26794:9;26790:17;26783:47;26847:131;26973:4;26847:131;:::i;:::-;26839:139;;26566:419;;;:::o;26991:::-;27157:4;27195:2;27184:9;27180:18;27172:26;;27244:9;27238:4;27234:20;27230:1;27219:9;27215:17;27208:47;27272:131;27398:4;27272:131;:::i;:::-;27264:139;;26991:419;;;:::o;27416:222::-;27509:4;27547:2;27536:9;27532:18;27524:26;;27560:71;27628:1;27617:9;27613:17;27604:6;27560:71;:::i;:::-;27416:222;;;;:::o;27644:214::-;27733:4;27771:2;27760:9;27756:18;27748:26;;27784:67;27848:1;27837:9;27833:17;27824:6;27784:67;:::i;:::-;27644:214;;;;:::o;27864:129::-;27898:6;27925:20;;:::i;:::-;27915:30;;27954:33;27982:4;27974:6;27954:33;:::i;:::-;27864:129;;;:::o;27999:75::-;28032:6;28065:2;28059:9;28049:19;;27999:75;:::o;28080:307::-;28141:4;28231:18;28223:6;28220:30;28217:56;;;28253:18;;:::i;:::-;28217:56;28291:29;28313:6;28291:29;:::i;:::-;28283:37;;28375:4;28369;28365:15;28357:23;;28080:307;;;:::o;28393:308::-;28455:4;28545:18;28537:6;28534:30;28531:56;;;28567:18;;:::i;:::-;28531:56;28605:29;28627:6;28605:29;:::i;:::-;28597:37;;28689:4;28683;28679:15;28671:23;;28393:308;;;:::o;28707:141::-;28756:4;28779:3;28771:11;;28802:3;28799:1;28792:14;28836:4;28833:1;28823:18;28815:26;;28707:141;;;:::o;28854:98::-;28905:6;28939:5;28933:12;28923:22;;28854:98;;;:::o;28958:99::-;29010:6;29044:5;29038:12;29028:22;;28958:99;;;:::o;29063:168::-;29146:11;29180:6;29175:3;29168:19;29220:4;29215:3;29211:14;29196:29;;29063:168;;;;:::o;29237:147::-;29338:11;29375:3;29360:18;;29237:147;;;;:::o;29390:169::-;29474:11;29508:6;29503:3;29496:19;29548:4;29543:3;29539:14;29524:29;;29390:169;;;;:::o;29565:148::-;29667:11;29704:3;29689:18;;29565:148;;;;:::o;29719:305::-;29759:3;29778:20;29796:1;29778:20;:::i;:::-;29773:25;;29812:20;29830:1;29812:20;:::i;:::-;29807:25;;29966:1;29898:66;29894:74;29891:1;29888:81;29885:107;;;29972:18;;:::i;:::-;29885:107;30016:1;30013;30009:9;30002:16;;29719:305;;;;:::o;30030:237::-;30068:3;30087:18;30103:1;30087:18;:::i;:::-;30082:23;;30119:18;30135:1;30119:18;:::i;:::-;30114:23;;30209:1;30203:4;30199:12;30196:1;30193:19;30190:45;;;30215:18;;:::i;:::-;30190:45;30259:1;30256;30252:9;30245:16;;30030:237;;;;:::o;30273:348::-;30313:7;30336:20;30354:1;30336:20;:::i;:::-;30331:25;;30370:20;30388:1;30370:20;:::i;:::-;30365:25;;30558:1;30490:66;30486:74;30483:1;30480:81;30475:1;30468:9;30461:17;30457:105;30454:131;;;30565:18;;:::i;:::-;30454:131;30613:1;30610;30606:9;30595:20;;30273:348;;;;:::o;30627:191::-;30667:4;30687:20;30705:1;30687:20;:::i;:::-;30682:25;;30721:20;30739:1;30721:20;:::i;:::-;30716:25;;30760:1;30757;30754:8;30751:34;;;30765:18;;:::i;:::-;30751:34;30810:1;30807;30803:9;30795:17;;30627:191;;;;:::o;30824:96::-;30861:7;30890:24;30908:5;30890:24;:::i;:::-;30879:35;;30824:96;;;:::o;30926:90::-;30960:7;31003:5;30996:13;30989:21;30978:32;;30926:90;;;:::o;31022:77::-;31059:7;31088:5;31077:16;;31022:77;;;:::o;31105:149::-;31141:7;31181:66;31174:5;31170:78;31159:89;;31105:149;;;:::o;31260:126::-;31297:7;31337:42;31330:5;31326:54;31315:65;;31260:126;;;:::o;31392:77::-;31429:7;31458:5;31447:16;;31392:77;;;:::o;31475:86::-;31510:7;31550:4;31543:5;31539:16;31528:27;;31475:86;;;:::o;31567:154::-;31651:6;31646:3;31641;31628:30;31713:1;31704:6;31699:3;31695:16;31688:27;31567:154;;;:::o;31727:307::-;31795:1;31805:113;31819:6;31816:1;31813:13;31805:113;;;31904:1;31899:3;31895:11;31889:18;31885:1;31880:3;31876:11;31869:39;31841:2;31838:1;31834:10;31829:15;;31805:113;;;31936:6;31933:1;31930:13;31927:101;;;32016:1;32007:6;32002:3;31998:16;31991:27;31927:101;31776:258;31727:307;;;:::o;32040:320::-;32084:6;32121:1;32115:4;32111:12;32101:22;;32168:1;32162:4;32158:12;32189:18;32179:81;;32245:4;32237:6;32233:17;32223:27;;32179:81;32307:2;32299:6;32296:14;32276:18;32273:38;32270:84;;;32326:18;;:::i;:::-;32270:84;32091:269;32040:320;;;:::o;32366:281::-;32449:27;32471:4;32449:27;:::i;:::-;32441:6;32437:40;32579:6;32567:10;32564:22;32543:18;32531:10;32528:34;32525:62;32522:88;;;32590:18;;:::i;:::-;32522:88;32630:10;32626:2;32619:22;32409:238;32366:281;;:::o;32653:233::-;32692:3;32715:24;32733:5;32715:24;:::i;:::-;32706:33;;32761:66;32754:5;32751:77;32748:103;;;32831:18;;:::i;:::-;32748:103;32878:1;32871:5;32867:13;32860:20;;32653:233;;;:::o;32892:100::-;32931:7;32960:26;32980:5;32960:26;:::i;:::-;32949:37;;32892:100;;;:::o;32998:94::-;33037:7;33066:20;33080:5;33066:20;:::i;:::-;33055:31;;32998:94;;;:::o;33098:180::-;33146:77;33143:1;33136:88;33243:4;33240:1;33233:15;33267:4;33264:1;33257:15;33284:180;33332:77;33329:1;33322:88;33429:4;33426:1;33419:15;33453:4;33450:1;33443:15;33470:180;33518:77;33515:1;33508:88;33615:4;33612:1;33605:15;33639:4;33636:1;33629:15;33656:180;33704:77;33701:1;33694:88;33801:4;33798:1;33791:15;33825:4;33822:1;33815:15;33842:180;33890:77;33887:1;33880:88;33987:4;33984:1;33977:15;34011:4;34008:1;34001:15;34028:180;34076:77;34073:1;34066:88;34173:4;34170:1;34163:15;34197:4;34194:1;34187:15;34214:117;34323:1;34320;34313:12;34337:117;34446:1;34443;34436:12;34460:117;34569:1;34566;34559:12;34583:117;34692:1;34689;34682:12;34706:117;34815:1;34812;34805:12;34829:117;34938:1;34935;34928:12;34952:102;34993:6;35044:2;35040:7;35035:2;35028:5;35024:14;35020:28;35010:38;;34952:102;;;:::o;35060:94::-;35093:8;35141:5;35137:2;35133:14;35112:35;;35060:94;;;:::o;35160:180::-;35300:32;35296:1;35288:6;35284:14;35277:56;35160:180;:::o;35346:171::-;35486:23;35482:1;35474:6;35470:14;35463:47;35346:171;:::o;35523:225::-;35663:34;35659:1;35651:6;35647:14;35640:58;35732:8;35727:2;35719:6;35715:15;35708:33;35523:225;:::o;35754:180::-;35894:32;35890:1;35882:6;35878:14;35871:56;35754:180;:::o;35940:220::-;36080:34;36076:1;36068:6;36064:14;36057:58;36149:3;36144:2;36136:6;36132:15;36125:28;35940:220;:::o;36166:222::-;36306:34;36302:1;36294:6;36290:14;36283:58;36375:5;36370:2;36362:6;36358:15;36351:30;36166:222;:::o;36394:177::-;36534:29;36530:1;36522:6;36518:14;36511:53;36394:177;:::o;36577:182::-;36717:34;36713:1;36705:6;36701:14;36694:58;36577:182;:::o;36765:234::-;36905:34;36901:1;36893:6;36889:14;36882:58;36974:17;36969:2;36961:6;36957:15;36950:42;36765:234;:::o;37005:222::-;37145:34;37141:1;37133:6;37129:14;37122:58;37214:5;37209:2;37201:6;37197:15;37190:30;37005:222;:::o;37233:177::-;37373:29;37369:1;37361:6;37357:14;37350:53;37233:177;:::o;37416:114::-;;:::o;37536:223::-;37676:34;37672:1;37664:6;37660:14;37653:58;37745:6;37740:2;37732:6;37728:15;37721:31;37536:223;:::o;37765:299::-;37905:34;37901:1;37893:6;37889:14;37882:58;37974:34;37969:2;37961:6;37957:15;37950:59;38043:13;38038:2;38030:6;38026:15;38019:38;37765:299;:::o;38070:122::-;38143:24;38161:5;38143:24;:::i;:::-;38136:5;38133:35;38123:63;;38182:1;38179;38172:12;38123:63;38070:122;:::o;38198:116::-;38268:21;38283:5;38268:21;:::i;:::-;38261:5;38258:32;38248:60;;38304:1;38301;38294:12;38248:60;38198:116;:::o;38320:122::-;38393:24;38411:5;38393:24;:::i;:::-;38386:5;38383:35;38373:63;;38432:1;38429;38422:12;38373:63;38320:122;:::o;38448:120::-;38520:23;38537:5;38520:23;:::i;:::-;38513:5;38510:34;38500:62;;38558:1;38555;38548:12;38500:62;38448:120;:::o;38574:122::-;38647:24;38665:5;38647:24;:::i;:::-;38640:5;38637:35;38627:63;;38686:1;38683;38676:12;38627:63;38574:122;:::o;38702:118::-;38773:22;38789:5;38773:22;:::i;:::-;38766:5;38763:33;38753:61;;38810:1;38807;38800:12;38753:61;38702:118;:::o

Swarm Source

ipfs://36c8f2a826211312cb325a13e3a5b99798f46ba548a4a2ce98022d5529df4aa8
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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