ETH Price: $2,682.25 (-2.30%)

Token

MUMU (MUMU)
 

Overview

Max Total Supply

259 MUMU

Holders

25

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
10 MUMU
0xfde602106df35d061e8c7dd96284d59c8de39faf
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:
MUMU

Compiler Version
v0.8.25+commit.b61c2a91

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-03-30
*/

// File: contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */


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

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

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

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

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

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

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

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

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

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

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

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

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

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of 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 through `_extraData`.
        uint24 extraData;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

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

    // ==============================
    //            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`.
     *
     * 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 calldata data
    ) external;

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}
// File: contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard,
 * including the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at `_startTokenId()`
 * (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 tokenId of the next token 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 => address) private _tokenApprovals;

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

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

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view 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 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 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 returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    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: 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 == 0x2a55205a || // ERC 2981 rotyalty
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view 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 {
        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;
    }

    /**
     * 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 ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

    /**
     * @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 See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    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 '';
    }

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ownerOf(tokenId);
        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

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

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }
    

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev 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 (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, 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 {
        _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 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 {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        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 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal {
        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 Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(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 `_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) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(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++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool 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))
                }
            }
        }
    }

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        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 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;
    }

    /**
     * @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 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 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 returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

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

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}
// File: @openzeppelin/contracts/utils/math/SignedMath.sol


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

pragma solidity ^0.8.20;

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

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

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

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

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


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

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.20;



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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.20;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev The ETH balance of the account is not enough to perform the operation.
     */
    error AddressInsufficientBalance(address account);

    /**
     * @dev There's no code at `target` (it is not a contract).
     */
    error AddressEmptyCode(address target);

    /**
     * @dev A call to an address target failed. The target may have reverted.
     */
    error FailedInnerCall();

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        if (address(this).balance < amount) {
            revert AddressInsufficientBalance(address(this));
        }

        (bool success, ) = recipient.call{value: amount}("");
        if (!success) {
            revert FailedInnerCall();
        }
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason or custom error, it is bubbled
     * up by this function (like regular Solidity function calls). However, if
     * the call reverted with no returned reason, this function reverts with a
     * {FailedInnerCall} error.
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        if (address(this).balance < value) {
            revert AddressInsufficientBalance(address(this));
        }
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
     * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an
     * unsuccessful call.
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata
    ) internal view returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            // only check if target is a contract if the call was successful and the return data is empty
            // otherwise we already know that it was a contract
            if (returndata.length == 0 && target.code.length == 0) {
                revert AddressEmptyCode(target);
            }
            return returndata;
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
     * revert reason or with a default {FailedInnerCall} error.
     */
    function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            return returndata;
        }
    }

    /**
     * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}.
     */
    function _revert(bytes memory returndata) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert FailedInnerCall();
        }
    }
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol


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

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 *
 * ==== Security Considerations
 *
 * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature
 * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be
 * considered as an intention to spend the allowance in any specific way. The second is that because permits have
 * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should
 * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be
 * generally recommended is:
 *
 * ```solidity
 * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {
 *     try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}
 *     doThing(..., value);
 * }
 *
 * function doThing(..., uint256 value) public {
 *     token.safeTransferFrom(msg.sender, address(this), value);
 *     ...
 * }
 * ```
 *
 * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of
 * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also
 * {SafeERC20-safeTransferFrom}).
 *
 * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so
 * contracts should have entry points that don't rely on permit.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     *
     * CAUTION: See Security Considerations above.
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

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


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

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol


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

pragma solidity ^0.8.20;




/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    /**
     * @dev An operation with an ERC20 token failed.
     */
    error SafeERC20FailedOperation(address token);

    /**
     * @dev Indicates a failed `decreaseAllowance` request.
     */
    error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease);

    /**
     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value)));
    }

    /**
     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
     */
    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value)));
    }

    /**
     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        forceApprove(token, spender, oldAllowance + value);
    }

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no
     * value, non-reverting calls are assumed to be successful.
     */
    function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal {
        unchecked {
            uint256 currentAllowance = token.allowance(address(this), spender);
            if (currentAllowance < requestedDecrease) {
                revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);
            }
            forceApprove(token, spender, currentAllowance - requestedDecrease);
        }
    }

    /**
     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
     * to be set to zero before setting it to a non-zero value, such as USDT.
     */
    function forceApprove(IERC20 token, address spender, uint256 value) internal {
        bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value));

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0)));
            _callOptionalReturn(token, approvalCall);
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data);
        if (returndata.length != 0 && !abi.decode(returndata, (bool))) {
            revert SafeERC20FailedOperation(address(token));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     *
     * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
     */
    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false
        // and not revert is the subcall reverts.

        (bool success, bytes memory returndata) = address(token).call(data);
        return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && address(token).code.length > 0;
    }
}

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


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

pragma solidity ^0.8.20;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the Merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates Merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     *@dev The multiproof provided is not valid.
     */
    error MerkleProofInvalidMultiproof();

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

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

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

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](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 from 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) {
            if (proofPos != proofLen) {
                revert MerkleProofInvalidMultiproof();
            }
            unchecked {
                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.
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the Merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

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

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](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 from 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) {
            if (proofPos != proofLen) {
                revert MerkleProofInvalidMultiproof();
            }
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Sorts the pair (a, b) and hashes the result.
     */
    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

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

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


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

pragma solidity ^0.8.20;

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

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

// File: @openzeppelin/contracts/finance/PaymentSplitter.sol


// OpenZeppelin Contracts (last updated v4.8.0) (finance/PaymentSplitter.sol)

pragma solidity ^0.8.0;




/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned. The distribution of shares is set at the
 * time of contract deployment and can't be updated thereafter.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 *
 * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and
 * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you
 * to run tests before sending real value to this contract.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    mapping(IERC20 => uint256) private _erc20TotalReleased;
    mapping(IERC20 => mapping(address => uint256)) private _erc20Released;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20
     * contract.
     */
    function totalReleased(IERC20 token) public view returns (uint256) {
        return _erc20TotalReleased[token];
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an
     * IERC20 contract.
     */
    function released(IERC20 token, address account) public view returns (uint256) {
        return _erc20Released[token][account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Getter for the amount of payee's releasable Ether.
     */
    function releasable(address account) public view returns (uint256) {
        uint256 totalReceived = address(this).balance + totalReleased();
        return _pendingPayment(account, totalReceived, released(account));
    }

    /**
     * @dev Getter for the amount of payee's releasable `token` tokens. `token` should be the address of an
     * IERC20 contract.
     */
    function releasable(IERC20 token, address account) public view returns (uint256) {
        uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token);
        return _pendingPayment(account, totalReceived, released(token, account));
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 payment = releasable(account);

        require(payment != 0, "PaymentSplitter: account is not due payment");

        // _totalReleased is the sum of all values in _released.
        // If "_totalReleased += payment" does not overflow, then "_released[account] += payment" cannot overflow.
        _totalReleased += payment;
        unchecked {
            _released[account] += payment;
        }

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their
     * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20
     * contract.
     */
    function release(IERC20 token, address account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 payment = releasable(token, account);

        require(payment != 0, "PaymentSplitter: account is not due payment");

        // _erc20TotalReleased[token] is the sum of all values in _erc20Released[token].
        // If "_erc20TotalReleased[token] += payment" does not overflow, then "_erc20Released[token][account] += payment"
        // cannot overflow.
        _erc20TotalReleased[token] += payment;
        unchecked {
            _erc20Released[token][account] += payment;
        }

        SafeERC20.safeTransfer(token, account, payment);
        emit ERC20PaymentReleased(token, account, payment);
    }

    /**
     * @dev internal logic for computing the pending payment of an `account` given the token historical balances and
     * already released amounts.
     */
    function _pendingPayment(
        address account,
        uint256 totalReceived,
        uint256 alreadyReleased
    ) private view returns (uint256) {
        return (totalReceived * _shares[account]) / _totalShares - alreadyReleased;
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

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


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

pragma solidity ^0.8.20;


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

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

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

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

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

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

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

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

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

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

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

// File: contracts/MUMU.sol


pragma solidity ^0.8.22;






contract MUMU is Ownable, ERC721A, PaymentSplitter {

    using Strings for uint;

    enum Step {
        Off,
        On
    }

    string public baseURI;

    Step public sellingStep = Step.On;

    uint public  MAX_SUPPLY = 2018;
    uint public  MAX_TOTAL_PUBLIC = 2018;


    uint public MAX_PER_WALLET_PUBLIC = 2018;


    uint public publicSalePrice = 0.035 ether;

    uint256 public saleStartTime = 1711994400;


    mapping(address => uint) public amountNFTsperWalletPUBLIC;


    uint private teamLength;

    uint96 royaltyFeesInBips;
    address royaltyReceiver;

    constructor(uint96 _royaltyFeesInBips, address[] memory _team, uint[] memory _teamShares, string memory _baseURI, address _initialOwner, address _fundsReceiver) ERC721A("MUMU", "MUMU")
    PaymentSplitter(_team, _teamShares) Ownable(_initialOwner) {
        baseURI = _baseURI;
        teamLength = _team.length;
        royaltyFeesInBips = _royaltyFeesInBips;
        royaltyReceiver = _fundsReceiver;
        sellingStep = Step.On;
    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }


    function publicSaleMint(address _account, uint _quantity) external payable  {
        require(sellingStep == Step.On, "Sale is stopeed");
        require(block.timestamp > saleStartTime, "Public sale is not activated");
        require(totalSupply() + _quantity <= MAX_TOTAL_PUBLIC, "Max supply exceeded");
        require(totalSupply() + _quantity <= MAX_SUPPLY, "Max supply exceeded");
        require(amountNFTsperWalletPUBLIC[_account] + _quantity <= MAX_PER_WALLET_PUBLIC, "Max per wallet limit reached");
        require(msg.value >= publicSalePrice * _quantity, "Not enought funds");
        amountNFTsperWalletPUBLIC[_account] += _quantity;
        _safeMint(_account, _quantity);
    }

    function gift(address _to, uint _quantity) external onlyOwner {
        require(totalSupply() + _quantity <= MAX_SUPPLY, "Reached max Supply");
        _safeMint(_to, _quantity);
    }

    function lowerSupply (uint _MAX_SUPPLY) external onlyOwner{
        require(_MAX_SUPPLY < MAX_SUPPLY, "Cannot increase supply!");
        MAX_SUPPLY = _MAX_SUPPLY;
    }

    function setMaxTotalPUBLIC(uint _MAX_TOTAL_PUBLIC) external onlyOwner {
        MAX_TOTAL_PUBLIC = _MAX_TOTAL_PUBLIC;
    }

    function setMaxPerWalletPUBLIC(uint _MAX_PER_WALLET_PUBLIC) external onlyOwner {
        MAX_PER_WALLET_PUBLIC = _MAX_PER_WALLET_PUBLIC;
    }

    function setPublicSalePrice(uint _publicSalePrice) external onlyOwner {
        publicSalePrice = _publicSalePrice;
    }

    function setBaseUri(string memory _baseURI) external onlyOwner {
        baseURI = _baseURI;
    }

    function setStep(uint _step) external onlyOwner {
        sellingStep = Step(_step);
    }

    function setSaleStartTime(uint256 _startTime) external onlyOwner {
        saleStartTime = _startTime;
    }

    function tokenURI(uint _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId), "URI query for nonexistent token");

        return string(abi.encodePacked(baseURI, _tokenId.toString(), ".json"));
    }

    function royaltyInfo (
    //uint256 _tokenId,
    uint256 _salePrice
     ) external view returns (
        address receiver,
        uint256 royaltyAmount
     ){
         return (royaltyReceiver, calculateRoyalty(_salePrice));
     }

    function calculateRoyalty(uint256 _salePrice) view public returns (uint256){
        return(_salePrice / 10000) * royaltyFeesInBips;
    }

    function setRoyaltyInfo (address _receiver, uint96 _royaltyFeesInBips) public onlyOwner {
        royaltyReceiver = _receiver;
        royaltyFeesInBips = _royaltyFeesInBips;
    }

    //ReleaseALL
    function releaseAll() external onlyOwner {
        for(uint i = 0 ; i < teamLength ; i++) {
            release(payable(payee(i)));
        }
    }

    receive() override external payable {
        revert('Only if you mint');
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint96","name":"_royaltyFeesInBips","type":"uint96"},{"internalType":"address[]","name":"_team","type":"address[]"},{"internalType":"uint256[]","name":"_teamShares","type":"uint256[]"},{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"address","name":"_initialOwner","type":"address"},{"internalType":"address","name":"_fundsReceiver","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","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":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_WALLET_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOTAL_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"amountNFTsperWalletPUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"calculateRoyalty","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":"_to","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_SUPPLY","type":"uint256"}],"name":"lowerSupply","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":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"releaseAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellingStep","outputs":[{"internalType":"enum MUMU.Step","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_PER_WALLET_PUBLIC","type":"uint256"}],"name":"setMaxPerWalletPUBLIC","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_TOTAL_PUBLIC","type":"uint256"}],"name":"setMaxTotalPUBLIC","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicSalePrice","type":"uint256"}],"name":"setPublicSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_royaltyFeesInBips","type":"uint96"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startTime","type":"uint256"}],"name":"setSaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_step","type":"uint256"}],"name":"setStep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600160115f6101000a81548160ff0219169083600181111561002957610028610634565b5b02179055506107e26012556107e26013556107e2601455667c58508723800060155563660af62060165534801561005e575f80fd5b506040516156d93803806156d983398181016040528101906100809190610a00565b84846040518060400160405280600481526020017f4d554d55000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d554d5500000000000000000000000000000000000000000000000000000000815250855f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361015f575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016101569190610aec565b60405180910390fd5b61016e8161034960201b60201c565b50816003908161017e9190610d09565b50806004908161018e9190610d09565b5061019d61040a60201b60201c565b600181905550505080518251146101e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101e090610e58565b60405180910390fd5b5f82511161022c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161022390610ec0565b60405180910390fd5b5f5b82518110156102885761027b83828151811061024d5761024c610ede565b5b602002602001015183838151811061026857610267610ede565b5b602002602001015161041260201b60201c565b808060010191505061022e565b505050826010908161029a9190610d09565b5084516018819055508560195f6101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550806019600c6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160115f6101000a81548160ff0219169083600181111561033957610338610634565b5b0217905550505050505050611125565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6001905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610480576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161047790610f7b565b60405180910390fd5b5f81116104c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104b990610fe3565b60405180910390fd5b5f600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205414610541576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053890611071565b60405180910390fd5b600d82908060018154018082558091505060019003905f5260205f20015f9091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550806009546105f191906110bc565b6009819055507f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac82826040516106289291906110fe565b60405180910390a15050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffd5b5f604051905090565b5f80fd5b5f80fd5b5f6bffffffffffffffffffffffff82169050919050565b61069281610672565b811461069c575f80fd5b50565b5f815190506106ad81610689565b92915050565b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6106fd826106b7565b810181811067ffffffffffffffff8211171561071c5761071b6106c7565b5b80604052505050565b5f61072e610661565b905061073a82826106f4565b919050565b5f67ffffffffffffffff821115610759576107586106c7565b5b602082029050602081019050919050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6107978261076e565b9050919050565b6107a78161078d565b81146107b1575f80fd5b50565b5f815190506107c28161079e565b92915050565b5f6107da6107d58461073f565b610725565b905080838252602082019050602084028301858111156107fd576107fc61076a565b5b835b81811015610826578061081288826107b4565b8452602084019350506020810190506107ff565b5050509392505050565b5f82601f830112610844576108436106b3565b5b81516108548482602086016107c8565b91505092915050565b5f67ffffffffffffffff821115610877576108766106c7565b5b602082029050602081019050919050565b5f819050919050565b61089a81610888565b81146108a4575f80fd5b50565b5f815190506108b581610891565b92915050565b5f6108cd6108c88461085d565b610725565b905080838252602082019050602084028301858111156108f0576108ef61076a565b5b835b81811015610919578061090588826108a7565b8452602084019350506020810190506108f2565b5050509392505050565b5f82601f830112610937576109366106b3565b5b81516109478482602086016108bb565b91505092915050565b5f80fd5b5f67ffffffffffffffff82111561096e5761096d6106c7565b5b610977826106b7565b9050602081019050919050565b8281835e5f83830152505050565b5f6109a461099f84610954565b610725565b9050828152602081018484840111156109c0576109bf610950565b5b6109cb848285610984565b509392505050565b5f82601f8301126109e7576109e66106b3565b5b81516109f7848260208601610992565b91505092915050565b5f805f805f8060c08789031215610a1a57610a1961066a565b5b5f610a2789828a0161069f565b965050602087015167ffffffffffffffff811115610a4857610a4761066e565b5b610a5489828a01610830565b955050604087015167ffffffffffffffff811115610a7557610a7461066e565b5b610a8189828a01610923565b945050606087015167ffffffffffffffff811115610aa257610aa161066e565b5b610aae89828a016109d3565b9350506080610abf89828a016107b4565b92505060a0610ad089828a016107b4565b9150509295509295509295565b610ae68161078d565b82525050565b5f602082019050610aff5f830184610add565b92915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610b5357607f821691505b602082108103610b6657610b65610b0f565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302610bc87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610b8d565b610bd28683610b8d565b95508019841693508086168417925050509392505050565b5f819050919050565b5f610c0d610c08610c0384610888565b610bea565b610888565b9050919050565b5f819050919050565b610c2683610bf3565b610c3a610c3282610c14565b848454610b99565b825550505050565b5f90565b610c4e610c42565b610c59818484610c1d565b505050565b5b81811015610c7c57610c715f82610c46565b600181019050610c5f565b5050565b601f821115610cc157610c9281610b6c565b610c9b84610b7e565b81016020851015610caa578190505b610cbe610cb685610b7e565b830182610c5e565b50505b505050565b5f82821c905092915050565b5f610ce15f1984600802610cc6565b1980831691505092915050565b5f610cf98383610cd2565b9150826002028217905092915050565b610d1282610b05565b67ffffffffffffffff811115610d2b57610d2a6106c7565b5b610d358254610b3c565b610d40828285610c80565b5f60209050601f831160018114610d71575f8415610d5f578287015190505b610d698582610cee565b865550610dd0565b601f198416610d7f86610b6c565b5f5b82811015610da657848901518255600182019150602085019450602081019050610d81565b86831015610dc35784890151610dbf601f891682610cd2565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f5061796d656e7453706c69747465723a2070617965657320616e6420736861725f8201527f6573206c656e677468206d69736d617463680000000000000000000000000000602082015250565b5f610e42603283610dd8565b9150610e4d82610de8565b604082019050919050565b5f6020820190508181035f830152610e6f81610e36565b9050919050565b7f5061796d656e7453706c69747465723a206e6f207061796565730000000000005f82015250565b5f610eaa601a83610dd8565b9150610eb582610e76565b602082019050919050565b5f6020820190508181035f830152610ed781610e9e565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f5061796d656e7453706c69747465723a206163636f756e7420697320746865205f8201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b5f610f65602c83610dd8565b9150610f7082610f0b565b604082019050919050565b5f6020820190508181035f830152610f9281610f59565b9050919050565b7f5061796d656e7453706c69747465723a207368617265732061726520300000005f82015250565b5f610fcd601d83610dd8565b9150610fd882610f99565b602082019050919050565b5f6020820190508181035f830152610ffa81610fc1565b9050919050565b7f5061796d656e7453706c69747465723a206163636f756e7420616c72656164795f8201527f2068617320736861726573000000000000000000000000000000000000000000602082015250565b5f61105b602b83610dd8565b915061106682611001565b604082019050919050565b5f6020820190508181035f8301526110888161104f565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6110c682610888565b91506110d183610888565b92508282019050808211156110e9576110e861108f565b5b92915050565b6110f881610888565b82525050565b5f6040820190506111115f830185610add565b61111e60208301846110ef565b9392505050565b6145a7806111325f395ff3fe6080604052600436106102b1575f3560e01c80638b83209b11610174578063b88d4fde116100db578063ce7c2ac211610094578063e33b7de31161006e578063e33b7de314610b12578063e985e9c514610b3c578063f2fde38b14610b78578063f8dcbddb14610ba0576102f1565b8063ce7c2ac214610a5d578063cef6d36814610a99578063d79779b214610ad6576102f1565b8063b88d4fde14610943578063c45ac0501461096b578063c7153816146109a7578063c87b56dd146109cf578063cbccefb214610a0b578063cbce4c9714610a35576102f1565b8063a0bcfc7f1161012d578063a0bcfc7f14610837578063a22cb4651461085f578063a2e6961314610887578063a3f8eace146108c3578063ac5ae11b146108ff578063b74ce1f01461091b576102f1565b80638b83209b146107055780638da5cb5b146107415780638eb478a61461076b57806395d89b41146107a75780639852595c146107d15780639b6860c81461080d576102f1565b8063406072a9116102185780636352211e116101d15780636352211e146105fb57806364affb40146106375780636c0360eb1461066157806370a082311461068b578063715018a6146106c7578063791a2519146106dd576102f1565b8063406072a91461050957806342842e0e1461054557806348b750441461056d578063525f8a5c1461059557806355cf5912146105bd5780635be7fde8146105e5576102f1565b806318160ddd1161026a57806318160ddd14610411578063191655871461043b5780631cbaee2d1461046357806323b872dd1461048d57806332cb6b0c146104b55780633a98ef39146104df576102f1565b806301ffc9a7146102f557806302fa7c471461033157806306fdde0314610359578063081812fc14610383578063095ea7b3146103bf57806317d5e67a146103e7576102f1565b366102f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102e8906130cd565b60405180910390fd5b5f80fd5b348015610300575f80fd5b5061031b60048036038101906103169190613151565b610bc8565b6040516103289190613196565b60405180910390f35b34801561033c575f80fd5b506103576004803603810190610352919061324a565b610c89565b005b348015610364575f80fd5b5061036d610d06565b60405161037a91906132e8565b60405180910390f35b34801561038e575f80fd5b506103a960048036038101906103a4919061333b565b610d96565b6040516103b69190613375565b60405180910390f35b3480156103ca575f80fd5b506103e560048036038101906103e0919061338e565b610e0e565b005b3480156103f2575f80fd5b506103fb610f4b565b60405161040891906133db565b60405180910390f35b34801561041c575f80fd5b50610425610f51565b60405161043291906133db565b60405180910390f35b348015610446575f80fd5b50610461600480360381019061045c919061342f565b610f67565b005b34801561046e575f80fd5b506104776110dd565b60405161048491906133db565b60405180910390f35b348015610498575f80fd5b506104b360048036038101906104ae919061345a565b6110e3565b005b3480156104c0575f80fd5b506104c96113f2565b6040516104d691906133db565b60405180910390f35b3480156104ea575f80fd5b506104f36113f8565b60405161050091906133db565b60405180910390f35b348015610514575f80fd5b5061052f600480360381019061052a91906134e5565b611401565b60405161053c91906133db565b60405180910390f35b348015610550575f80fd5b5061056b6004803603810190610566919061345a565b611483565b005b348015610578575f80fd5b50610593600480360381019061058e91906134e5565b6114a2565b005b3480156105a0575f80fd5b506105bb60048036038101906105b6919061333b565b6116a8565b005b3480156105c8575f80fd5b506105e360048036038101906105de919061333b565b6116ba565b005b3480156105f0575f80fd5b506105f96116cc565b005b348015610606575f80fd5b50610621600480360381019061061c919061333b565b611701565b60405161062e9190613375565b60405180910390f35b348015610642575f80fd5b5061064b611712565b60405161065891906133db565b60405180910390f35b34801561066c575f80fd5b50610675611718565b60405161068291906132e8565b60405180910390f35b348015610696575f80fd5b506106b160048036038101906106ac9190613523565b6117a4565b6040516106be91906133db565b60405180910390f35b3480156106d2575f80fd5b506106db611859565b005b3480156106e8575f80fd5b5061070360048036038101906106fe919061333b565b61186c565b005b348015610710575f80fd5b5061072b6004803603810190610726919061333b565b61187e565b6040516107389190613375565b60405180910390f35b34801561074c575f80fd5b506107556118c2565b6040516107629190613375565b60405180910390f35b348015610776575f80fd5b50610791600480360381019061078c9190613523565b6118e9565b60405161079e91906133db565b60405180910390f35b3480156107b2575f80fd5b506107bb6118fe565b6040516107c891906132e8565b60405180910390f35b3480156107dc575f80fd5b506107f760048036038101906107f29190613523565b61198e565b60405161080491906133db565b60405180910390f35b348015610818575f80fd5b506108216119d4565b60405161082e91906133db565b60405180910390f35b348015610842575f80fd5b5061085d6004803603810190610858919061367a565b6119da565b005b34801561086a575f80fd5b50610885600480360381019061088091906136eb565b6119f5565b005b348015610892575f80fd5b506108ad60048036038101906108a8919061333b565b611b67565b6040516108ba91906133db565b60405180910390f35b3480156108ce575f80fd5b506108e960048036038101906108e49190613523565b611baf565b6040516108f691906133db565b60405180910390f35b6109196004803603810190610914919061338e565b611be1565b005b348015610926575f80fd5b50610941600480360381019061093c919061333b565b611e85565b005b34801561094e575f80fd5b50610969600480360381019061096491906137c7565b611e97565b005b348015610976575f80fd5b50610991600480360381019061098c91906134e5565b611f09565b60405161099e91906133db565b60405180910390f35b3480156109b2575f80fd5b506109cd60048036038101906109c8919061333b565b611fb5565b005b3480156109da575f80fd5b506109f560048036038101906109f0919061333b565b61200b565b604051610a0291906132e8565b60405180910390f35b348015610a16575f80fd5b50610a1f612087565b604051610a2c91906138ba565b60405180910390f35b348015610a40575f80fd5b50610a5b6004803603810190610a56919061338e565b612099565b005b348015610a68575f80fd5b50610a836004803603810190610a7e9190613523565b612106565b604051610a9091906133db565b60405180910390f35b348015610aa4575f80fd5b50610abf6004803603810190610aba919061333b565b61214c565b604051610acd9291906138d3565b60405180910390f35b348015610ae1575f80fd5b50610afc6004803603810190610af791906138fa565b612183565b604051610b0991906133db565b60405180910390f35b348015610b1d575f80fd5b50610b266121c9565b604051610b3391906133db565b60405180910390f35b348015610b47575f80fd5b50610b626004803603810190610b5d9190613925565b6121d2565b604051610b6f9190613196565b60405180910390f35b348015610b83575f80fd5b50610b9e6004803603810190610b999190613523565b612260565b005b348015610bab575f80fd5b50610bc66004803603810190610bc1919061333b565b6122e4565b005b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c2257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c525750632a55205a60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c825750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610c9161232a565b816019600c6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060195f6101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055505050565b606060038054610d1590613990565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4190613990565b8015610d8c5780601f10610d6357610100808354040283529160200191610d8c565b820191905f5260205f20905b815481529060010190602001808311610d6f57829003601f168201915b5050505050905090565b5f610da0826123b1565b610dd6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60075f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f610e1882611701565b90508073ffffffffffffffffffffffffffffffffffffffff16610e3961240c565b73ffffffffffffffffffffffffffffffffffffffff1614610e9c57610e6581610e6061240c565b6121d2565b610e9b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260075f8481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60135481565b5f610f5a612413565b6002546001540303905090565b5f600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205411610fe6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdd90613a30565b60405180910390fd5b5f610ff082611baf565b90505f8103611034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102b90613abe565b60405180910390fd5b80600a5f8282546110459190613b09565b9250508190555080600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055506110a0828261241b565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b05682826040516110d1929190613b97565b60405180910390a15050565b60165481565b5f6110ed82612504565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611154576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f8061115f846125c8565b91509150611175818761117061240c565b6125e6565b6111c15761118a8661118561240c565b6121d2565b6111c0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611226576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6112338686866001612629565b801561123d575f82555b60065f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550611305856112e188888761262f565b7c020000000000000000000000000000000000000000000000000000000017612656565b60055f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603611382575f6001850190505f60055f8381526020019081526020015f20540361138057600154811461137f578360055f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113ea8686866001612680565b505050505050565b60125481565b5f600954905090565b5f600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61149d83838360405180602001604052805f815250611e97565b505050565b5f600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205411611521576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151890613a30565b60405180910390fd5b5f61152c8383611f09565b90505f8103611570576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156790613abe565b60405180910390fd5b80600e5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546115bc9190613b09565b9250508190555080600f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550611653838383612686565b8273ffffffffffffffffffffffffffffffffffffffff167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a838360405161169b9291906138d3565b60405180910390a2505050565b6116b061232a565b8060168190555050565b6116c261232a565b8060148190555050565b6116d461232a565b5f5b6018548110156116fe576116f16116ec8261187e565b610f67565b80806001019150506116d6565b50565b5f61170b82612504565b9050919050565b60145481565b6010805461172590613990565b80601f016020809104026020016040519081016040528092919081815260200182805461175190613990565b801561179c5780601f106117735761010080835404028352916020019161179c565b820191905f5260205f20905b81548152906001019060200180831161177f57829003601f168201915b505050505081565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361180a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b61186161232a565b61186a5f612705565b565b61187461232a565b8060158190555050565b5f600d828154811061189357611892613bbe565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6017602052805f5260405f205f915090505481565b60606004805461190d90613990565b80601f016020809104026020016040519081016040528092919081815260200182805461193990613990565b80156119845780601f1061195b57610100808354040283529160200191611984565b820191905f5260205f20905b81548152906001019060200180831161196757829003601f168201915b5050505050905090565b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60155481565b6119e261232a565b80601090816119f19190613d7f565b5050565b6119fd61240c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a61576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060085f611a6d61240c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b1661240c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b5b9190613196565b60405180910390a35050565b5f60195f9054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1661271083611b9e9190613e7b565b611ba89190613eab565b9050919050565b5f80611bb96121c9565b47611bc49190613b09565b9050611bd98382611bd48661198e565b6127c6565b915050919050565b600180811115611bf457611bf3613847565b5b60115f9054906101000a900460ff166001811115611c1557611c14613847565b5b14611c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4c90613f36565b60405180910390fd5b6016544211611c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9090613f9e565b60405180910390fd5b60135481611ca5610f51565b611caf9190613b09565b1115611cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce790614006565b60405180910390fd5b60125481611cfc610f51565b611d069190613b09565b1115611d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3e90614006565b60405180910390fd5b6014548160175f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611d939190613b09565b1115611dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcb9061406e565b60405180910390fd5b80601554611de29190613eab565b341015611e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1b906140d6565b60405180910390fd5b8060175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611e709190613b09565b92505081905550611e818282612831565b5050565b611e8d61232a565b8060138190555050565b611ea28484846110e3565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14611f0357611ecc8484848461284e565b611f02576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b5f80611f1484612183565b8473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611f4d9190613375565b602060405180830381865afa158015611f68573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f8c9190614108565b611f969190613b09565b9050611fac8382611fa78787611401565b6127c6565b91505092915050565b611fbd61232a565b6012548110612001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff89061417d565b60405180910390fd5b8060128190555050565b6060612016826123b1565b612055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204c906141e5565b60405180910390fd5b601061206083612999565b604051602001612071929190614307565b6040516020818303038152906040529050919050565b60115f9054906101000a900460ff1681565b6120a161232a565b601254816120ad610f51565b6120b79190613b09565b11156120f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ef9061437f565b60405180910390fd5b6121028282612831565b5050565b5f600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f806019600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661217a84611b67565b91509150915091565b5f600e5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f600a54905090565b5f60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b61226861232a565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036122d8575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016122cf9190613375565b60405180910390fd5b6122e181612705565b50565b6122ec61232a565b8060018111156122ff576122fe613847565b5b60115f6101000a81548160ff0219169083600181111561232257612321613847565b5b021790555050565b612332612a63565b73ffffffffffffffffffffffffffffffffffffffff166123506118c2565b73ffffffffffffffffffffffffffffffffffffffff16146123af57612373612a63565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016123a69190613375565b60405180910390fd5b565b5f816123bb612413565b111580156123ca575060015482105b801561240557505f7c010000000000000000000000000000000000000000000000000000000060055f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f6001905090565b8047101561246057306040517fcd7860590000000000000000000000000000000000000000000000000000000081526004016124579190613375565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff1682604051612485906143ca565b5f6040518083038185875af1925050503d805f81146124bf576040519150601f19603f3d011682016040523d82523d5f602084013e6124c4565b606091505b50509050806124ff576040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b5f8082905080612512612413565b1161259157600154811015612590575f60055f8381526020019081526020015f205490505f7c010000000000000000000000000000000000000000000000000000000082160361258e575b5f81036125845760055f836001900393508381526020019081526020015f2054905061255d565b80925050506125c3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f60079050835f528060205260405f2092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e8612645868684612a6a565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b612700838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85856040516024016126b99291906138d3565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612a72565b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81600954600b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054856128149190613eab565b61281e9190613e7b565b61282891906143de565b90509392505050565b61284a828260405180602001604052805f815250612b07565b5050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261287361240c565b8786866040518563ffffffff1660e01b81526004016128959493929190614463565b6020604051808303815f875af19250505080156128d057506040513d601f19601f820116820180604052508101906128cd91906144c1565b60015b612946573d805f81146128fe576040519150601f19603f3d011682016040523d82523d5f602084013e612903565b606091505b505f81510361293e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60605f60016129a784612ba0565b0190505f8167ffffffffffffffff8111156129c5576129c4613556565b5b6040519080825280601f01601f1916602001820160405280156129f75781602001600182028036833780820191505090505b5090505f82602001820190505b600115612a58578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612a4d57612a4c613e4e565b5b0494505f8503612a04575b819350505050919050565b5f33905090565b5f9392505050565b5f612a9c828473ffffffffffffffffffffffffffffffffffffffff16612cf190919063ffffffff16565b90505f815114158015612ac0575080806020019051810190612abe9190614500565b155b15612b0257826040517f5274afe7000000000000000000000000000000000000000000000000000000008152600401612af99190613375565b60405180910390fd5b505050565b612b118383612d06565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14612b9b575f60015490505f83820390505b612b4e5f86838060010194508661284e565b612b84576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612b3c578160015414612b98575f80fd5b50505b505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612bfc577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612bf257612bf1613e4e565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612c39576d04ee2d6d415b85acef81000000008381612c2f57612c2e613e4e565b5b0492506020810190505b662386f26fc100008310612c6857662386f26fc100008381612c5e57612c5d613e4e565b5b0492506010810190505b6305f5e1008310612c91576305f5e1008381612c8757612c86613e4e565b5b0492506008810190505b6127108310612cb6576127108381612cac57612cab613e4e565b5b0492506004810190505b60648310612cd95760648381612ccf57612cce613e4e565b5b0492506002810190505b600a8310612ce8576001810190505b80915050919050565b6060612cfe83835f612eca565b905092915050565b5f60015490505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612d71576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f8203612daa576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612db65f848385612629565b600160406001901b17820260065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550612e2883612e195f865f61262f565b612e2285612f93565b17612656565b60055f8381526020019081526020015f20819055505f8190505f83830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612e4857806001819055505050612ec55f848385612680565b505050565b606081471015612f1157306040517fcd786059000000000000000000000000000000000000000000000000000000008152600401612f089190613375565b60405180910390fd5b5f808573ffffffffffffffffffffffffffffffffffffffff168486604051612f39919061455b565b5f6040518083038185875af1925050503d805f8114612f73576040519150601f19603f3d011682016040523d82523d5f602084013e612f78565b606091505b5091509150612f88868383612fa2565b925050509392505050565b5f6001821460e11b9050919050565b606082612fb757612fb28261302f565b613027565b5f8251148015612fdd57505f8473ffffffffffffffffffffffffffffffffffffffff163b145b1561301f57836040517f9996b3150000000000000000000000000000000000000000000000000000000081526004016130169190613375565b60405180910390fd5b819050613028565b5b9392505050565b5f815111156130415780518082602001fd5b6040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f82825260208201905092915050565b7f4f6e6c7920696620796f75206d696e74000000000000000000000000000000005f82015250565b5f6130b7601083613073565b91506130c282613083565b602082019050919050565b5f6020820190508181035f8301526130e4816130ab565b9050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613130816130fc565b811461313a575f80fd5b50565b5f8135905061314b81613127565b92915050565b5f60208284031215613166576131656130f4565b5b5f6131738482850161313d565b91505092915050565b5f8115159050919050565b6131908161317c565b82525050565b5f6020820190506131a95f830184613187565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6131d8826131af565b9050919050565b6131e8816131ce565b81146131f2575f80fd5b50565b5f81359050613203816131df565b92915050565b5f6bffffffffffffffffffffffff82169050919050565b61322981613209565b8114613233575f80fd5b50565b5f8135905061324481613220565b92915050565b5f80604083850312156132605761325f6130f4565b5b5f61326d858286016131f5565b925050602061327e85828601613236565b9150509250929050565b5f81519050919050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6132ba82613288565b6132c48185613073565b93506132d4818560208601613292565b6132dd816132a0565b840191505092915050565b5f6020820190508181035f83015261330081846132b0565b905092915050565b5f819050919050565b61331a81613308565b8114613324575f80fd5b50565b5f8135905061333581613311565b92915050565b5f602082840312156133505761334f6130f4565b5b5f61335d84828501613327565b91505092915050565b61336f816131ce565b82525050565b5f6020820190506133885f830184613366565b92915050565b5f80604083850312156133a4576133a36130f4565b5b5f6133b1858286016131f5565b92505060206133c285828601613327565b9150509250929050565b6133d581613308565b82525050565b5f6020820190506133ee5f8301846133cc565b92915050565b5f6133fe826131af565b9050919050565b61340e816133f4565b8114613418575f80fd5b50565b5f8135905061342981613405565b92915050565b5f60208284031215613444576134436130f4565b5b5f6134518482850161341b565b91505092915050565b5f805f60608486031215613471576134706130f4565b5b5f61347e868287016131f5565b935050602061348f868287016131f5565b92505060406134a086828701613327565b9150509250925092565b5f6134b4826131ce565b9050919050565b6134c4816134aa565b81146134ce575f80fd5b50565b5f813590506134df816134bb565b92915050565b5f80604083850312156134fb576134fa6130f4565b5b5f613508858286016134d1565b9250506020613519858286016131f5565b9150509250929050565b5f60208284031215613538576135376130f4565b5b5f613545848285016131f5565b91505092915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61358c826132a0565b810181811067ffffffffffffffff821117156135ab576135aa613556565b5b80604052505050565b5f6135bd6130eb565b90506135c98282613583565b919050565b5f67ffffffffffffffff8211156135e8576135e7613556565b5b6135f1826132a0565b9050602081019050919050565b828183375f83830152505050565b5f61361e613619846135ce565b6135b4565b90508281526020810184848401111561363a57613639613552565b5b6136458482856135fe565b509392505050565b5f82601f8301126136615761366061354e565b5b813561367184826020860161360c565b91505092915050565b5f6020828403121561368f5761368e6130f4565b5b5f82013567ffffffffffffffff8111156136ac576136ab6130f8565b5b6136b88482850161364d565b91505092915050565b6136ca8161317c565b81146136d4575f80fd5b50565b5f813590506136e5816136c1565b92915050565b5f8060408385031215613701576137006130f4565b5b5f61370e858286016131f5565b925050602061371f858286016136d7565b9150509250929050565b5f67ffffffffffffffff82111561374357613742613556565b5b61374c826132a0565b9050602081019050919050565b5f61376b61376684613729565b6135b4565b90508281526020810184848401111561378757613786613552565b5b6137928482856135fe565b509392505050565b5f82601f8301126137ae576137ad61354e565b5b81356137be848260208601613759565b91505092915050565b5f805f80608085870312156137df576137de6130f4565b5b5f6137ec878288016131f5565b94505060206137fd878288016131f5565b935050604061380e87828801613327565b925050606085013567ffffffffffffffff81111561382f5761382e6130f8565b5b61383b8782880161379a565b91505092959194509250565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffd5b6002811061388557613884613847565b5b50565b5f81905061389582613874565b919050565b5f6138a482613888565b9050919050565b6138b48161389a565b82525050565b5f6020820190506138cd5f8301846138ab565b92915050565b5f6040820190506138e65f830185613366565b6138f360208301846133cc565b9392505050565b5f6020828403121561390f5761390e6130f4565b5b5f61391c848285016134d1565b91505092915050565b5f806040838503121561393b5761393a6130f4565b5b5f613948858286016131f5565b9250506020613959858286016131f5565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806139a757607f821691505b6020821081036139ba576139b9613963565b5b50919050565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f205f8201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b5f613a1a602683613073565b9150613a25826139c0565b604082019050919050565b5f6020820190508181035f830152613a4781613a0e565b9050919050565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f74205f8201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b5f613aa8602b83613073565b9150613ab382613a4e565b604082019050919050565b5f6020820190508181035f830152613ad581613a9c565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f613b1382613308565b9150613b1e83613308565b9250828201905080821115613b3657613b35613adc565b5b92915050565b5f819050919050565b5f613b5f613b5a613b55846131af565b613b3c565b6131af565b9050919050565b5f613b7082613b45565b9050919050565b5f613b8182613b66565b9050919050565b613b9181613b77565b82525050565b5f604082019050613baa5f830185613b88565b613bb760208301846133cc565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302613c477fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613c0c565b613c518683613c0c565b95508019841693508086168417925050509392505050565b5f613c83613c7e613c7984613308565b613b3c565b613308565b9050919050565b5f819050919050565b613c9c83613c69565b613cb0613ca882613c8a565b848454613c18565b825550505050565b5f90565b613cc4613cb8565b613ccf818484613c93565b505050565b5b81811015613cf257613ce75f82613cbc565b600181019050613cd5565b5050565b601f821115613d3757613d0881613beb565b613d1184613bfd565b81016020851015613d20578190505b613d34613d2c85613bfd565b830182613cd4565b50505b505050565b5f82821c905092915050565b5f613d575f1984600802613d3c565b1980831691505092915050565b5f613d6f8383613d48565b9150826002028217905092915050565b613d8882613288565b67ffffffffffffffff811115613da157613da0613556565b5b613dab8254613990565b613db6828285613cf6565b5f60209050601f831160018114613de7575f8415613dd5578287015190505b613ddf8582613d64565b865550613e46565b601f198416613df586613beb565b5f5b82811015613e1c57848901518255600182019150602085019450602081019050613df7565b86831015613e395784890151613e35601f891682613d48565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613e8582613308565b9150613e9083613308565b925082613ea057613e9f613e4e565b5b828204905092915050565b5f613eb582613308565b9150613ec083613308565b9250828202613ece81613308565b91508282048414831517613ee557613ee4613adc565b5b5092915050565b7f53616c652069732073746f7065656400000000000000000000000000000000005f82015250565b5f613f20600f83613073565b9150613f2b82613eec565b602082019050919050565b5f6020820190508181035f830152613f4d81613f14565b9050919050565b7f5075626c69632073616c65206973206e6f7420616374697661746564000000005f82015250565b5f613f88601c83613073565b9150613f9382613f54565b602082019050919050565b5f6020820190508181035f830152613fb581613f7c565b9050919050565b7f4d617820737570706c79206578636565646564000000000000000000000000005f82015250565b5f613ff0601383613073565b9150613ffb82613fbc565b602082019050919050565b5f6020820190508181035f83015261401d81613fe4565b9050919050565b7f4d6178207065722077616c6c6574206c696d69742072656163686564000000005f82015250565b5f614058601c83613073565b915061406382614024565b602082019050919050565b5f6020820190508181035f8301526140858161404c565b9050919050565b7f4e6f7420656e6f756768742066756e64730000000000000000000000000000005f82015250565b5f6140c0601183613073565b91506140cb8261408c565b602082019050919050565b5f6020820190508181035f8301526140ed816140b4565b9050919050565b5f8151905061410281613311565b92915050565b5f6020828403121561411d5761411c6130f4565b5b5f61412a848285016140f4565b91505092915050565b7f43616e6e6f7420696e63726561736520737570706c79210000000000000000005f82015250565b5f614167601783613073565b915061417282614133565b602082019050919050565b5f6020820190508181035f8301526141948161415b565b9050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e005f82015250565b5f6141cf601f83613073565b91506141da8261419b565b602082019050919050565b5f6020820190508181035f8301526141fc816141c3565b9050919050565b5f81905092915050565b5f815461421981613990565b6142238186614203565b9450600182165f811461423d576001811461425257614284565b60ff1983168652811515820286019350614284565b61425b85613beb565b5f5b8381101561427c5781548189015260018201915060208101905061425d565b838801955050505b50505092915050565b5f61429782613288565b6142a18185614203565b93506142b1818560208601613292565b80840191505092915050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f6142f1600583614203565b91506142fc826142bd565b600582019050919050565b5f614312828561420d565b915061431e828461428d565b9150614329826142e5565b91508190509392505050565b7f52656163686564206d617820537570706c7900000000000000000000000000005f82015250565b5f614369601283613073565b915061437482614335565b602082019050919050565b5f6020820190508181035f8301526143968161435d565b9050919050565b5f81905092915050565b50565b5f6143b55f8361439d565b91506143c0826143a7565b5f82019050919050565b5f6143d4826143aa565b9150819050919050565b5f6143e882613308565b91506143f383613308565b925082820390508181111561440b5761440a613adc565b5b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f61443582614411565b61443f818561441b565b935061444f818560208601613292565b614458816132a0565b840191505092915050565b5f6080820190506144765f830187613366565b6144836020830186613366565b61449060408301856133cc565b81810360608301526144a2818461442b565b905095945050505050565b5f815190506144bb81613127565b92915050565b5f602082840312156144d6576144d56130f4565b5b5f6144e3848285016144ad565b91505092915050565b5f815190506144fa816136c1565b92915050565b5f60208284031215614515576145146130f4565b5b5f614522848285016144ec565b91505092915050565b5f61453582614411565b61453f818561439d565b935061454f818560208601613292565b80840191505092915050565b5f614566828461452b565b91508190509291505056fea2646970667358221220ffebbb2ca07abdfdab14d62203683180de475bf395d713d80fcca5d586fe49a364736f6c6343000819003300000000000000000000000000000000000000000000000000000000000001f400000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000005d4c6bdcd7eb5b19702a69372cff8b48785814d20000000000000000000000005ec5448feb50e85f3d27745da637dc7802fad60c00000000000000000000000000000000000000000000000000000000000000010000000000000000000000005ec5448feb50e85f3d27745da637dc7802fad60c000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569676c636b333436613762636a717462726f6b7434356b7a63696837376e623637696664623432727235356c64766f6972696174792f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102b1575f3560e01c80638b83209b11610174578063b88d4fde116100db578063ce7c2ac211610094578063e33b7de31161006e578063e33b7de314610b12578063e985e9c514610b3c578063f2fde38b14610b78578063f8dcbddb14610ba0576102f1565b8063ce7c2ac214610a5d578063cef6d36814610a99578063d79779b214610ad6576102f1565b8063b88d4fde14610943578063c45ac0501461096b578063c7153816146109a7578063c87b56dd146109cf578063cbccefb214610a0b578063cbce4c9714610a35576102f1565b8063a0bcfc7f1161012d578063a0bcfc7f14610837578063a22cb4651461085f578063a2e6961314610887578063a3f8eace146108c3578063ac5ae11b146108ff578063b74ce1f01461091b576102f1565b80638b83209b146107055780638da5cb5b146107415780638eb478a61461076b57806395d89b41146107a75780639852595c146107d15780639b6860c81461080d576102f1565b8063406072a9116102185780636352211e116101d15780636352211e146105fb57806364affb40146106375780636c0360eb1461066157806370a082311461068b578063715018a6146106c7578063791a2519146106dd576102f1565b8063406072a91461050957806342842e0e1461054557806348b750441461056d578063525f8a5c1461059557806355cf5912146105bd5780635be7fde8146105e5576102f1565b806318160ddd1161026a57806318160ddd14610411578063191655871461043b5780631cbaee2d1461046357806323b872dd1461048d57806332cb6b0c146104b55780633a98ef39146104df576102f1565b806301ffc9a7146102f557806302fa7c471461033157806306fdde0314610359578063081812fc14610383578063095ea7b3146103bf57806317d5e67a146103e7576102f1565b366102f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102e8906130cd565b60405180910390fd5b5f80fd5b348015610300575f80fd5b5061031b60048036038101906103169190613151565b610bc8565b6040516103289190613196565b60405180910390f35b34801561033c575f80fd5b506103576004803603810190610352919061324a565b610c89565b005b348015610364575f80fd5b5061036d610d06565b60405161037a91906132e8565b60405180910390f35b34801561038e575f80fd5b506103a960048036038101906103a4919061333b565b610d96565b6040516103b69190613375565b60405180910390f35b3480156103ca575f80fd5b506103e560048036038101906103e0919061338e565b610e0e565b005b3480156103f2575f80fd5b506103fb610f4b565b60405161040891906133db565b60405180910390f35b34801561041c575f80fd5b50610425610f51565b60405161043291906133db565b60405180910390f35b348015610446575f80fd5b50610461600480360381019061045c919061342f565b610f67565b005b34801561046e575f80fd5b506104776110dd565b60405161048491906133db565b60405180910390f35b348015610498575f80fd5b506104b360048036038101906104ae919061345a565b6110e3565b005b3480156104c0575f80fd5b506104c96113f2565b6040516104d691906133db565b60405180910390f35b3480156104ea575f80fd5b506104f36113f8565b60405161050091906133db565b60405180910390f35b348015610514575f80fd5b5061052f600480360381019061052a91906134e5565b611401565b60405161053c91906133db565b60405180910390f35b348015610550575f80fd5b5061056b6004803603810190610566919061345a565b611483565b005b348015610578575f80fd5b50610593600480360381019061058e91906134e5565b6114a2565b005b3480156105a0575f80fd5b506105bb60048036038101906105b6919061333b565b6116a8565b005b3480156105c8575f80fd5b506105e360048036038101906105de919061333b565b6116ba565b005b3480156105f0575f80fd5b506105f96116cc565b005b348015610606575f80fd5b50610621600480360381019061061c919061333b565b611701565b60405161062e9190613375565b60405180910390f35b348015610642575f80fd5b5061064b611712565b60405161065891906133db565b60405180910390f35b34801561066c575f80fd5b50610675611718565b60405161068291906132e8565b60405180910390f35b348015610696575f80fd5b506106b160048036038101906106ac9190613523565b6117a4565b6040516106be91906133db565b60405180910390f35b3480156106d2575f80fd5b506106db611859565b005b3480156106e8575f80fd5b5061070360048036038101906106fe919061333b565b61186c565b005b348015610710575f80fd5b5061072b6004803603810190610726919061333b565b61187e565b6040516107389190613375565b60405180910390f35b34801561074c575f80fd5b506107556118c2565b6040516107629190613375565b60405180910390f35b348015610776575f80fd5b50610791600480360381019061078c9190613523565b6118e9565b60405161079e91906133db565b60405180910390f35b3480156107b2575f80fd5b506107bb6118fe565b6040516107c891906132e8565b60405180910390f35b3480156107dc575f80fd5b506107f760048036038101906107f29190613523565b61198e565b60405161080491906133db565b60405180910390f35b348015610818575f80fd5b506108216119d4565b60405161082e91906133db565b60405180910390f35b348015610842575f80fd5b5061085d6004803603810190610858919061367a565b6119da565b005b34801561086a575f80fd5b50610885600480360381019061088091906136eb565b6119f5565b005b348015610892575f80fd5b506108ad60048036038101906108a8919061333b565b611b67565b6040516108ba91906133db565b60405180910390f35b3480156108ce575f80fd5b506108e960048036038101906108e49190613523565b611baf565b6040516108f691906133db565b60405180910390f35b6109196004803603810190610914919061338e565b611be1565b005b348015610926575f80fd5b50610941600480360381019061093c919061333b565b611e85565b005b34801561094e575f80fd5b50610969600480360381019061096491906137c7565b611e97565b005b348015610976575f80fd5b50610991600480360381019061098c91906134e5565b611f09565b60405161099e91906133db565b60405180910390f35b3480156109b2575f80fd5b506109cd60048036038101906109c8919061333b565b611fb5565b005b3480156109da575f80fd5b506109f560048036038101906109f0919061333b565b61200b565b604051610a0291906132e8565b60405180910390f35b348015610a16575f80fd5b50610a1f612087565b604051610a2c91906138ba565b60405180910390f35b348015610a40575f80fd5b50610a5b6004803603810190610a56919061338e565b612099565b005b348015610a68575f80fd5b50610a836004803603810190610a7e9190613523565b612106565b604051610a9091906133db565b60405180910390f35b348015610aa4575f80fd5b50610abf6004803603810190610aba919061333b565b61214c565b604051610acd9291906138d3565b60405180910390f35b348015610ae1575f80fd5b50610afc6004803603810190610af791906138fa565b612183565b604051610b0991906133db565b60405180910390f35b348015610b1d575f80fd5b50610b266121c9565b604051610b3391906133db565b60405180910390f35b348015610b47575f80fd5b50610b626004803603810190610b5d9190613925565b6121d2565b604051610b6f9190613196565b60405180910390f35b348015610b83575f80fd5b50610b9e6004803603810190610b999190613523565b612260565b005b348015610bab575f80fd5b50610bc66004803603810190610bc1919061333b565b6122e4565b005b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c2257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c525750632a55205a60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c825750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610c9161232a565b816019600c6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060195f6101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055505050565b606060038054610d1590613990565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4190613990565b8015610d8c5780601f10610d6357610100808354040283529160200191610d8c565b820191905f5260205f20905b815481529060010190602001808311610d6f57829003601f168201915b5050505050905090565b5f610da0826123b1565b610dd6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60075f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f610e1882611701565b90508073ffffffffffffffffffffffffffffffffffffffff16610e3961240c565b73ffffffffffffffffffffffffffffffffffffffff1614610e9c57610e6581610e6061240c565b6121d2565b610e9b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260075f8481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60135481565b5f610f5a612413565b6002546001540303905090565b5f600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205411610fe6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdd90613a30565b60405180910390fd5b5f610ff082611baf565b90505f8103611034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102b90613abe565b60405180910390fd5b80600a5f8282546110459190613b09565b9250508190555080600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055506110a0828261241b565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b05682826040516110d1929190613b97565b60405180910390a15050565b60165481565b5f6110ed82612504565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611154576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f8061115f846125c8565b91509150611175818761117061240c565b6125e6565b6111c15761118a8661118561240c565b6121d2565b6111c0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611226576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6112338686866001612629565b801561123d575f82555b60065f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550611305856112e188888761262f565b7c020000000000000000000000000000000000000000000000000000000017612656565b60055f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603611382575f6001850190505f60055f8381526020019081526020015f20540361138057600154811461137f578360055f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113ea8686866001612680565b505050505050565b60125481565b5f600954905090565b5f600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61149d83838360405180602001604052805f815250611e97565b505050565b5f600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205411611521576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151890613a30565b60405180910390fd5b5f61152c8383611f09565b90505f8103611570576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156790613abe565b60405180910390fd5b80600e5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546115bc9190613b09565b9250508190555080600f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550611653838383612686565b8273ffffffffffffffffffffffffffffffffffffffff167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a838360405161169b9291906138d3565b60405180910390a2505050565b6116b061232a565b8060168190555050565b6116c261232a565b8060148190555050565b6116d461232a565b5f5b6018548110156116fe576116f16116ec8261187e565b610f67565b80806001019150506116d6565b50565b5f61170b82612504565b9050919050565b60145481565b6010805461172590613990565b80601f016020809104026020016040519081016040528092919081815260200182805461175190613990565b801561179c5780601f106117735761010080835404028352916020019161179c565b820191905f5260205f20905b81548152906001019060200180831161177f57829003601f168201915b505050505081565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361180a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b61186161232a565b61186a5f612705565b565b61187461232a565b8060158190555050565b5f600d828154811061189357611892613bbe565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6017602052805f5260405f205f915090505481565b60606004805461190d90613990565b80601f016020809104026020016040519081016040528092919081815260200182805461193990613990565b80156119845780601f1061195b57610100808354040283529160200191611984565b820191905f5260205f20905b81548152906001019060200180831161196757829003601f168201915b5050505050905090565b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60155481565b6119e261232a565b80601090816119f19190613d7f565b5050565b6119fd61240c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a61576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060085f611a6d61240c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b1661240c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b5b9190613196565b60405180910390a35050565b5f60195f9054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1661271083611b9e9190613e7b565b611ba89190613eab565b9050919050565b5f80611bb96121c9565b47611bc49190613b09565b9050611bd98382611bd48661198e565b6127c6565b915050919050565b600180811115611bf457611bf3613847565b5b60115f9054906101000a900460ff166001811115611c1557611c14613847565b5b14611c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4c90613f36565b60405180910390fd5b6016544211611c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9090613f9e565b60405180910390fd5b60135481611ca5610f51565b611caf9190613b09565b1115611cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce790614006565b60405180910390fd5b60125481611cfc610f51565b611d069190613b09565b1115611d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3e90614006565b60405180910390fd5b6014548160175f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611d939190613b09565b1115611dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcb9061406e565b60405180910390fd5b80601554611de29190613eab565b341015611e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1b906140d6565b60405180910390fd5b8060175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611e709190613b09565b92505081905550611e818282612831565b5050565b611e8d61232a565b8060138190555050565b611ea28484846110e3565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14611f0357611ecc8484848461284e565b611f02576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b5f80611f1484612183565b8473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611f4d9190613375565b602060405180830381865afa158015611f68573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f8c9190614108565b611f969190613b09565b9050611fac8382611fa78787611401565b6127c6565b91505092915050565b611fbd61232a565b6012548110612001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff89061417d565b60405180910390fd5b8060128190555050565b6060612016826123b1565b612055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204c906141e5565b60405180910390fd5b601061206083612999565b604051602001612071929190614307565b6040516020818303038152906040529050919050565b60115f9054906101000a900460ff1681565b6120a161232a565b601254816120ad610f51565b6120b79190613b09565b11156120f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ef9061437f565b60405180910390fd5b6121028282612831565b5050565b5f600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f806019600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661217a84611b67565b91509150915091565b5f600e5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f600a54905090565b5f60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b61226861232a565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036122d8575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016122cf9190613375565b60405180910390fd5b6122e181612705565b50565b6122ec61232a565b8060018111156122ff576122fe613847565b5b60115f6101000a81548160ff0219169083600181111561232257612321613847565b5b021790555050565b612332612a63565b73ffffffffffffffffffffffffffffffffffffffff166123506118c2565b73ffffffffffffffffffffffffffffffffffffffff16146123af57612373612a63565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016123a69190613375565b60405180910390fd5b565b5f816123bb612413565b111580156123ca575060015482105b801561240557505f7c010000000000000000000000000000000000000000000000000000000060055f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f6001905090565b8047101561246057306040517fcd7860590000000000000000000000000000000000000000000000000000000081526004016124579190613375565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff1682604051612485906143ca565b5f6040518083038185875af1925050503d805f81146124bf576040519150601f19603f3d011682016040523d82523d5f602084013e6124c4565b606091505b50509050806124ff576040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b5f8082905080612512612413565b1161259157600154811015612590575f60055f8381526020019081526020015f205490505f7c010000000000000000000000000000000000000000000000000000000082160361258e575b5f81036125845760055f836001900393508381526020019081526020015f2054905061255d565b80925050506125c3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f60079050835f528060205260405f2092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e8612645868684612a6a565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b612700838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85856040516024016126b99291906138d3565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612a72565b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81600954600b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054856128149190613eab565b61281e9190613e7b565b61282891906143de565b90509392505050565b61284a828260405180602001604052805f815250612b07565b5050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261287361240c565b8786866040518563ffffffff1660e01b81526004016128959493929190614463565b6020604051808303815f875af19250505080156128d057506040513d601f19601f820116820180604052508101906128cd91906144c1565b60015b612946573d805f81146128fe576040519150601f19603f3d011682016040523d82523d5f602084013e612903565b606091505b505f81510361293e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60605f60016129a784612ba0565b0190505f8167ffffffffffffffff8111156129c5576129c4613556565b5b6040519080825280601f01601f1916602001820160405280156129f75781602001600182028036833780820191505090505b5090505f82602001820190505b600115612a58578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612a4d57612a4c613e4e565b5b0494505f8503612a04575b819350505050919050565b5f33905090565b5f9392505050565b5f612a9c828473ffffffffffffffffffffffffffffffffffffffff16612cf190919063ffffffff16565b90505f815114158015612ac0575080806020019051810190612abe9190614500565b155b15612b0257826040517f5274afe7000000000000000000000000000000000000000000000000000000008152600401612af99190613375565b60405180910390fd5b505050565b612b118383612d06565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14612b9b575f60015490505f83820390505b612b4e5f86838060010194508661284e565b612b84576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612b3c578160015414612b98575f80fd5b50505b505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612bfc577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612bf257612bf1613e4e565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612c39576d04ee2d6d415b85acef81000000008381612c2f57612c2e613e4e565b5b0492506020810190505b662386f26fc100008310612c6857662386f26fc100008381612c5e57612c5d613e4e565b5b0492506010810190505b6305f5e1008310612c91576305f5e1008381612c8757612c86613e4e565b5b0492506008810190505b6127108310612cb6576127108381612cac57612cab613e4e565b5b0492506004810190505b60648310612cd95760648381612ccf57612cce613e4e565b5b0492506002810190505b600a8310612ce8576001810190505b80915050919050565b6060612cfe83835f612eca565b905092915050565b5f60015490505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612d71576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f8203612daa576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612db65f848385612629565b600160406001901b17820260065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550612e2883612e195f865f61262f565b612e2285612f93565b17612656565b60055f8381526020019081526020015f20819055505f8190505f83830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612e4857806001819055505050612ec55f848385612680565b505050565b606081471015612f1157306040517fcd786059000000000000000000000000000000000000000000000000000000008152600401612f089190613375565b60405180910390fd5b5f808573ffffffffffffffffffffffffffffffffffffffff168486604051612f39919061455b565b5f6040518083038185875af1925050503d805f8114612f73576040519150601f19603f3d011682016040523d82523d5f602084013e612f78565b606091505b5091509150612f88868383612fa2565b925050509392505050565b5f6001821460e11b9050919050565b606082612fb757612fb28261302f565b613027565b5f8251148015612fdd57505f8473ffffffffffffffffffffffffffffffffffffffff163b145b1561301f57836040517f9996b3150000000000000000000000000000000000000000000000000000000081526004016130169190613375565b60405180910390fd5b819050613028565b5b9392505050565b5f815111156130415780518082602001fd5b6040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f82825260208201905092915050565b7f4f6e6c7920696620796f75206d696e74000000000000000000000000000000005f82015250565b5f6130b7601083613073565b91506130c282613083565b602082019050919050565b5f6020820190508181035f8301526130e4816130ab565b9050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613130816130fc565b811461313a575f80fd5b50565b5f8135905061314b81613127565b92915050565b5f60208284031215613166576131656130f4565b5b5f6131738482850161313d565b91505092915050565b5f8115159050919050565b6131908161317c565b82525050565b5f6020820190506131a95f830184613187565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6131d8826131af565b9050919050565b6131e8816131ce565b81146131f2575f80fd5b50565b5f81359050613203816131df565b92915050565b5f6bffffffffffffffffffffffff82169050919050565b61322981613209565b8114613233575f80fd5b50565b5f8135905061324481613220565b92915050565b5f80604083850312156132605761325f6130f4565b5b5f61326d858286016131f5565b925050602061327e85828601613236565b9150509250929050565b5f81519050919050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6132ba82613288565b6132c48185613073565b93506132d4818560208601613292565b6132dd816132a0565b840191505092915050565b5f6020820190508181035f83015261330081846132b0565b905092915050565b5f819050919050565b61331a81613308565b8114613324575f80fd5b50565b5f8135905061333581613311565b92915050565b5f602082840312156133505761334f6130f4565b5b5f61335d84828501613327565b91505092915050565b61336f816131ce565b82525050565b5f6020820190506133885f830184613366565b92915050565b5f80604083850312156133a4576133a36130f4565b5b5f6133b1858286016131f5565b92505060206133c285828601613327565b9150509250929050565b6133d581613308565b82525050565b5f6020820190506133ee5f8301846133cc565b92915050565b5f6133fe826131af565b9050919050565b61340e816133f4565b8114613418575f80fd5b50565b5f8135905061342981613405565b92915050565b5f60208284031215613444576134436130f4565b5b5f6134518482850161341b565b91505092915050565b5f805f60608486031215613471576134706130f4565b5b5f61347e868287016131f5565b935050602061348f868287016131f5565b92505060406134a086828701613327565b9150509250925092565b5f6134b4826131ce565b9050919050565b6134c4816134aa565b81146134ce575f80fd5b50565b5f813590506134df816134bb565b92915050565b5f80604083850312156134fb576134fa6130f4565b5b5f613508858286016134d1565b9250506020613519858286016131f5565b9150509250929050565b5f60208284031215613538576135376130f4565b5b5f613545848285016131f5565b91505092915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61358c826132a0565b810181811067ffffffffffffffff821117156135ab576135aa613556565b5b80604052505050565b5f6135bd6130eb565b90506135c98282613583565b919050565b5f67ffffffffffffffff8211156135e8576135e7613556565b5b6135f1826132a0565b9050602081019050919050565b828183375f83830152505050565b5f61361e613619846135ce565b6135b4565b90508281526020810184848401111561363a57613639613552565b5b6136458482856135fe565b509392505050565b5f82601f8301126136615761366061354e565b5b813561367184826020860161360c565b91505092915050565b5f6020828403121561368f5761368e6130f4565b5b5f82013567ffffffffffffffff8111156136ac576136ab6130f8565b5b6136b88482850161364d565b91505092915050565b6136ca8161317c565b81146136d4575f80fd5b50565b5f813590506136e5816136c1565b92915050565b5f8060408385031215613701576137006130f4565b5b5f61370e858286016131f5565b925050602061371f858286016136d7565b9150509250929050565b5f67ffffffffffffffff82111561374357613742613556565b5b61374c826132a0565b9050602081019050919050565b5f61376b61376684613729565b6135b4565b90508281526020810184848401111561378757613786613552565b5b6137928482856135fe565b509392505050565b5f82601f8301126137ae576137ad61354e565b5b81356137be848260208601613759565b91505092915050565b5f805f80608085870312156137df576137de6130f4565b5b5f6137ec878288016131f5565b94505060206137fd878288016131f5565b935050604061380e87828801613327565b925050606085013567ffffffffffffffff81111561382f5761382e6130f8565b5b61383b8782880161379a565b91505092959194509250565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffd5b6002811061388557613884613847565b5b50565b5f81905061389582613874565b919050565b5f6138a482613888565b9050919050565b6138b48161389a565b82525050565b5f6020820190506138cd5f8301846138ab565b92915050565b5f6040820190506138e65f830185613366565b6138f360208301846133cc565b9392505050565b5f6020828403121561390f5761390e6130f4565b5b5f61391c848285016134d1565b91505092915050565b5f806040838503121561393b5761393a6130f4565b5b5f613948858286016131f5565b9250506020613959858286016131f5565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806139a757607f821691505b6020821081036139ba576139b9613963565b5b50919050565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f205f8201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b5f613a1a602683613073565b9150613a25826139c0565b604082019050919050565b5f6020820190508181035f830152613a4781613a0e565b9050919050565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f74205f8201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b5f613aa8602b83613073565b9150613ab382613a4e565b604082019050919050565b5f6020820190508181035f830152613ad581613a9c565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f613b1382613308565b9150613b1e83613308565b9250828201905080821115613b3657613b35613adc565b5b92915050565b5f819050919050565b5f613b5f613b5a613b55846131af565b613b3c565b6131af565b9050919050565b5f613b7082613b45565b9050919050565b5f613b8182613b66565b9050919050565b613b9181613b77565b82525050565b5f604082019050613baa5f830185613b88565b613bb760208301846133cc565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302613c477fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613c0c565b613c518683613c0c565b95508019841693508086168417925050509392505050565b5f613c83613c7e613c7984613308565b613b3c565b613308565b9050919050565b5f819050919050565b613c9c83613c69565b613cb0613ca882613c8a565b848454613c18565b825550505050565b5f90565b613cc4613cb8565b613ccf818484613c93565b505050565b5b81811015613cf257613ce75f82613cbc565b600181019050613cd5565b5050565b601f821115613d3757613d0881613beb565b613d1184613bfd565b81016020851015613d20578190505b613d34613d2c85613bfd565b830182613cd4565b50505b505050565b5f82821c905092915050565b5f613d575f1984600802613d3c565b1980831691505092915050565b5f613d6f8383613d48565b9150826002028217905092915050565b613d8882613288565b67ffffffffffffffff811115613da157613da0613556565b5b613dab8254613990565b613db6828285613cf6565b5f60209050601f831160018114613de7575f8415613dd5578287015190505b613ddf8582613d64565b865550613e46565b601f198416613df586613beb565b5f5b82811015613e1c57848901518255600182019150602085019450602081019050613df7565b86831015613e395784890151613e35601f891682613d48565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613e8582613308565b9150613e9083613308565b925082613ea057613e9f613e4e565b5b828204905092915050565b5f613eb582613308565b9150613ec083613308565b9250828202613ece81613308565b91508282048414831517613ee557613ee4613adc565b5b5092915050565b7f53616c652069732073746f7065656400000000000000000000000000000000005f82015250565b5f613f20600f83613073565b9150613f2b82613eec565b602082019050919050565b5f6020820190508181035f830152613f4d81613f14565b9050919050565b7f5075626c69632073616c65206973206e6f7420616374697661746564000000005f82015250565b5f613f88601c83613073565b9150613f9382613f54565b602082019050919050565b5f6020820190508181035f830152613fb581613f7c565b9050919050565b7f4d617820737570706c79206578636565646564000000000000000000000000005f82015250565b5f613ff0601383613073565b9150613ffb82613fbc565b602082019050919050565b5f6020820190508181035f83015261401d81613fe4565b9050919050565b7f4d6178207065722077616c6c6574206c696d69742072656163686564000000005f82015250565b5f614058601c83613073565b915061406382614024565b602082019050919050565b5f6020820190508181035f8301526140858161404c565b9050919050565b7f4e6f7420656e6f756768742066756e64730000000000000000000000000000005f82015250565b5f6140c0601183613073565b91506140cb8261408c565b602082019050919050565b5f6020820190508181035f8301526140ed816140b4565b9050919050565b5f8151905061410281613311565b92915050565b5f6020828403121561411d5761411c6130f4565b5b5f61412a848285016140f4565b91505092915050565b7f43616e6e6f7420696e63726561736520737570706c79210000000000000000005f82015250565b5f614167601783613073565b915061417282614133565b602082019050919050565b5f6020820190508181035f8301526141948161415b565b9050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e005f82015250565b5f6141cf601f83613073565b91506141da8261419b565b602082019050919050565b5f6020820190508181035f8301526141fc816141c3565b9050919050565b5f81905092915050565b5f815461421981613990565b6142238186614203565b9450600182165f811461423d576001811461425257614284565b60ff1983168652811515820286019350614284565b61425b85613beb565b5f5b8381101561427c5781548189015260018201915060208101905061425d565b838801955050505b50505092915050565b5f61429782613288565b6142a18185614203565b93506142b1818560208601613292565b80840191505092915050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f6142f1600583614203565b91506142fc826142bd565b600582019050919050565b5f614312828561420d565b915061431e828461428d565b9150614329826142e5565b91508190509392505050565b7f52656163686564206d617820537570706c7900000000000000000000000000005f82015250565b5f614369601283613073565b915061437482614335565b602082019050919050565b5f6020820190508181035f8301526143968161435d565b9050919050565b5f81905092915050565b50565b5f6143b55f8361439d565b91506143c0826143a7565b5f82019050919050565b5f6143d4826143aa565b9150819050919050565b5f6143e882613308565b91506143f383613308565b925082820390508181111561440b5761440a613adc565b5b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f61443582614411565b61443f818561441b565b935061444f818560208601613292565b614458816132a0565b840191505092915050565b5f6080820190506144765f830187613366565b6144836020830186613366565b61449060408301856133cc565b81810360608301526144a2818461442b565b905095945050505050565b5f815190506144bb81613127565b92915050565b5f602082840312156144d6576144d56130f4565b5b5f6144e3848285016144ad565b91505092915050565b5f815190506144fa816136c1565b92915050565b5f60208284031215614515576145146130f4565b5b5f614522848285016144ec565b91505092915050565b5f61453582614411565b61453f818561439d565b935061454f818560208601613292565b80840191505092915050565b5f614566828461452b565b91508190509291505056fea2646970667358221220ffebbb2ca07abdfdab14d62203683180de475bf395d713d80fcca5d586fe49a364736f6c63430008190033

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

00000000000000000000000000000000000000000000000000000000000001f400000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000005d4c6bdcd7eb5b19702a69372cff8b48785814d20000000000000000000000005ec5448feb50e85f3d27745da637dc7802fad60c00000000000000000000000000000000000000000000000000000000000000010000000000000000000000005ec5448feb50e85f3d27745da637dc7802fad60c000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569676c636b333436613762636a717462726f6b7434356b7a63696837376e623637696664623432727235356c64766f6972696174792f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _royaltyFeesInBips (uint96): 500
Arg [1] : _team (address[]): 0x5EC5448fEB50E85f3D27745DA637dc7802fAd60C
Arg [2] : _teamShares (uint256[]): 100
Arg [3] : _baseURI (string): ipfs://bafybeiglck346a7bcjqtbrokt45kzcih77nb67ifdb42rr55ldvoiriaty/
Arg [4] : _initialOwner (address): 0x5d4c6BdcD7Eb5b19702a69372CFf8b48785814d2
Arg [5] : _fundsReceiver (address): 0x5EC5448fEB50E85f3D27745DA637dc7802fAd60C

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [4] : 0000000000000000000000005d4c6bdcd7eb5b19702a69372cff8b48785814d2
Arg [5] : 0000000000000000000000005ec5448feb50e85f3d27745da637dc7802fad60c
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [7] : 0000000000000000000000005ec5448feb50e85f3d27745da637dc7802fad60c
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [11] : 697066733a2f2f62616679626569676c636b333436613762636a717462726f6b
Arg [12] : 7434356b7a63696837376e623637696664623432727235356c64766f69726961
Arg [13] : 74792f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

106772:4139:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110872:26;;;;;;;;;;:::i;:::-;;;;;;;;106772:4139;;;;14578:678;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;110457:183;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20288:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22240:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21782:392;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;107024:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13632:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;100691:671;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;107172:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31509:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;106987:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;98301:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;99430:135;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23134:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;101630:792;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;109682:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;109191:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;110666:151;;;;;;;;;;;;;:::i;:::-;;20077:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;107071:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;106915:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15320:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;105865:103;;;;;;;;;;;;;:::i;:::-;;109343:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;99656:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;105190:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;107224:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20457:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;99152:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;107122:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;109474:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22516:306;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;110309:140;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;99846:225;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;107972:703;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;109058:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23390:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;100231:260;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;108878:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;109800:249;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;106945:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;108683:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;98948:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;110057:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;98738:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;98486:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22899:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;106123:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;109582:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14578:678;14663:4;14978:10;14963:25;;:11;:25;;;;:102;;;;15055:10;15040:25;;:11;:25;;;;14963:102;:179;;;;15132:10;15117:25;;:11;:25;;;;14963:179;:242;;;;15195:10;15180:25;;:11;:25;;;;14963:242;14943:262;;14578:678;;;:::o;110457:183::-;105076:13;:11;:13::i;:::-;110574:9:::1;110556:15;;:27;;;;;;;;;;;;;;;;;;110614:18;110594:17;;:38;;;;;;;;;;;;;;;;;;110457:183:::0;;:::o;20288:100::-;20342:13;20375:5;20368:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20288:100;:::o;22240:204::-;22308:7;22333:16;22341:7;22333;:16::i;:::-;22328:64;;22358:34;;;;;;;;;;;;;;22328:64;22412:15;:24;22428:7;22412:24;;;;;;;;;;;;;;;;;;;;;22405:31;;22240:204;;;:::o;21782:392::-;21863:13;21879:16;21887:7;21879;:16::i;:::-;21863:32;;21933:5;21910:28;;:19;:17;:19::i;:::-;:28;;;21906:175;;21958:44;21975:5;21982:19;:17;:19::i;:::-;21958:16;:44::i;:::-;21953:128;;22030:35;;;;;;;;;;;;;;21953:128;21906:175;22120:2;22093:15;:24;22109:7;22093:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;22158:7;22154:2;22138:28;;22147:5;22138:28;;;;;;;;;;;;21852:322;21782:392;;:::o;107024:36::-;;;;:::o;13632:315::-;13685:7;13913:15;:13;:15::i;:::-;13898:12;;13882:13;;:28;:46;13875:53;;13632:315;:::o;100691:671::-;100786:1;100767:7;:16;100775:7;100767:16;;;;;;;;;;;;;;;;:20;100759:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;100843:15;100861:19;100872:7;100861:10;:19::i;:::-;100843:37;;100912:1;100901:7;:12;100893:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;101174:7;101156:14;;:25;;;;;;;:::i;:::-;;;;;;;;101239:7;101217:9;:18;101227:7;101217:18;;;;;;;;;;;;;;;;:29;;;;;;;;;;;101270:35;101288:7;101297;101270:17;:35::i;:::-;101321:33;101337:7;101346;101321:33;;;;;;;:::i;:::-;;;;;;;;100748:614;100691:671;:::o;107172:41::-;;;;:::o;31509:2800::-;31643:27;31673;31692:7;31673:18;:27::i;:::-;31643:57;;31758:4;31717:45;;31733:19;31717:45;;;31713:86;;31771:28;;;;;;;;;;;;;;31713:86;31813:27;31842:23;31869:28;31889:7;31869:19;:28::i;:::-;31812:85;;;;31997:62;32016:15;32033:4;32039:19;:17;:19::i;:::-;31997:18;:62::i;:::-;31992:174;;32079:43;32096:4;32102:19;:17;:19::i;:::-;32079:16;:43::i;:::-;32074:92;;32131:35;;;;;;;;;;;;;;32074:92;31992:174;32197:1;32183:16;;:2;:16;;;32179:52;;32208:23;;;;;;;;;;;;;;32179:52;32244:43;32266:4;32272:2;32276:7;32285:1;32244:21;:43::i;:::-;32380:15;32377:160;;;32520:1;32499:19;32492:30;32377:160;32915:18;:24;32934:4;32915:24;;;;;;;;;;;;;;;;32913:26;;;;;;;;;;;;32984:18;:22;33003:2;32984:22;;;;;;;;;;;;;;;;32982:24;;;;;;;;;;;33306:145;33343:2;33391:45;33406:4;33412:2;33416:19;33391:14;:45::i;:::-;10860:8;33364:72;33306:18;:145::i;:::-;33277:17;:26;33295:7;33277:26;;;;;;;;;;;:174;;;;33621:1;10860:8;33571:19;:46;:51;33567:626;;33643:19;33675:1;33665:7;:11;33643:33;;33832:1;33798:17;:30;33816:11;33798:30;;;;;;;;;;;;:35;33794:384;;33936:13;;33921:11;:28;33917:242;;34116:19;34083:17;:30;34101:11;34083:30;;;;;;;;;;;:52;;;;33917:242;33794:384;33624:569;33567:626;34240:7;34236:2;34221:27;;34230:4;34221:27;;;;;;;;;;;;34259:42;34280:4;34286:2;34290:7;34299:1;34259:20;:42::i;:::-;31632:2677;;;31509:2800;;;:::o;106987:30::-;;;;:::o;98301:91::-;98345:7;98372:12;;98365:19;;98301:91;:::o;99430:135::-;99500:7;99527:14;:21;99542:5;99527:21;;;;;;;;;;;;;;;:30;99549:7;99527:30;;;;;;;;;;;;;;;;99520:37;;99430:135;;;;:::o;23134:185::-;23272:39;23289:4;23295:2;23299:7;23272:39;;;;;;;;;;;;:16;:39::i;:::-;23134:185;;;:::o;101630:792::-;101731:1;101712:7;:16;101720:7;101712:16;;;;;;;;;;;;;;;;:20;101704:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;101788:15;101806:26;101817:5;101824:7;101806:10;:26::i;:::-;101788:44;;101864:1;101853:7;:12;101845:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;102198:7;102168:19;:26;102188:5;102168:26;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;102275:7;102241:14;:21;102256:5;102241:21;;;;;;;;;;;;;;;:30;102263:7;102241:30;;;;;;;;;;;;;;;;:41;;;;;;;;;;;102306:47;102329:5;102336:7;102345;102306:22;:47::i;:::-;102390:5;102369:45;;;102397:7;102406;102369:45;;;;;;;:::i;:::-;;;;;;;;101693:729;101630:792;;:::o;109682:110::-;105076:13;:11;:13::i;:::-;109774:10:::1;109758:13;:26;;;;109682:110:::0;:::o;109191:144::-;105076:13;:11;:13::i;:::-;109305:22:::1;109281:21;:46;;;;109191:144:::0;:::o;110666:151::-;105076:13;:11;:13::i;:::-;110722:6:::1;110718:92;110739:10;;110735:1;:14;110718:92;;;110772:26;110788:8;110794:1;110788:5;:8::i;:::-;110772:7;:26::i;:::-;110752:3;;;;;;;110718:92;;;;110666:151::o:0;20077:144::-;20141:7;20184:27;20203:7;20184:18;:27::i;:::-;20161:52;;20077:144;;;:::o;107071:40::-;;;;:::o;106915:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;15320:224::-;15384:7;15425:1;15408:19;;:5;:19;;;15404:60;;15436:28;;;;;;;;;;;;;;15404:60;9812:13;15482:18;:25;15501:5;15482:25;;;;;;;;;;;;;;;;:54;15475:61;;15320:224;;;:::o;105865:103::-;105076:13;:11;:13::i;:::-;105930:30:::1;105957:1;105930:18;:30::i;:::-;105865:103::o:0;109343:123::-;105076:13;:11;:13::i;:::-;109442:16:::1;109424:15;:34;;;;109343:123:::0;:::o;99656:100::-;99707:7;99734;99742:5;99734:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;99727:21;;99656:100;;;:::o;105190:87::-;105236:7;105263:6;;;;;;;;;;;105256:13;;105190:87;:::o;107224:57::-;;;;;;;;;;;;;;;;;:::o;20457:104::-;20513:13;20546:7;20539:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20457:104;:::o;99152:109::-;99208:7;99235:9;:18;99245:7;99235:18;;;;;;;;;;;;;;;;99228:25;;99152:109;;;:::o;107122:41::-;;;;:::o;109474:100::-;105076:13;:11;:13::i;:::-;109558:8:::1;109548:7;:18;;;;;;:::i;:::-;;109474:100:::0;:::o;22516:306::-;22627:19;:17;:19::i;:::-;22615:31;;:8;:31;;;22611:61;;22655:17;;;;;;;;;;;;;;22611:61;22735:8;22683:18;:39;22702:19;:17;:19::i;:::-;22683:39;;;;;;;;;;;;;;;:49;22723:8;22683:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;22795:8;22759:55;;22774:19;:17;:19::i;:::-;22759:55;;;22805:8;22759:55;;;;;;:::i;:::-;;;;;;;;22516:306;;:::o;110309:140::-;110376:7;110424:17;;;;;;;;;;;110401:40;;110415:5;110402:10;:18;;;;:::i;:::-;110401:40;;;;:::i;:::-;110395:46;;110309:140;;;:::o;99846:225::-;99904:7;99924:21;99972:15;:13;:15::i;:::-;99948:21;:39;;;;:::i;:::-;99924:63;;100005:58;100021:7;100030:13;100045:17;100054:7;100045:8;:17::i;:::-;100005:15;:58::i;:::-;99998:65;;;99846:225;;;:::o;107972:703::-;108082:7;108067:22;;;;;;;;:::i;:::-;;:11;;;;;;;;;;;:22;;;;;;;;:::i;:::-;;;108059:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;108146:13;;108128:15;:31;108120:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;108240:16;;108227:9;108211:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:45;;108203:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;108328:10;;108315:9;108299:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;108291:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;108432:21;;108419:9;108381:25;:35;108407:8;108381:35;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;:72;;108373:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;108536:9;108518:15;;:27;;;;:::i;:::-;108505:9;:40;;108497:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;108617:9;108578:25;:35;108604:8;108578:35;;;;;;;;;;;;;;;;:48;;;;;;;:::i;:::-;;;;;;;;108637:30;108647:8;108657:9;108637;:30::i;:::-;107972:703;;:::o;109058:125::-;105076:13;:11;:13::i;:::-;109158:17:::1;109139:16;:36;;;;109058:125:::0;:::o;23390:399::-;23557:31;23570:4;23576:2;23580:7;23557:12;:31::i;:::-;23621:1;23603:2;:14;;;:19;23599:183;;23642:56;23673:4;23679:2;23683:7;23692:5;23642:30;:56::i;:::-;23637:145;;23726:40;;;;;;;;;;;;;;23637:145;23599:183;23390:399;;;;:::o;100231:260::-;100303:7;100323:21;100380:20;100394:5;100380:13;:20::i;:::-;100347:5;:15;;;100371:4;100347:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;100323:77;;100418:65;100434:7;100443:13;100458:24;100467:5;100474:7;100458:8;:24::i;:::-;100418:15;:65::i;:::-;100411:72;;;100231:260;;;;:::o;108878:172::-;105076:13;:11;:13::i;:::-;108969:10:::1;;108955:11;:24;108947:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;109031:11;109018:10;:24;;;;108878:172:::0;:::o;109800:249::-;109871:13;109905:17;109913:8;109905:7;:17::i;:::-;109897:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;110002:7;110011:19;:8;:17;:19::i;:::-;109985:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;109971:70;;109800:249;;;:::o;106945:33::-;;;;;;;;;;;;;:::o;108683:187::-;105076:13;:11;:13::i;:::-;108793:10:::1;;108780:9;108764:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;108756:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;108837:25;108847:3;108852:9;108837;:25::i;:::-;108683:187:::0;;:::o;98948:105::-;99002:7;99029;:16;99037:7;99029:16;;;;;;;;;;;;;;;;99022:23;;98948:105;;;:::o;110057:244::-;110170:16;110197:21;110246:15;;;;;;;;;;;110263:28;110280:10;110263:16;:28::i;:::-;110238:54;;;;110057:244;;;:::o;98738:119::-;98796:7;98823:19;:26;98843:5;98823:26;;;;;;;;;;;;;;;;98816:33;;98738:119;;;:::o;98486:95::-;98532:7;98559:14;;98552:21;;98486:95;:::o;22899:164::-;22996:4;23020:18;:25;23039:5;23020:25;;;;;;;;;;;;;;;:35;23046:8;23020:35;;;;;;;;;;;;;;;;;;;;;;;;;23013:42;;22899:164;;;;:::o;106123:220::-;105076:13;:11;:13::i;:::-;106228:1:::1;106208:22;;:8;:22;;::::0;106204:93:::1;;106282:1;106254:31;;;;;;;;;;;:::i;:::-;;;;;;;;106204:93;106307:28;106326:8;106307:18;:28::i;:::-;106123:220:::0;:::o;109582:92::-;105076:13;:11;:13::i;:::-;109660:5:::1;109655:11;;;;;;;;:::i;:::-;;109641;;:25;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;109582:92:::0;:::o;105355:166::-;105426:12;:10;:12::i;:::-;105415:23;;:7;:5;:7::i;:::-;:23;;;105411:103;;105489:12;:10;:12::i;:::-;105462:40;;;;;;;;;;;:::i;:::-;;;;;;;;105411:103;105355:166::o;24044:273::-;24101:4;24157:7;24138:15;:13;:15::i;:::-;:26;;:66;;;;;24191:13;;24181:7;:23;24138:66;:152;;;;;24289:1;10582:8;24242:17;:26;24260:7;24242:26;;;;;;;;;;;;:43;:48;24138:152;24118:172;;24044:273;;;:::o;42605:105::-;42665:7;42692:10;42685:17;;42605:105;:::o;13156:92::-;13212:7;13239:1;13232:8;;13156:92;:::o;66405:340::-;66515:6;66491:21;:30;66487:111;;;66580:4;66545:41;;;;;;;;;;;:::i;:::-;;;;;;;;66487:111;66611:12;66629:9;:14;;66651:6;66629:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66610:52;;;66678:7;66673:65;;66709:17;;;;;;;;;;;;;;66673:65;66476:269;66405:340;;:::o;16994:1129::-;17061:7;17081:12;17096:7;17081:22;;17164:4;17145:15;:13;:15::i;:::-;:23;17141:915;;17198:13;;17191:4;:20;17187:869;;;17236:14;17253:17;:23;17271:4;17253:23;;;;;;;;;;;;17236:40;;17369:1;10582:8;17342:6;:23;:28;17338:699;;17861:113;17878:1;17868:6;:11;17861:113;;17921:17;:25;17939:6;;;;;;;17921:25;;;;;;;;;;;;17912:34;;17861:113;;;18007:6;18000:13;;;;;;17338:699;17213:843;17187:869;17141:915;18084:31;;;;;;;;;;;;;;16994:1129;;;;:::o;29845:652::-;29940:27;29969:23;30010:53;30066:15;30010:71;;30252:7;30246:4;30239:21;30287:22;30281:4;30274:36;30363:4;30357;30347:21;30324:44;;30459:19;30453:26;30434:45;;30190:300;29845:652;;;:::o;30610:645::-;30752:11;30914:15;30908:4;30904:26;30896:34;;31073:15;31062:9;31058:31;31045:44;;31220:15;31209:9;31206:30;31199:4;31188:9;31185:19;31182:55;31172:65;;30610:645;;;;;:::o;41438:159::-;;;;;:::o;39750:309::-;39885:7;39905:16;10983:3;39931:19;:40;;39905:67;;10983:3;39998:31;40009:4;40015:2;40019:9;39998:10;:31::i;:::-;39990:40;;:61;;39983:68;;;39750:309;;;;;:::o;19568:447::-;19648:14;19816:15;19809:5;19805:27;19796:36;;19990:5;19976:11;19952:22;19948:40;19945:51;19938:5;19935:62;19925:72;;19568:447;;;;:::o;42256:158::-;;;;;:::o;79310:162::-;79393:71;79413:5;79435;:14;;;79452:2;79456:5;79420:43;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79393:19;:71::i;:::-;79310:162;;;:::o;106503:191::-;106577:16;106596:6;;;;;;;;;;;106577:25;;106622:8;106613:6;;:17;;;;;;;;;;;;;;;;;;106677:8;106646:40;;106667:8;106646:40;;;;;;;;;;;;106566:128;106503:191;:::o;102600:248::-;102746:7;102825:15;102810:12;;102790:7;:16;102798:7;102790:16;;;;;;;;;;;;;;;;102774:13;:32;;;;:::i;:::-;102773:49;;;;:::i;:::-;:67;;;;:::i;:::-;102766:74;;102600:248;;;;;:::o;24401:104::-;24470:27;24480:2;24484:8;24470:27;;;;;;;;;;;;:9;:27::i;:::-;24401:104;;:::o;38260:716::-;38423:4;38469:2;38444:45;;;38490:19;:17;:19::i;:::-;38511:4;38517:7;38526:5;38444:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38440:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38744:1;38727:6;:13;:18;38723:235;;38773:40;;;;;;;;;;;;;;38723:235;38916:6;38910:13;38901:6;38897:2;38893:15;38886:38;38440:529;38613:54;;;38603:64;;;:6;:64;;;;38596:71;;;38260:716;;;;;;:::o;62276:718::-;62332:13;62383:14;62420:1;62400:17;62411:5;62400:10;:17::i;:::-;:21;62383:38;;62436:20;62470:6;62459:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62436:41;;62492:11;62621:6;62617:2;62613:15;62605:6;62601:28;62594:35;;62658:290;62665:4;62658:290;;;62690:5;;;;;;;;62832:10;62827:2;62820:5;62816:14;62811:32;62806:3;62798:46;62890:2;62881:11;;;;;;:::i;:::-;;;;;62924:1;62915:5;:10;62658:290;62911:21;62658:290;62969:6;62962:13;;;;;62276:718;;;:::o;94591:98::-;94644:7;94671:10;94664:17;;94591:98;:::o;40635:147::-;40772:6;40635:147;;;;;:::o;82121:638::-;82545:23;82571:33;82599:4;82579:5;82571:27;;;;:33;;;;:::i;:::-;82545:59;;82640:1;82619:10;:17;:22;;:57;;;;;82657:10;82646:30;;;;;;;;;;;;:::i;:::-;82645:31;82619:57;82615:137;;;82733:5;82700:40;;;;;;;;;;;:::i;:::-;;;;;;;;82615:137;82191:568;82121:638;;:::o;24921:681::-;25044:19;25050:2;25054:8;25044:5;:19::i;:::-;25123:1;25105:2;:14;;;:19;25101:483;;25145:11;25159:13;;25145:27;;25191:13;25213:8;25207:3;:14;25191:30;;25240:233;25271:62;25310:1;25314:2;25318:7;;;;;;25327:5;25271:30;:62::i;:::-;25266:167;;25369:40;;;;;;;;;;;;;;25266:167;25468:3;25460:5;:11;25240:233;;25555:3;25538:13;;:20;25534:34;;25560:8;;;25534:34;25126:458;;25101:483;24921:681;;;:::o;58680:948::-;58733:7;58753:14;58770:1;58753:18;;58820:8;58811:5;:17;58807:106;;58858:8;58849:17;;;;;;:::i;:::-;;;;;58895:2;58885:12;;;;58807:106;58940:8;58931:5;:17;58927:106;;58978:8;58969:17;;;;;;:::i;:::-;;;;;59015:2;59005:12;;;;58927:106;59060:8;59051:5;:17;59047:106;;59098:8;59089:17;;;;;;:::i;:::-;;;;;59135:2;59125:12;;;;59047:106;59180:7;59171:5;:16;59167:103;;59217:7;59208:16;;;;;;:::i;:::-;;;;;59253:1;59243:11;;;;59167:103;59297:7;59288:5;:16;59284:103;;59334:7;59325:16;;;;;;:::i;:::-;;;;;59370:1;59360:11;;;;59284:103;59414:7;59405:5;:16;59401:103;;59451:7;59442:16;;;;;;:::i;:::-;;;;;59487:1;59477:11;;;;59401:103;59531:7;59522:5;:16;59518:68;;59569:1;59559:11;;;;59518:68;59614:6;59607:13;;;58680:948;;;:::o;67608:153::-;67683:12;67715:38;67737:6;67745:4;67751:1;67715:21;:38::i;:::-;67708:45;;67608:153;;;;:::o;25875:1529::-;25940:20;25963:13;;25940:36;;26005:1;25991:16;;:2;:16;;;25987:48;;26016:19;;;;;;;;;;;;;;25987:48;26062:1;26050:8;:13;26046:44;;26072:18;;;;;;;;;;;;;;26046:44;26103:61;26133:1;26137:2;26141:12;26155:8;26103:21;:61::i;:::-;26646:1;9949:2;26617:1;:25;;26616:31;26604:8;:44;26578:18;:22;26597:2;26578:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;26925:139;26962:2;27016:33;27039:1;27043:2;27047:1;27016:14;:33::i;:::-;26983:30;27004:8;26983:20;:30::i;:::-;:66;26925:18;:139::i;:::-;26891:17;:31;26909:12;26891:31;;;;;;;;;;;:173;;;;27081:15;27099:12;27081:30;;27126:11;27155:8;27140:12;:23;27126:37;;27178:101;27230:9;;;;;;27226:2;27205:35;;27222:1;27205:35;;;;;;;;;;;;27274:3;27264:7;:13;27178:101;;27311:3;27295:13;:19;;;;26352:974;;27336:60;27365:1;27369:2;27373:12;27387:8;27336:20;:60::i;:::-;25929:1475;25875:1529;;:::o;68096:398::-;68195:12;68248:5;68224:21;:29;68220:110;;;68312:4;68277:41;;;;;;;;;;;:::i;:::-;;;;;;;;68220:110;68341:12;68355:23;68382:6;:11;;68401:5;68408:4;68382:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68340:73;;;;68431:55;68458:6;68466:7;68475:10;68431:26;:55::i;:::-;68424:62;;;;68096:398;;;;;:::o;21398:322::-;21468:14;21699:1;21689:8;21686:15;21661:23;21657:45;21647:55;;21398:322;;;:::o;69572:597::-;69720:12;69750:7;69745:417;;69774:19;69782:10;69774:7;:19::i;:::-;69745:417;;;70023:1;70002:10;:17;:22;:49;;;;;70050:1;70028:6;:18;;;:23;70002:49;69998:121;;;70096:6;70079:24;;;;;;;;;;;:::i;:::-;;;;;;;;69998:121;70140:10;70133:17;;;;69745:417;69572:597;;;;;;:::o;70722:528::-;70875:1;70855:10;:17;:21;70851:392;;;71087:10;71081:17;71144:15;71131:10;71127:2;71123:19;71116:44;70851:392;71214:17;;;;;;;;;;;;;;7:169:1;91:11;125:6;120:3;113:19;165:4;160:3;156:14;141:29;;7:169;;;;:::o;182:166::-;322:18;318:1;310:6;306:14;299:42;182:166;:::o;354:366::-;496:3;517:67;581:2;576:3;517:67;:::i;:::-;510:74;;593:93;682:3;593:93;:::i;:::-;711:2;706:3;702:12;695:19;;354:366;;;:::o;726:419::-;892:4;930:2;919:9;915:18;907:26;;979:9;973:4;969:20;965:1;954:9;950:17;943:47;1007:131;1133:4;1007:131;:::i;:::-;999:139;;726:419;;;:::o;1151:75::-;1184:6;1217:2;1211:9;1201:19;;1151:75;:::o;1232:117::-;1341:1;1338;1331:12;1355:117;1464:1;1461;1454:12;1478:149;1514:7;1554:66;1547:5;1543:78;1532:89;;1478:149;;;:::o;1633:120::-;1705:23;1722:5;1705:23;:::i;:::-;1698:5;1695:34;1685:62;;1743:1;1740;1733:12;1685:62;1633:120;:::o;1759:137::-;1804:5;1842:6;1829:20;1820:29;;1858:32;1884:5;1858:32;:::i;:::-;1759:137;;;;:::o;1902:327::-;1960:6;2009:2;1997:9;1988:7;1984:23;1980:32;1977:119;;;2015:79;;:::i;:::-;1977:119;2135:1;2160:52;2204:7;2195:6;2184:9;2180:22;2160:52;:::i;:::-;2150:62;;2106:116;1902:327;;;;:::o;2235:90::-;2269:7;2312:5;2305:13;2298:21;2287:32;;2235:90;;;:::o;2331:109::-;2412:21;2427:5;2412:21;:::i;:::-;2407:3;2400:34;2331:109;;:::o;2446:210::-;2533:4;2571:2;2560:9;2556:18;2548:26;;2584:65;2646:1;2635:9;2631:17;2622:6;2584:65;:::i;:::-;2446:210;;;;:::o;2662:126::-;2699:7;2739:42;2732:5;2728:54;2717:65;;2662:126;;;:::o;2794:96::-;2831:7;2860:24;2878:5;2860:24;:::i;:::-;2849:35;;2794:96;;;:::o;2896:122::-;2969:24;2987:5;2969:24;:::i;:::-;2962:5;2959:35;2949:63;;3008:1;3005;2998:12;2949:63;2896:122;:::o;3024:139::-;3070:5;3108:6;3095:20;3086:29;;3124:33;3151:5;3124:33;:::i;:::-;3024:139;;;;:::o;3169:109::-;3205:7;3245:26;3238:5;3234:38;3223:49;;3169:109;;;:::o;3284:120::-;3356:23;3373:5;3356:23;:::i;:::-;3349:5;3346:34;3336:62;;3394:1;3391;3384:12;3336:62;3284:120;:::o;3410:137::-;3455:5;3493:6;3480:20;3471:29;;3509:32;3535:5;3509:32;:::i;:::-;3410:137;;;;:::o;3553:472::-;3620:6;3628;3677:2;3665:9;3656:7;3652:23;3648:32;3645:119;;;3683:79;;:::i;:::-;3645:119;3803:1;3828:53;3873:7;3864:6;3853:9;3849:22;3828:53;:::i;:::-;3818:63;;3774:117;3930:2;3956:52;4000:7;3991:6;3980:9;3976:22;3956:52;:::i;:::-;3946:62;;3901:117;3553:472;;;;;:::o;4031:99::-;4083:6;4117:5;4111:12;4101:22;;4031:99;;;:::o;4136:139::-;4225:6;4220:3;4215;4209:23;4266:1;4257:6;4252:3;4248:16;4241:27;4136:139;;;:::o;4281:102::-;4322:6;4373:2;4369:7;4364:2;4357:5;4353:14;4349:28;4339:38;;4281:102;;;:::o;4389:377::-;4477:3;4505:39;4538:5;4505:39;:::i;:::-;4560:71;4624:6;4619:3;4560:71;:::i;:::-;4553:78;;4640:65;4698:6;4693:3;4686:4;4679:5;4675:16;4640:65;:::i;:::-;4730:29;4752:6;4730:29;:::i;:::-;4725:3;4721:39;4714:46;;4481:285;4389:377;;;;:::o;4772:313::-;4885:4;4923:2;4912:9;4908:18;4900:26;;4972:9;4966:4;4962:20;4958:1;4947:9;4943:17;4936:47;5000:78;5073:4;5064:6;5000:78;:::i;:::-;4992:86;;4772:313;;;;:::o;5091:77::-;5128:7;5157:5;5146:16;;5091:77;;;:::o;5174:122::-;5247:24;5265:5;5247:24;:::i;:::-;5240:5;5237:35;5227:63;;5286:1;5283;5276:12;5227:63;5174:122;:::o;5302:139::-;5348:5;5386:6;5373:20;5364:29;;5402:33;5429:5;5402:33;:::i;:::-;5302:139;;;;:::o;5447:329::-;5506:6;5555:2;5543:9;5534:7;5530:23;5526:32;5523:119;;;5561:79;;:::i;:::-;5523:119;5681:1;5706:53;5751:7;5742:6;5731:9;5727:22;5706:53;:::i;:::-;5696:63;;5652:117;5447:329;;;;:::o;5782:118::-;5869:24;5887:5;5869:24;:::i;:::-;5864:3;5857:37;5782:118;;:::o;5906:222::-;5999:4;6037:2;6026:9;6022:18;6014:26;;6050:71;6118:1;6107:9;6103:17;6094:6;6050:71;:::i;:::-;5906:222;;;;:::o;6134:474::-;6202:6;6210;6259:2;6247:9;6238:7;6234:23;6230:32;6227:119;;;6265:79;;:::i;:::-;6227:119;6385:1;6410:53;6455:7;6446:6;6435:9;6431:22;6410:53;:::i;:::-;6400:63;;6356:117;6512:2;6538:53;6583:7;6574:6;6563:9;6559:22;6538:53;:::i;:::-;6528:63;;6483:118;6134:474;;;;;:::o;6614:118::-;6701:24;6719:5;6701:24;:::i;:::-;6696:3;6689:37;6614:118;;:::o;6738:222::-;6831:4;6869:2;6858:9;6854:18;6846:26;;6882:71;6950:1;6939:9;6935:17;6926:6;6882:71;:::i;:::-;6738:222;;;;:::o;6966:104::-;7011:7;7040:24;7058:5;7040:24;:::i;:::-;7029:35;;6966:104;;;:::o;7076:138::-;7157:32;7183:5;7157:32;:::i;:::-;7150:5;7147:43;7137:71;;7204:1;7201;7194:12;7137:71;7076:138;:::o;7220:155::-;7274:5;7312:6;7299:20;7290:29;;7328:41;7363:5;7328:41;:::i;:::-;7220:155;;;;:::o;7381:345::-;7448:6;7497:2;7485:9;7476:7;7472:23;7468:32;7465:119;;;7503:79;;:::i;:::-;7465:119;7623:1;7648:61;7701:7;7692:6;7681:9;7677:22;7648:61;:::i;:::-;7638:71;;7594:125;7381:345;;;;:::o;7732:619::-;7809:6;7817;7825;7874:2;7862:9;7853:7;7849:23;7845:32;7842:119;;;7880:79;;:::i;:::-;7842:119;8000:1;8025:53;8070:7;8061:6;8050:9;8046:22;8025:53;:::i;:::-;8015:63;;7971:117;8127:2;8153:53;8198:7;8189:6;8178:9;8174:22;8153:53;:::i;:::-;8143:63;;8098:118;8255:2;8281:53;8326:7;8317:6;8306:9;8302:22;8281:53;:::i;:::-;8271:63;;8226:118;7732:619;;;;;:::o;8357:111::-;8409:7;8438:24;8456:5;8438:24;:::i;:::-;8427:35;;8357:111;;;:::o;8474:152::-;8562:39;8595:5;8562:39;:::i;:::-;8555:5;8552:50;8542:78;;8616:1;8613;8606:12;8542:78;8474:152;:::o;8632:169::-;8693:5;8731:6;8718:20;8709:29;;8747:48;8789:5;8747:48;:::i;:::-;8632:169;;;;:::o;8807:504::-;8890:6;8898;8947:2;8935:9;8926:7;8922:23;8918:32;8915:119;;;8953:79;;:::i;:::-;8915:119;9073:1;9098:68;9158:7;9149:6;9138:9;9134:22;9098:68;:::i;:::-;9088:78;;9044:132;9215:2;9241:53;9286:7;9277:6;9266:9;9262:22;9241:53;:::i;:::-;9231:63;;9186:118;8807:504;;;;;:::o;9317:329::-;9376:6;9425:2;9413:9;9404:7;9400:23;9396:32;9393:119;;;9431:79;;:::i;:::-;9393:119;9551:1;9576:53;9621:7;9612:6;9601:9;9597:22;9576:53;:::i;:::-;9566:63;;9522:117;9317:329;;;;:::o;9652:117::-;9761:1;9758;9751:12;9775:117;9884:1;9881;9874:12;9898:180;9946:77;9943:1;9936:88;10043:4;10040:1;10033:15;10067:4;10064:1;10057:15;10084:281;10167:27;10189:4;10167:27;:::i;:::-;10159:6;10155:40;10297:6;10285:10;10282:22;10261:18;10249:10;10246:34;10243:62;10240:88;;;10308:18;;:::i;:::-;10240:88;10348:10;10344:2;10337:22;10127:238;10084:281;;:::o;10371:129::-;10405:6;10432:20;;:::i;:::-;10422:30;;10461:33;10489:4;10481:6;10461:33;:::i;:::-;10371:129;;;:::o;10506:308::-;10568:4;10658:18;10650:6;10647:30;10644:56;;;10680:18;;:::i;:::-;10644:56;10718:29;10740:6;10718:29;:::i;:::-;10710:37;;10802:4;10796;10792:15;10784:23;;10506:308;;;:::o;10820:148::-;10918:6;10913:3;10908;10895:30;10959:1;10950:6;10945:3;10941:16;10934:27;10820:148;;;:::o;10974:425::-;11052:5;11077:66;11093:49;11135:6;11093:49;:::i;:::-;11077:66;:::i;:::-;11068:75;;11166:6;11159:5;11152:21;11204:4;11197:5;11193:16;11242:3;11233:6;11228:3;11224:16;11221:25;11218:112;;;11249:79;;:::i;:::-;11218:112;11339:54;11386:6;11381:3;11376;11339:54;:::i;:::-;11058:341;10974:425;;;;;:::o;11419:340::-;11475:5;11524:3;11517:4;11509:6;11505:17;11501:27;11491:122;;11532:79;;:::i;:::-;11491:122;11649:6;11636:20;11674:79;11749:3;11741:6;11734:4;11726:6;11722:17;11674:79;:::i;:::-;11665:88;;11481:278;11419:340;;;;:::o;11765:509::-;11834:6;11883:2;11871:9;11862:7;11858:23;11854:32;11851:119;;;11889:79;;:::i;:::-;11851:119;12037:1;12026:9;12022:17;12009:31;12067:18;12059:6;12056:30;12053:117;;;12089:79;;:::i;:::-;12053:117;12194:63;12249:7;12240:6;12229:9;12225:22;12194:63;:::i;:::-;12184:73;;11980:287;11765:509;;;;:::o;12280:116::-;12350:21;12365:5;12350:21;:::i;:::-;12343:5;12340:32;12330:60;;12386:1;12383;12376:12;12330:60;12280:116;:::o;12402:133::-;12445:5;12483:6;12470:20;12461:29;;12499:30;12523:5;12499:30;:::i;:::-;12402:133;;;;:::o;12541:468::-;12606:6;12614;12663:2;12651:9;12642:7;12638:23;12634:32;12631:119;;;12669:79;;:::i;:::-;12631:119;12789:1;12814:53;12859:7;12850:6;12839:9;12835:22;12814:53;:::i;:::-;12804:63;;12760:117;12916:2;12942:50;12984:7;12975:6;12964:9;12960:22;12942:50;:::i;:::-;12932:60;;12887:115;12541:468;;;;;:::o;13015:307::-;13076:4;13166:18;13158:6;13155:30;13152:56;;;13188:18;;:::i;:::-;13152:56;13226:29;13248:6;13226:29;:::i;:::-;13218:37;;13310:4;13304;13300:15;13292:23;;13015:307;;;:::o;13328:423::-;13405:5;13430:65;13446:48;13487:6;13446:48;:::i;:::-;13430:65;:::i;:::-;13421:74;;13518:6;13511:5;13504:21;13556:4;13549:5;13545:16;13594:3;13585:6;13580:3;13576:16;13573:25;13570:112;;;13601:79;;:::i;:::-;13570:112;13691:54;13738:6;13733:3;13728;13691:54;:::i;:::-;13411:340;13328:423;;;;;:::o;13770:338::-;13825:5;13874:3;13867:4;13859:6;13855:17;13851:27;13841:122;;13882:79;;:::i;:::-;13841:122;13999:6;13986:20;14024:78;14098:3;14090:6;14083:4;14075:6;14071:17;14024:78;:::i;:::-;14015:87;;13831:277;13770:338;;;;:::o;14114:943::-;14209:6;14217;14225;14233;14282:3;14270:9;14261:7;14257:23;14253:33;14250:120;;;14289:79;;:::i;:::-;14250:120;14409:1;14434:53;14479:7;14470:6;14459:9;14455:22;14434:53;:::i;:::-;14424:63;;14380:117;14536:2;14562:53;14607:7;14598:6;14587:9;14583:22;14562:53;:::i;:::-;14552:63;;14507:118;14664:2;14690:53;14735:7;14726:6;14715:9;14711:22;14690:53;:::i;:::-;14680:63;;14635:118;14820:2;14809:9;14805:18;14792:32;14851:18;14843:6;14840:30;14837:117;;;14873:79;;:::i;:::-;14837:117;14978:62;15032:7;15023:6;15012:9;15008:22;14978:62;:::i;:::-;14968:72;;14763:287;14114:943;;;;;;;:::o;15063:180::-;15111:77;15108:1;15101:88;15208:4;15205:1;15198:15;15232:4;15229:1;15222:15;15249:114;15331:1;15324:5;15321:12;15311:46;;15337:18;;:::i;:::-;15311:46;15249:114;:::o;15369:129::-;15415:7;15444:5;15433:16;;15450:42;15486:5;15450:42;:::i;:::-;15369:129;;;:::o;15504:::-;15561:9;15594:33;15621:5;15594:33;:::i;:::-;15581:46;;15504:129;;;:::o;15639:145::-;15733:44;15771:5;15733:44;:::i;:::-;15728:3;15721:57;15639:145;;:::o;15790:236::-;15890:4;15928:2;15917:9;15913:18;15905:26;;15941:78;16016:1;16005:9;16001:17;15992:6;15941:78;:::i;:::-;15790:236;;;;:::o;16032:332::-;16153:4;16191:2;16180:9;16176:18;16168:26;;16204:71;16272:1;16261:9;16257:17;16248:6;16204:71;:::i;:::-;16285:72;16353:2;16342:9;16338:18;16329:6;16285:72;:::i;:::-;16032:332;;;;;:::o;16370:359::-;16444:6;16493:2;16481:9;16472:7;16468:23;16464:32;16461:119;;;16499:79;;:::i;:::-;16461:119;16619:1;16644:68;16704:7;16695:6;16684:9;16680:22;16644:68;:::i;:::-;16634:78;;16590:132;16370:359;;;;:::o;16735:474::-;16803:6;16811;16860:2;16848:9;16839:7;16835:23;16831:32;16828:119;;;16866:79;;:::i;:::-;16828:119;16986:1;17011:53;17056:7;17047:6;17036:9;17032:22;17011:53;:::i;:::-;17001:63;;16957:117;17113:2;17139:53;17184:7;17175:6;17164:9;17160:22;17139:53;:::i;:::-;17129:63;;17084:118;16735:474;;;;;:::o;17215:180::-;17263:77;17260:1;17253:88;17360:4;17357:1;17350:15;17384:4;17381:1;17374:15;17401:320;17445:6;17482:1;17476:4;17472:12;17462:22;;17529:1;17523:4;17519:12;17550:18;17540:81;;17606:4;17598:6;17594:17;17584:27;;17540:81;17668:2;17660:6;17657:14;17637:18;17634:38;17631:84;;17687:18;;:::i;:::-;17631:84;17452:269;17401:320;;;:::o;17727:225::-;17867:34;17863:1;17855:6;17851:14;17844:58;17936:8;17931:2;17923:6;17919:15;17912:33;17727:225;:::o;17958:366::-;18100:3;18121:67;18185:2;18180:3;18121:67;:::i;:::-;18114:74;;18197:93;18286:3;18197:93;:::i;:::-;18315:2;18310:3;18306:12;18299:19;;17958:366;;;:::o;18330:419::-;18496:4;18534:2;18523:9;18519:18;18511:26;;18583:9;18577:4;18573:20;18569:1;18558:9;18554:17;18547:47;18611:131;18737:4;18611:131;:::i;:::-;18603:139;;18330:419;;;:::o;18755:230::-;18895:34;18891:1;18883:6;18879:14;18872:58;18964:13;18959:2;18951:6;18947:15;18940:38;18755:230;:::o;18991:366::-;19133:3;19154:67;19218:2;19213:3;19154:67;:::i;:::-;19147:74;;19230:93;19319:3;19230:93;:::i;:::-;19348:2;19343:3;19339:12;19332:19;;18991:366;;;:::o;19363:419::-;19529:4;19567:2;19556:9;19552:18;19544:26;;19616:9;19610:4;19606:20;19602:1;19591:9;19587:17;19580:47;19644:131;19770:4;19644:131;:::i;:::-;19636:139;;19363:419;;;:::o;19788:180::-;19836:77;19833:1;19826:88;19933:4;19930:1;19923:15;19957:4;19954:1;19947:15;19974:191;20014:3;20033:20;20051:1;20033:20;:::i;:::-;20028:25;;20067:20;20085:1;20067:20;:::i;:::-;20062:25;;20110:1;20107;20103:9;20096:16;;20131:3;20128:1;20125:10;20122:36;;;20138:18;;:::i;:::-;20122:36;19974:191;;;;:::o;20171:60::-;20199:3;20220:5;20213:12;;20171:60;;;:::o;20237:142::-;20287:9;20320:53;20338:34;20347:24;20365:5;20347:24;:::i;:::-;20338:34;:::i;:::-;20320:53;:::i;:::-;20307:66;;20237:142;;;:::o;20385:126::-;20435:9;20468:37;20499:5;20468:37;:::i;:::-;20455:50;;20385:126;;;:::o;20517:134::-;20575:9;20608:37;20639:5;20608:37;:::i;:::-;20595:50;;20517:134;;;:::o;20657:147::-;20752:45;20791:5;20752:45;:::i;:::-;20747:3;20740:58;20657:147;;:::o;20810:348::-;20939:4;20977:2;20966:9;20962:18;20954:26;;20990:79;21066:1;21055:9;21051:17;21042:6;20990:79;:::i;:::-;21079:72;21147:2;21136:9;21132:18;21123:6;21079:72;:::i;:::-;20810:348;;;;;:::o;21164:180::-;21212:77;21209:1;21202:88;21309:4;21306:1;21299:15;21333:4;21330:1;21323:15;21350:141;21399:4;21422:3;21414:11;;21445:3;21442:1;21435:14;21479:4;21476:1;21466:18;21458:26;;21350:141;;;:::o;21497:93::-;21534:6;21581:2;21576;21569:5;21565:14;21561:23;21551:33;;21497:93;;;:::o;21596:107::-;21640:8;21690:5;21684:4;21680:16;21659:37;;21596:107;;;;:::o;21709:393::-;21778:6;21828:1;21816:10;21812:18;21851:97;21881:66;21870:9;21851:97;:::i;:::-;21969:39;21999:8;21988:9;21969:39;:::i;:::-;21957:51;;22041:4;22037:9;22030:5;22026:21;22017:30;;22090:4;22080:8;22076:19;22069:5;22066:30;22056:40;;21785:317;;21709:393;;;;;:::o;22108:142::-;22158:9;22191:53;22209:34;22218:24;22236:5;22218:24;:::i;:::-;22209:34;:::i;:::-;22191:53;:::i;:::-;22178:66;;22108:142;;;:::o;22256:75::-;22299:3;22320:5;22313:12;;22256:75;;;:::o;22337:269::-;22447:39;22478:7;22447:39;:::i;:::-;22508:91;22557:41;22581:16;22557:41;:::i;:::-;22549:6;22542:4;22536:11;22508:91;:::i;:::-;22502:4;22495:105;22413:193;22337:269;;;:::o;22612:73::-;22657:3;22612:73;:::o;22691:189::-;22768:32;;:::i;:::-;22809:65;22867:6;22859;22853:4;22809:65;:::i;:::-;22744:136;22691:189;;:::o;22886:186::-;22946:120;22963:3;22956:5;22953:14;22946:120;;;23017:39;23054:1;23047:5;23017:39;:::i;:::-;22990:1;22983:5;22979:13;22970:22;;22946:120;;;22886:186;;:::o;23078:543::-;23179:2;23174:3;23171:11;23168:446;;;23213:38;23245:5;23213:38;:::i;:::-;23297:29;23315:10;23297:29;:::i;:::-;23287:8;23283:44;23480:2;23468:10;23465:18;23462:49;;;23501:8;23486:23;;23462:49;23524:80;23580:22;23598:3;23580:22;:::i;:::-;23570:8;23566:37;23553:11;23524:80;:::i;:::-;23183:431;;23168:446;23078:543;;;:::o;23627:117::-;23681:8;23731:5;23725:4;23721:16;23700:37;;23627:117;;;;:::o;23750:169::-;23794:6;23827:51;23875:1;23871:6;23863:5;23860:1;23856:13;23827:51;:::i;:::-;23823:56;23908:4;23902;23898:15;23888:25;;23801:118;23750:169;;;;:::o;23924:295::-;24000:4;24146:29;24171:3;24165:4;24146:29;:::i;:::-;24138:37;;24208:3;24205:1;24201:11;24195:4;24192:21;24184:29;;23924:295;;;;:::o;24224:1395::-;24341:37;24374:3;24341:37;:::i;:::-;24443:18;24435:6;24432:30;24429:56;;;24465:18;;:::i;:::-;24429:56;24509:38;24541:4;24535:11;24509:38;:::i;:::-;24594:67;24654:6;24646;24640:4;24594:67;:::i;:::-;24688:1;24712:4;24699:17;;24744:2;24736:6;24733:14;24761:1;24756:618;;;;25418:1;25435:6;25432:77;;;25484:9;25479:3;25475:19;25469:26;25460:35;;25432:77;25535:67;25595:6;25588:5;25535:67;:::i;:::-;25529:4;25522:81;25391:222;24726:887;;24756:618;24808:4;24804:9;24796:6;24792:22;24842:37;24874:4;24842:37;:::i;:::-;24901:1;24915:208;24929:7;24926:1;24923:14;24915:208;;;25008:9;25003:3;24999:19;24993:26;24985:6;24978:42;25059:1;25051:6;25047:14;25037:24;;25106:2;25095:9;25091:18;25078:31;;24952:4;24949:1;24945:12;24940:17;;24915:208;;;25151:6;25142:7;25139:19;25136:179;;;25209:9;25204:3;25200:19;25194:26;25252:48;25294:4;25286:6;25282:17;25271:9;25252:48;:::i;:::-;25244:6;25237:64;25159:156;25136:179;25361:1;25357;25349:6;25345:14;25341:22;25335:4;25328:36;24763:611;;;24726:887;;24316:1303;;;24224:1395;;:::o;25625:180::-;25673:77;25670:1;25663:88;25770:4;25767:1;25760:15;25794:4;25791:1;25784:15;25811:185;25851:1;25868:20;25886:1;25868:20;:::i;:::-;25863:25;;25902:20;25920:1;25902:20;:::i;:::-;25897:25;;25941:1;25931:35;;25946:18;;:::i;:::-;25931:35;25988:1;25985;25981:9;25976:14;;25811:185;;;;:::o;26002:410::-;26042:7;26065:20;26083:1;26065:20;:::i;:::-;26060:25;;26099:20;26117:1;26099:20;:::i;:::-;26094:25;;26154:1;26151;26147:9;26176:30;26194:11;26176:30;:::i;:::-;26165:41;;26355:1;26346:7;26342:15;26339:1;26336:22;26316:1;26309:9;26289:83;26266:139;;26385:18;;:::i;:::-;26266:139;26050:362;26002:410;;;;:::o;26418:165::-;26558:17;26554:1;26546:6;26542:14;26535:41;26418:165;:::o;26589:366::-;26731:3;26752:67;26816:2;26811:3;26752:67;:::i;:::-;26745:74;;26828:93;26917:3;26828:93;:::i;:::-;26946:2;26941:3;26937:12;26930:19;;26589:366;;;:::o;26961:419::-;27127:4;27165:2;27154:9;27150:18;27142:26;;27214:9;27208:4;27204:20;27200:1;27189:9;27185:17;27178:47;27242:131;27368:4;27242:131;:::i;:::-;27234:139;;26961:419;;;:::o;27386:178::-;27526:30;27522:1;27514:6;27510:14;27503:54;27386:178;:::o;27570:366::-;27712:3;27733:67;27797:2;27792:3;27733:67;:::i;:::-;27726:74;;27809:93;27898:3;27809:93;:::i;:::-;27927:2;27922:3;27918:12;27911:19;;27570:366;;;:::o;27942:419::-;28108:4;28146:2;28135:9;28131:18;28123:26;;28195:9;28189:4;28185:20;28181:1;28170:9;28166:17;28159:47;28223:131;28349:4;28223:131;:::i;:::-;28215:139;;27942:419;;;:::o;28367:169::-;28507:21;28503:1;28495:6;28491:14;28484:45;28367:169;:::o;28542:366::-;28684:3;28705:67;28769:2;28764:3;28705:67;:::i;:::-;28698:74;;28781:93;28870:3;28781:93;:::i;:::-;28899:2;28894:3;28890:12;28883:19;;28542:366;;;:::o;28914:419::-;29080:4;29118:2;29107:9;29103:18;29095:26;;29167:9;29161:4;29157:20;29153:1;29142:9;29138:17;29131:47;29195:131;29321:4;29195:131;:::i;:::-;29187:139;;28914:419;;;:::o;29339:178::-;29479:30;29475:1;29467:6;29463:14;29456:54;29339:178;:::o;29523:366::-;29665:3;29686:67;29750:2;29745:3;29686:67;:::i;:::-;29679:74;;29762:93;29851:3;29762:93;:::i;:::-;29880:2;29875:3;29871:12;29864:19;;29523:366;;;:::o;29895:419::-;30061:4;30099:2;30088:9;30084:18;30076:26;;30148:9;30142:4;30138:20;30134:1;30123:9;30119:17;30112:47;30176:131;30302:4;30176:131;:::i;:::-;30168:139;;29895:419;;;:::o;30320:167::-;30460:19;30456:1;30448:6;30444:14;30437:43;30320:167;:::o;30493:366::-;30635:3;30656:67;30720:2;30715:3;30656:67;:::i;:::-;30649:74;;30732:93;30821:3;30732:93;:::i;:::-;30850:2;30845:3;30841:12;30834:19;;30493:366;;;:::o;30865:419::-;31031:4;31069:2;31058:9;31054:18;31046:26;;31118:9;31112:4;31108:20;31104:1;31093:9;31089:17;31082:47;31146:131;31272:4;31146:131;:::i;:::-;31138:139;;30865:419;;;:::o;31290:143::-;31347:5;31378:6;31372:13;31363:22;;31394:33;31421:5;31394:33;:::i;:::-;31290:143;;;;:::o;31439:351::-;31509:6;31558:2;31546:9;31537:7;31533:23;31529:32;31526:119;;;31564:79;;:::i;:::-;31526:119;31684:1;31709:64;31765:7;31756:6;31745:9;31741:22;31709:64;:::i;:::-;31699:74;;31655:128;31439:351;;;;:::o;31796:173::-;31936:25;31932:1;31924:6;31920:14;31913:49;31796:173;:::o;31975:366::-;32117:3;32138:67;32202:2;32197:3;32138:67;:::i;:::-;32131:74;;32214:93;32303:3;32214:93;:::i;:::-;32332:2;32327:3;32323:12;32316:19;;31975:366;;;:::o;32347:419::-;32513:4;32551:2;32540:9;32536:18;32528:26;;32600:9;32594:4;32590:20;32586:1;32575:9;32571:17;32564:47;32628:131;32754:4;32628:131;:::i;:::-;32620:139;;32347:419;;;:::o;32772:181::-;32912:33;32908:1;32900:6;32896:14;32889:57;32772:181;:::o;32959:366::-;33101:3;33122:67;33186:2;33181:3;33122:67;:::i;:::-;33115:74;;33198:93;33287:3;33198:93;:::i;:::-;33316:2;33311:3;33307:12;33300:19;;32959:366;;;:::o;33331:419::-;33497:4;33535:2;33524:9;33520:18;33512:26;;33584:9;33578:4;33574:20;33570:1;33559:9;33555:17;33548:47;33612:131;33738:4;33612:131;:::i;:::-;33604:139;;33331:419;;;:::o;33756:148::-;33858:11;33895:3;33880:18;;33756:148;;;;:::o;33934:874::-;34037:3;34074:5;34068:12;34103:36;34129:9;34103:36;:::i;:::-;34155:89;34237:6;34232:3;34155:89;:::i;:::-;34148:96;;34275:1;34264:9;34260:17;34291:1;34286:166;;;;34466:1;34461:341;;;;34253:549;;34286:166;34370:4;34366:9;34355;34351:25;34346:3;34339:38;34432:6;34425:14;34418:22;34410:6;34406:35;34401:3;34397:45;34390:52;;34286:166;;34461:341;34528:38;34560:5;34528:38;:::i;:::-;34588:1;34602:154;34616:6;34613:1;34610:13;34602:154;;;34690:7;34684:14;34680:1;34675:3;34671:11;34664:35;34740:1;34731:7;34727:15;34716:26;;34638:4;34635:1;34631:12;34626:17;;34602:154;;;34785:6;34780:3;34776:16;34769:23;;34468:334;;34253:549;;34041:767;;33934:874;;;;:::o;34814:390::-;34920:3;34948:39;34981:5;34948:39;:::i;:::-;35003:89;35085:6;35080:3;35003:89;:::i;:::-;34996:96;;35101:65;35159:6;35154:3;35147:4;35140:5;35136:16;35101:65;:::i;:::-;35191:6;35186:3;35182:16;35175:23;;34924:280;34814:390;;;;:::o;35210:155::-;35350:7;35346:1;35338:6;35334:14;35327:31;35210:155;:::o;35371:400::-;35531:3;35552:84;35634:1;35629:3;35552:84;:::i;:::-;35545:91;;35645:93;35734:3;35645:93;:::i;:::-;35763:1;35758:3;35754:11;35747:18;;35371:400;;;:::o;35777:695::-;36055:3;36077:92;36165:3;36156:6;36077:92;:::i;:::-;36070:99;;36186:95;36277:3;36268:6;36186:95;:::i;:::-;36179:102;;36298:148;36442:3;36298:148;:::i;:::-;36291:155;;36463:3;36456:10;;35777:695;;;;;:::o;36478:168::-;36618:20;36614:1;36606:6;36602:14;36595:44;36478:168;:::o;36652:366::-;36794:3;36815:67;36879:2;36874:3;36815:67;:::i;:::-;36808:74;;36891:93;36980:3;36891:93;:::i;:::-;37009:2;37004:3;37000:12;36993:19;;36652:366;;;:::o;37024:419::-;37190:4;37228:2;37217:9;37213:18;37205:26;;37277:9;37271:4;37267:20;37263:1;37252:9;37248:17;37241:47;37305:131;37431:4;37305:131;:::i;:::-;37297:139;;37024:419;;;:::o;37449:147::-;37550:11;37587:3;37572:18;;37449:147;;;;:::o;37602:114::-;;:::o;37722:398::-;37881:3;37902:83;37983:1;37978:3;37902:83;:::i;:::-;37895:90;;37994:93;38083:3;37994:93;:::i;:::-;38112:1;38107:3;38103:11;38096:18;;37722:398;;;:::o;38126:379::-;38310:3;38332:147;38475:3;38332:147;:::i;:::-;38325:154;;38496:3;38489:10;;38126:379;;;:::o;38511:194::-;38551:4;38571:20;38589:1;38571:20;:::i;:::-;38566:25;;38605:20;38623:1;38605:20;:::i;:::-;38600:25;;38649:1;38646;38642:9;38634:17;;38673:1;38667:4;38664:11;38661:37;;;38678:18;;:::i;:::-;38661:37;38511:194;;;;:::o;38711:98::-;38762:6;38796:5;38790:12;38780:22;;38711:98;;;:::o;38815:168::-;38898:11;38932:6;38927:3;38920:19;38972:4;38967:3;38963:14;38948:29;;38815:168;;;;:::o;38989:373::-;39075:3;39103:38;39135:5;39103:38;:::i;:::-;39157:70;39220:6;39215:3;39157:70;:::i;:::-;39150:77;;39236:65;39294:6;39289:3;39282:4;39275:5;39271:16;39236:65;:::i;:::-;39326:29;39348:6;39326:29;:::i;:::-;39321:3;39317:39;39310:46;;39079:283;38989:373;;;;:::o;39368:640::-;39563:4;39601:3;39590:9;39586:19;39578:27;;39615:71;39683:1;39672:9;39668:17;39659:6;39615:71;:::i;:::-;39696:72;39764:2;39753:9;39749:18;39740:6;39696:72;:::i;:::-;39778;39846:2;39835:9;39831:18;39822:6;39778:72;:::i;:::-;39897:9;39891:4;39887:20;39882:2;39871:9;39867:18;39860:48;39925:76;39996:4;39987:6;39925:76;:::i;:::-;39917:84;;39368:640;;;;;;;:::o;40014:141::-;40070:5;40101:6;40095:13;40086:22;;40117:32;40143:5;40117:32;:::i;:::-;40014:141;;;;:::o;40161:349::-;40230:6;40279:2;40267:9;40258:7;40254:23;40250:32;40247:119;;;40285:79;;:::i;:::-;40247:119;40405:1;40430:63;40485:7;40476:6;40465:9;40461:22;40430:63;:::i;:::-;40420:73;;40376:127;40161:349;;;;:::o;40516:137::-;40570:5;40601:6;40595:13;40586:22;;40617:30;40641:5;40617:30;:::i;:::-;40516:137;;;;:::o;40659:345::-;40726:6;40775:2;40763:9;40754:7;40750:23;40746:32;40743:119;;;40781:79;;:::i;:::-;40743:119;40901:1;40926:61;40979:7;40970:6;40959:9;40955:22;40926:61;:::i;:::-;40916:71;;40872:125;40659:345;;;;:::o;41010:386::-;41114:3;41142:38;41174:5;41142:38;:::i;:::-;41196:88;41277:6;41272:3;41196:88;:::i;:::-;41189:95;;41293:65;41351:6;41346:3;41339:4;41332:5;41328:16;41293:65;:::i;:::-;41383:6;41378:3;41374:16;41367:23;;41118:278;41010:386;;;;:::o;41402:271::-;41532:3;41554:93;41643:3;41634:6;41554:93;:::i;:::-;41547:100;;41664:3;41657:10;;41402:271;;;;:::o

Swarm Source

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