ETH Price: $3,417.87 (-2.29%)
Gas: 8 Gwei

Token

DesArts (DesArts)
 

Overview

Max Total Supply

1,188 DesArts

Holders

474

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 DesArts
0x56bc69694a77174061e48ee2f70e04e5197aba3c
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:
DesArtsNFT

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-15
*/

// File: contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @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://diligence.consensys.net/posts/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.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @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, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * 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.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @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`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // 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(errorMessage);
            }
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    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.
     *
     * _Available since v3.4._
     */
    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.
     *
     * _Available since v3.4._
     */
    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.
     *
     * _Available since v3.4._
     */
    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.
     *
     * _Available since v3.4._
     */
    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 addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/security/Pausable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: contracts/DeasArt.sol


pragma solidity ^0.8.9;









    struct StageConfig {
        uint256 maxPerWallet;
        uint256 price;
    }

contract DesArtsNFT is ERC721A, Ownable, Pausable, ReentrancyGuard {

    uint256 private currentStage = 0;

    uint256 private constant RESERVE_STAGE = 0;
    uint256 private constant PRE_SALE_STAGE = 1;
    uint256 private constant PUBLIC_SALE_STAGE = 2;
    uint256 private constant CLOSED_SALE_STAGE = 3;
    uint256 private constant REVEAL_STAGE = 4;

    uint256 private constant MAX_TOTAL_SUPPLY = 8888;
    uint256 private constant MAX_RESERVE = 130;

    StageConfig private preSaleStageConfig;
    StageConfig private publicSaleStageConfig;

    bytes32 private privilegeRoot;
    bytes32 private ordinaryRoot;

    string private baseUriForClosed;
    string private baseUriForOpened;

    mapping(uint256 => mapping(address => uint256))
    private _stage_user_balances;
    mapping(address => bool) private _privilegeMinted;

    constructor(
        string memory _baseUriForClosed,
        string memory _baseUriForOpened,
        bytes32 _privilegeRoot,
        bytes32 _ordinaryRoot,
        StageConfig memory _preSaleStage,
        StageConfig memory _publicSaleStage
    ) Ownable() Pausable() ERC721A("DesArts", "DesArts") {
        baseUriForClosed = _baseUriForClosed;
        baseUriForOpened = _baseUriForOpened;
        privilegeRoot = _privilegeRoot;
        ordinaryRoot = _ordinaryRoot;
        preSaleStageConfig = _preSaleStage;
        publicSaleStageConfig = _publicSaleStage;
    }

    function withdraw() external onlyOwner whenNotPaused {
        address payable to = payable(_msgSender());
        Address.sendValue(to, address(this).balance);
    }

    function nextStage() external onlyOwner whenNotPaused {
        require(
            currentStage >= RESERVE_STAGE && currentStage < REVEAL_STAGE,
            "DesArtsNFT#nextStage: current stage illegal"
        );
        currentStage += 1;
    }

    function reserve(address[] memory _to, uint256 _quanlity)
    external
    onlyOwner
    whenNotPaused
    {
        require(currentStage == RESERVE_STAGE, "DesArtsNFT#reserve: Out of reserve period");
        require(
            _quanlity == _to.length,
            "DesArtsNFT#reserve: The address and quanlity mismatch."
        );
        require(
            totalSupply() + _quanlity <= MAX_RESERVE,
            "DesArtsNFT#reserve: Over reserve amount limit."
        );
        require(
            totalSupply() + _quanlity <= MAX_TOTAL_SUPPLY,
            "DesArtsNFT#reserve: Over total amount limit."
        );

        for (uint256 i = 0; i < _quanlity; i++) {
            _safeMint(_to[i], 1);
        }
    }

    function checkSaleStage(uint256 stage) internal pure {
        require(
            stage >= PRE_SALE_STAGE && stage <= PUBLIC_SALE_STAGE,
            "DesArtsNFT#checkSaleStage: Out of selling period"
        );
    }

    function batchMint(
        bytes32[] calldata _ordinaryProof,
        bytes32[] calldata _privilegeProof,
        uint256 _quantity
    ) external payable whenNotPaused nonReentrant {
        checkSaleStage(currentStage);
        require(
            _quantity + totalSupply() <= MAX_TOTAL_SUPPLY,
            "DesArtsNFT#batchMint: Quantity too big to exceed the max supply."
        );

        uint256 maxPerWallet = 0;
        if (currentStage == PRE_SALE_STAGE) {
            maxPerWallet = preSaleStageConfig.maxPerWallet;
        } else {
            maxPerWallet = publicSaleStageConfig.maxPerWallet;
        }
        require(
            _quantity + _stage_user_balances[currentStage][_msgSender()] <=
            maxPerWallet,
            "DesArtsNFT#batchMint: account hold number exceeds current stage per wallet threshold ."
        );

        uint256 fee = 0;
        bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));
        if (_isPrivilege(leaf, _privilegeProof)) {
            require(_quantity == 1, "DesArtsNFT# You could mint only one.");
            _privilegeMinted[_msgSender()] = true;
        } else {
            if (
                currentStage == PRE_SALE_STAGE
            ) {
                require(
                    MerkleProof.verify(_ordinaryProof, ordinaryRoot, leaf),
                    "DesArtsNFT#batchMint: The buyer must be in WL."
                );
                fee = preSaleStageConfig.price * _quantity;
            } else {
                fee = publicSaleStageConfig.price * _quantity;
            }
            _stage_user_balances[currentStage][_msgSender()] += _quantity;
        }

        require(
            msg.value == fee,
            "DesArtsNFT#batchMint: Transaction value did not equal the mint price."
        );

        _safeMint(_msgSender(), _quantity);
    }

    function _isPrivilege(bytes32 _leaf, bytes32[] memory _privilegeProof)
    internal
    view
    returns (bool)
    {
        return
        MerkleProof.verify(_privilegeProof, privilegeRoot, _leaf) &&
        !_privilegeMinted[_msgSender()];
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return
        currentStage == REVEAL_STAGE ? baseUriForOpened : baseUriForClosed;
    }

    function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
    {
        require(
            _exists(tokenId),
            "DesArtsNFT#tokenURI: URI query for nonexistent token"
        );

        string memory base = _baseURI();
        return
        bytes(base).length > 0
        ? string(
            abi.encodePacked(base, Strings.toString(tokenId + 1), ".json")
        )
        : "";
    }

    function setPrivilegeRoot(bytes32 _privilegeRoot) external onlyOwner {
        privilegeRoot = _privilegeRoot;
    }

    function setOrdinaryRoot(bytes32 _ordinaryRoot) external onlyOwner {
        ordinaryRoot = _ordinaryRoot;
    }

    function setBaseUriForClosed(string memory _baseUri) external onlyOwner {
        baseUriForOpened = _baseUri;
    }

    function setBaseUriForOpend(string memory _baseUri) external onlyOwner {
        baseUriForOpened = _baseUri;
    }

    function setStageConfig(uint256 stage, StageConfig calldata _stageInfo) external onlyOwner {
        checkSaleStage(stage);
        if (stage == PRE_SALE_STAGE) {
            preSaleStageConfig = _stageInfo;
        } else {
            publicSaleStageConfig = _stageInfo;
        }
    }

    function getStageConfig(uint256 stage) external view returns (StageConfig memory) {
        checkSaleStage(stage);
        if (stage == PRE_SALE_STAGE) {
            return preSaleStageConfig;
        } else {
            return publicSaleStageConfig;
        }
    }

    function getRoot() external view returns (bytes32, bytes32){
        return (privilegeRoot, ordinaryRoot);
    }

    function getCurrentStage() external view returns (uint256) {
        return currentStage;
    }

    function getMintPrice(bytes32[] calldata _privilegeProof)
    external
    view
    returns (uint256)
    {
        require(
            currentStage >= PRE_SALE_STAGE && currentStage <= PUBLIC_SALE_STAGE,
            "DesArtsNFT#getMintPrice: stage illegal"
        );

        bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));
        if (_isPrivilege(leaf, _privilegeProof)) {
            return 0;
        }
        if (currentStage == PRE_SALE_STAGE) {
            return preSaleStageConfig.price;
        } else {
            return publicSaleStageConfig.price;
        }
    }

    function getBalance() public view returns (uint256) {
        return address(this).balance;
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function renounceOwnership() public override view onlyOwner {
        revert("SafeOwnable: ownership cannot be renounced");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseUriForClosed","type":"string"},{"internalType":"string","name":"_baseUriForOpened","type":"string"},{"internalType":"bytes32","name":"_privilegeRoot","type":"bytes32"},{"internalType":"bytes32","name":"_ordinaryRoot","type":"bytes32"},{"components":[{"internalType":"uint256","name":"maxPerWallet","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"}],"internalType":"struct StageConfig","name":"_preSaleStage","type":"tuple"},{"components":[{"internalType":"uint256","name":"maxPerWallet","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"}],"internalType":"struct StageConfig","name":"_publicSaleStage","type":"tuple"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_ordinaryProof","type":"bytes32[]"},{"internalType":"bytes32[]","name":"_privilegeProof","type":"bytes32[]"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"batchMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentStage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_privilegeProof","type":"bytes32[]"}],"name":"getMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"},{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"stage","type":"uint256"}],"name":"getStageConfig","outputs":[{"components":[{"internalType":"uint256","name":"maxPerWallet","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"}],"internalType":"struct StageConfig","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextStage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"},{"internalType":"uint256","name":"_quanlity","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseUriForClosed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseUriForOpend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_ordinaryRoot","type":"bytes32"}],"name":"setOrdinaryRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_privilegeRoot","type":"bytes32"}],"name":"setPrivilegeRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"stage","type":"uint256"},{"components":[{"internalType":"uint256","name":"maxPerWallet","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"}],"internalType":"struct StageConfig","name":"_stageInfo","type":"tuple"}],"name":"setStageConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600a553480156200001657600080fd5b5060405162004c9338038062004c9383398181016040528101906200003c9190620005a9565b6040518060400160405280600781526020017f44657341727473000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f44657341727473000000000000000000000000000000000000000000000000008152508160029080519060200190620000c092919062000288565b508060039080519060200190620000d992919062000288565b50620000ea620001b560201b60201c565b60008190555050506200011262000106620001ba60201b60201c565b620001c260201b60201c565b6000600860146101000a81548160ff021916908315150217905550600160098190555085601190805190602001906200014d92919062000288565b5084601290805190602001906200016692919062000288565b5083600f819055508260108190555081600b600082015181600001556020820151816001015590505080600d6000820151816000015560208201518160010155905050505050505050620006e9565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200029690620006b3565b90600052602060002090601f016020900481019282620002ba576000855562000306565b82601f10620002d557805160ff191683800117855562000306565b8280016001018555821562000306579182015b8281111562000305578251825591602001919060010190620002e8565b5b50905062000315919062000319565b5090565b5b80821115620003345760008160009055506001016200031a565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003a18262000356565b810181811067ffffffffffffffff82111715620003c357620003c262000367565b5b80604052505050565b6000620003d862000338565b9050620003e6828262000396565b919050565b600067ffffffffffffffff82111562000409576200040862000367565b5b620004148262000356565b9050602081019050919050565b60005b838110156200044157808201518184015260208101905062000424565b8381111562000451576000848401525b50505050565b60006200046e6200046884620003eb565b620003cc565b9050828152602081018484840111156200048d576200048c62000351565b5b6200049a84828562000421565b509392505050565b600082601f830112620004ba57620004b96200034c565b5b8151620004cc84826020860162000457565b91505092915050565b6000819050919050565b620004ea81620004d5565b8114620004f657600080fd5b50565b6000815190506200050a81620004df565b92915050565b600080fd5b6000819050919050565b6200052a8162000515565b81146200053657600080fd5b50565b6000815190506200054a816200051f565b92915050565b60006040828403121562000569576200056862000510565b5b620005756040620003cc565b90506000620005878482850162000539565b60008301525060206200059d8482850162000539565b60208301525092915050565b6000806000806000806101008789031215620005ca57620005c962000342565b5b600087015167ffffffffffffffff811115620005eb57620005ea62000347565b5b620005f989828a01620004a2565b965050602087015167ffffffffffffffff8111156200061d576200061c62000347565b5b6200062b89828a01620004a2565b95505060406200063e89828a01620004f9565b94505060606200065189828a01620004f9565b93505060806200066489828a0162000550565b92505060c06200067789828a0162000550565b9150509295509295509295565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006cc57607f821691505b60208210811415620006e357620006e262000684565b5b50919050565b61459a80620006f96000396000f3fe6080604052600436106101f95760003560e01c8063715018a61161010d578063bc9bba5b116100a0578063e985e9c51161006f578063e985e9c5146106b5578063ee3743ab146106f2578063ee5d97a314610709578063eedbe31d14610732578063f2fde38b1461075d576101f9565b8063bc9bba5b146105e9578063bd1be05014610612578063c87b56dd1461063b578063d8ede18614610678576101f9565b80638da5cb5b116100dc5780638da5cb5b1461054e57806395d89b4114610579578063a22cb465146105a4578063b88d4fde146105cd576101f9565b8063715018a6146104ba5780638456cb59146104d157806386a55dda146104e85780638d1028d514610525576101f9565b80633ccfd60b116101905780635342622f1161015f5780635342622f146103c05780635c975abb146103e95780635ca1e165146104145780636352211e1461044057806370a082311461047d576101f9565b80633ccfd60b1461035a5780633f4ba83a14610371578063413f4ff51461038857806342842e0e146103a4576101f9565b806312065fe0116101cc57806312065fe0146102bf57806318160ddd146102ea57806323b872dd146103155780632ba9a71e14610331576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612a10565b610786565b6040516102329190612a58565b60405180910390f35b34801561024757600080fd5b50610250610818565b60405161025d9190612b0c565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612b64565b6108aa565b60405161029a9190612bd2565b60405180910390f35b6102bd60048036038101906102b89190612c19565b610929565b005b3480156102cb57600080fd5b506102d4610a6d565b6040516102e19190612c68565b60405180910390f35b3480156102f657600080fd5b506102ff610a75565b60405161030c9190612c68565b60405180910390f35b61032f600480360381019061032a9190612c83565b610a8c565b005b34801561033d57600080fd5b5061035860048036038101906103539190612d0c565b610db1565b005b34801561036657600080fd5b5061036f610dc3565b005b34801561037d57600080fd5b50610386610dec565b005b6103a2600480360381019061039d9190612d9e565b610dfe565b005b6103be60048036038101906103b99190612c83565b611244565b005b3480156103cc57600080fd5b506103e760048036038101906103e29190612f63565b611264565b005b3480156103f557600080fd5b506103fe611286565b60405161040b9190612a58565b60405180910390f35b34801561042057600080fd5b5061042961129d565b604051610437929190612fbb565b60405180910390f35b34801561044c57600080fd5b5061046760048036038101906104629190612b64565b6112ae565b6040516104749190612bd2565b60405180910390f35b34801561048957600080fd5b506104a4600480360381019061049f9190612fe4565b6112c0565b6040516104b19190612c68565b60405180910390f35b3480156104c657600080fd5b506104cf611379565b005b3480156104dd57600080fd5b506104e66113bc565b005b3480156104f457600080fd5b5061050f600480360381019061050a9190612b64565b6113ce565b60405161051c919061304f565b60405180910390f35b34801561053157600080fd5b5061054c6004803603810190610547919061308e565b611439565b005b34801561055a57600080fd5b50610563611481565b6040516105709190612bd2565b60405180910390f35b34801561058557600080fd5b5061058e6114ab565b60405161059b9190612b0c565b60405180910390f35b3480156105b057600080fd5b506105cb60048036038101906105c691906130fa565b61153d565b005b6105e760048036038101906105e291906131db565b611648565b005b3480156105f557600080fd5b50610610600480360381019061060b9190612d0c565b6116bb565b005b34801561061e57600080fd5b5061063960048036038101906106349190613321565b6116cd565b005b34801561064757600080fd5b50610662600480360381019061065d9190612b64565b61185a565b60405161066f9190612b0c565b60405180910390f35b34801561068457600080fd5b5061069f600480360381019061069a919061337d565b61190d565b6040516106ac9190612c68565b60405180910390f35b3480156106c157600080fd5b506106dc60048036038101906106d791906133ca565b611a19565b6040516106e99190612a58565b60405180910390f35b3480156106fe57600080fd5b50610707611aad565b005b34801561071557600080fd5b50610730600480360381019061072b9190612f63565b611b2d565b005b34801561073e57600080fd5b50610747611b4f565b6040516107549190612c68565b60405180910390f35b34801561076957600080fd5b50610784600480360381019061077f9190612fe4565b611b59565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107e157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108115750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461082790613439565b80601f016020809104026020016040519081016040528092919081815260200182805461085390613439565b80156108a05780601f10610875576101008083540402835291602001916108a0565b820191906000526020600020905b81548152906001019060200180831161088357829003601f168201915b5050505050905090565b60006108b582611bdd565b6108eb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610934826112ae565b90508073ffffffffffffffffffffffffffffffffffffffff16610955611c3c565b73ffffffffffffffffffffffffffffffffffffffff16146109b8576109818161097c611c3c565b611a19565b6109b7576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600047905090565b6000610a7f611c44565b6001546000540303905090565b6000610a9782611c49565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610afe576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b0a84611d17565b91509150610b208187610b1b611c3c565b611d3e565b610b6c57610b3586610b30611c3c565b611a19565b610b6b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610bd3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610be08686866001611d82565b8015610beb57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610cb985610c95888887611d88565b7c020000000000000000000000000000000000000000000000000000000017611db0565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d41576000600185019050600060046000838152602001908152602001600020541415610d3f576000548114610d3e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610da98686866001611ddb565b505050505050565b610db9611de1565b80600f8190555050565b610dcb611de1565b610dd3611e5f565b6000610ddd611ea9565b9050610de98147611eb1565b50565b610df4611de1565b610dfc611fa5565b565b610e06611e5f565b60026009541415610e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e43906134b7565b60405180910390fd5b6002600981905550610e5f600a54612008565b6122b8610e6a610a75565b82610e759190613506565b1115610eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ead906135ce565b60405180910390fd5b60006001600a541415610ed057600b600001549050610ed9565b600d6000015490505b8060136000600a5481526020019081526020016000206000610ef9611ea9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483610f3f9190613506565b1115610f80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7790613686565b60405180910390fd5b600080610f8b611ea9565b604051602001610f9b91906136ee565b604051602081830303815290604052805190602001209050610ffe81878780806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505061205c565b156110aa5760018414611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d9061377b565b60405180910390fd5b600160146000611054611ea9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506111df565b6001600a54141561115a57611103888880806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601054836120d0565b611142576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111399061380d565b60405180910390fd5b83600b60010154611153919061382d565b915061116e565b83600d6001015461116b919061382d565b91505b8360136000600a548152602001908152602001600020600061118e611ea9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111d79190613506565b925050819055505b813414611221576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112189061391f565b60405180910390fd5b61123261122c611ea9565b856120e7565b50505060016009819055505050505050565b61125f83838360405180602001604052806000815250611648565b505050565b61126c611de1565b80601290805190602001906112829291906128e7565b5050565b6000600860149054906101000a900460ff16905090565b600080600f54601054915091509091565b60006112b982611c49565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611328576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611381611de1565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b3906139b1565b60405180910390fd5b6113c4611de1565b6113cc612105565b565b6113d661296d565b6113df82612008565b600182141561141057600b604051806040016040529081600082015481526020016001820154815250509050611434565b600d6040518060400160405290816000820154815260200160018201548152505090505b919050565b611441611de1565b61144a82612008565b600182141561146a5780600b81816114629190613ad5565b90505061147d565b80600d81816114799190613ad5565b9050505b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546114ba90613439565b80601f01602080910402602001604051908101604052809291908181526020018280546114e690613439565b80156115335780601f1061150857610100808354040283529160200191611533565b820191906000526020600020905b81548152906001019060200180831161151657829003601f168201915b5050505050905090565b806007600061154a611c3c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115f7611c3c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161163c9190612a58565b60405180910390a35050565b611653848484610a8c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116b55761167e84848484612168565b6116b4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6116c3611de1565b8060108190555050565b6116d5611de1565b6116dd611e5f565b6000600a5414611722576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171990613b55565b60405180910390fd5b81518114611765576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175c90613be7565b60405180910390fd5b608281611770610a75565b61177a9190613506565b11156117bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b290613c79565b60405180910390fd5b6122b8816117c7610a75565b6117d19190613506565b1115611812576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180990613d0b565b60405180910390fd5b60005b818110156118555761184283828151811061183357611832613d2b565b5b602002602001015160016120e7565b808061184d90613d5a565b915050611815565b505050565b606061186582611bdd565b6118a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189b90613e15565b60405180910390fd5b60006118ae6122c8565b905060008151116118ce5760405180602001604052806000815250611905565b806118e46001856118df9190613506565b61236c565b6040516020016118f5929190613ebd565b6040516020818303038152906040525b915050919050565b60006001600a541015801561192557506002600a5411155b611964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195b90613f5e565b60405180910390fd5b600061196e611ea9565b60405160200161197e91906136ee565b6040516020818303038152906040528051906020012090506119e181858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505061205c565b156119f0576000915050611a13565b6001600a541415611a0957600b60010154915050611a13565b600d600101549150505b92915050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ab5611de1565b611abd611e5f565b6000600a5410158015611ad257506004600a54105b611b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0890613ff0565b60405180910390fd5b6001600a6000828254611b249190613506565b92505081905550565b611b35611de1565b8060129080519060200190611b4b9291906128e7565b5050565b6000600a54905090565b611b61611de1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc890614082565b60405180910390fd5b611bda816124cd565b50565b600081611be8611c44565b11158015611bf7575060005482105b8015611c35575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611c58611c44565b11611ce057600054811015611cdf5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611cdd575b6000811415611cd3576004600083600190039350838152602001908152602001600020549050611ca8565b8092505050611d12565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d9f868684612593565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611de9611ea9565b73ffffffffffffffffffffffffffffffffffffffff16611e07611481565b73ffffffffffffffffffffffffffffffffffffffff1614611e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e54906140ee565b60405180910390fd5b565b611e67611286565b15611ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9e9061415a565b60405180910390fd5b565b600033905090565b80471015611ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eeb906141c6565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611f1a90614217565b60006040518083038185875af1925050503d8060008114611f57576040519150601f19603f3d011682016040523d82523d6000602084013e611f5c565b606091505b5050905080611fa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f979061429e565b60405180910390fd5b505050565b611fad61259c565b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611ff1611ea9565b604051611ffe9190612bd2565b60405180910390a1565b6001811015801561201a575060028111155b612059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205090614330565b60405180910390fd5b50565b600061206b82600f54856120d0565b80156120c857506014600061207e611ea9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b905092915050565b6000826120dd85846125e5565b1490509392505050565b61210182826040518060200160405280600081525061263b565b5050565b61210d611e5f565b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612151611ea9565b60405161215e9190612bd2565b60405180910390a1565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261218e611c3c565b8786866040518563ffffffff1660e01b81526004016121b094939291906143a5565b602060405180830381600087803b1580156121ca57600080fd5b505af19250505080156121fb57506040513d601f19601f820116820180604052508101906121f89190614406565b60015b612275573d806000811461222b576040519150601f19603f3d011682016040523d82523d6000602084013e612230565b606091505b5060008151141561226d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606004600a54146122db5760116122de565b60125b80546122e990613439565b80601f016020809104026020016040519081016040528092919081815260200182805461231590613439565b80156123625780601f1061233757610100808354040283529160200191612362565b820191906000526020600020905b81548152906001019060200180831161234557829003601f168201915b5050505050905090565b606060008214156123b4576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124c8565b600082905060005b600082146123e65780806123cf90613d5a565b915050600a826123df9190614462565b91506123bc565b60008167ffffffffffffffff81111561240257612401612e38565b5b6040519080825280601f01601f1916602001820160405280156124345781602001600182028036833780820191505090505b5090505b600085146124c15760018261244d9190614493565b9150600a8561245c91906144c7565b60306124689190613506565b60f81b81838151811061247e5761247d613d2b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124ba9190614462565b9450612438565b8093505050505b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60009392505050565b6125a4611286565b6125e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125da90614544565b60405180910390fd5b565b60008082905060005b84518110156126305761261b8286838151811061260e5761260d613d2b565b5b60200260200101516126d8565b9150808061262890613d5a565b9150506125ee565b508091505092915050565b6126458383612703565b60008373ffffffffffffffffffffffffffffffffffffffff163b146126d357600080549050600083820390505b6126856000868380600101945086612168565b6126bb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106126725781600054146126d057600080fd5b50505b505050565b60008183106126f0576126eb82846128c0565b6126fb565b6126fa83836128c0565b5b905092915050565b6000805490506000821415612744576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127516000848385611d82565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506127c8836127b96000866000611d88565b6127c2856128d7565b17611db0565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461286957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061282e565b5060008214156128a5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506128bb6000848385611ddb565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b8280546128f390613439565b90600052602060002090601f016020900481019282612915576000855561295c565b82601f1061292e57805160ff191683800117855561295c565b8280016001018555821561295c579182015b8281111561295b578251825591602001919060010190612940565b5b5090506129699190612987565b5090565b604051806040016040528060008152602001600081525090565b5b808211156129a0576000816000905550600101612988565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6129ed816129b8565b81146129f857600080fd5b50565b600081359050612a0a816129e4565b92915050565b600060208284031215612a2657612a256129ae565b5b6000612a34848285016129fb565b91505092915050565b60008115159050919050565b612a5281612a3d565b82525050565b6000602082019050612a6d6000830184612a49565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612aad578082015181840152602081019050612a92565b83811115612abc576000848401525b50505050565b6000601f19601f8301169050919050565b6000612ade82612a73565b612ae88185612a7e565b9350612af8818560208601612a8f565b612b0181612ac2565b840191505092915050565b60006020820190508181036000830152612b268184612ad3565b905092915050565b6000819050919050565b612b4181612b2e565b8114612b4c57600080fd5b50565b600081359050612b5e81612b38565b92915050565b600060208284031215612b7a57612b796129ae565b5b6000612b8884828501612b4f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612bbc82612b91565b9050919050565b612bcc81612bb1565b82525050565b6000602082019050612be76000830184612bc3565b92915050565b612bf681612bb1565b8114612c0157600080fd5b50565b600081359050612c1381612bed565b92915050565b60008060408385031215612c3057612c2f6129ae565b5b6000612c3e85828601612c04565b9250506020612c4f85828601612b4f565b9150509250929050565b612c6281612b2e565b82525050565b6000602082019050612c7d6000830184612c59565b92915050565b600080600060608486031215612c9c57612c9b6129ae565b5b6000612caa86828701612c04565b9350506020612cbb86828701612c04565b9250506040612ccc86828701612b4f565b9150509250925092565b6000819050919050565b612ce981612cd6565b8114612cf457600080fd5b50565b600081359050612d0681612ce0565b92915050565b600060208284031215612d2257612d216129ae565b5b6000612d3084828501612cf7565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612d5e57612d5d612d39565b5b8235905067ffffffffffffffff811115612d7b57612d7a612d3e565b5b602083019150836020820283011115612d9757612d96612d43565b5b9250929050565b600080600080600060608688031215612dba57612db96129ae565b5b600086013567ffffffffffffffff811115612dd857612dd76129b3565b5b612de488828901612d48565b9550955050602086013567ffffffffffffffff811115612e0757612e066129b3565b5b612e1388828901612d48565b93509350506040612e2688828901612b4f565b9150509295509295909350565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612e7082612ac2565b810181811067ffffffffffffffff82111715612e8f57612e8e612e38565b5b80604052505050565b6000612ea26129a4565b9050612eae8282612e67565b919050565b600067ffffffffffffffff821115612ece57612ecd612e38565b5b612ed782612ac2565b9050602081019050919050565b82818337600083830152505050565b6000612f06612f0184612eb3565b612e98565b905082815260208101848484011115612f2257612f21612e33565b5b612f2d848285612ee4565b509392505050565b600082601f830112612f4a57612f49612d39565b5b8135612f5a848260208601612ef3565b91505092915050565b600060208284031215612f7957612f786129ae565b5b600082013567ffffffffffffffff811115612f9757612f966129b3565b5b612fa384828501612f35565b91505092915050565b612fb581612cd6565b82525050565b6000604082019050612fd06000830185612fac565b612fdd6020830184612fac565b9392505050565b600060208284031215612ffa57612ff96129ae565b5b600061300884828501612c04565b91505092915050565b61301a81612b2e565b82525050565b6040820160008201516130366000850182613011565b5060208201516130496020850182613011565b50505050565b60006040820190506130646000830184613020565b92915050565b600080fd5b6000604082840312156130855761308461306a565b5b81905092915050565b600080606083850312156130a5576130a46129ae565b5b60006130b385828601612b4f565b92505060206130c48582860161306f565b9150509250929050565b6130d781612a3d565b81146130e257600080fd5b50565b6000813590506130f4816130ce565b92915050565b60008060408385031215613111576131106129ae565b5b600061311f85828601612c04565b9250506020613130858286016130e5565b9150509250929050565b600067ffffffffffffffff82111561315557613154612e38565b5b61315e82612ac2565b9050602081019050919050565b600061317e6131798461313a565b612e98565b90508281526020810184848401111561319a57613199612e33565b5b6131a5848285612ee4565b509392505050565b600082601f8301126131c2576131c1612d39565b5b81356131d284826020860161316b565b91505092915050565b600080600080608085870312156131f5576131f46129ae565b5b600061320387828801612c04565b945050602061321487828801612c04565b935050604061322587828801612b4f565b925050606085013567ffffffffffffffff811115613246576132456129b3565b5b613252878288016131ad565b91505092959194509250565b600067ffffffffffffffff82111561327957613278612e38565b5b602082029050602081019050919050565b600061329d6132988461325e565b612e98565b905080838252602082019050602084028301858111156132c0576132bf612d43565b5b835b818110156132e957806132d58882612c04565b8452602084019350506020810190506132c2565b5050509392505050565b600082601f83011261330857613307612d39565b5b813561331884826020860161328a565b91505092915050565b60008060408385031215613338576133376129ae565b5b600083013567ffffffffffffffff811115613356576133556129b3565b5b613362858286016132f3565b925050602061337385828601612b4f565b9150509250929050565b60008060208385031215613394576133936129ae565b5b600083013567ffffffffffffffff8111156133b2576133b16129b3565b5b6133be85828601612d48565b92509250509250929050565b600080604083850312156133e1576133e06129ae565b5b60006133ef85828601612c04565b925050602061340085828601612c04565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061345157607f821691505b602082108114156134655761346461340a565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006134a1601f83612a7e565b91506134ac8261346b565b602082019050919050565b600060208201905081810360008301526134d081613494565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061351182612b2e565b915061351c83612b2e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613551576135506134d7565b5b828201905092915050565b7f446573417274734e46542362617463684d696e743a205175616e74697479207460008201527f6f6f2062696720746f2065786365656420746865206d617820737570706c792e602082015250565b60006135b8604083612a7e565b91506135c38261355c565b604082019050919050565b600060208201905081810360008301526135e7816135ab565b9050919050565b7f446573417274734e46542362617463684d696e743a206163636f756e7420686f60008201527f6c64206e756d62657220657863656564732063757272656e742073746167652060208201527f7065722077616c6c6574207468726573686f6c64202e00000000000000000000604082015250565b6000613670605683612a7e565b915061367b826135ee565b606082019050919050565b6000602082019050818103600083015261369f81613663565b9050919050565b60008160601b9050919050565b60006136be826136a6565b9050919050565b60006136d0826136b3565b9050919050565b6136e86136e382612bb1565b6136c5565b82525050565b60006136fa82846136d7565b60148201915081905092915050565b7f446573417274734e46542320596f7520636f756c64206d696e74206f6e6c792060008201527f6f6e652e00000000000000000000000000000000000000000000000000000000602082015250565b6000613765602483612a7e565b915061377082613709565b604082019050919050565b6000602082019050818103600083015261379481613758565b9050919050565b7f446573417274734e46542362617463684d696e743a205468652062757965722060008201527f6d75737420626520696e20574c2e000000000000000000000000000000000000602082015250565b60006137f7602e83612a7e565b91506138028261379b565b604082019050919050565b60006020820190508181036000830152613826816137ea565b9050919050565b600061383882612b2e565b915061384383612b2e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561387c5761387b6134d7565b5b828202905092915050565b7f446573417274734e46542362617463684d696e743a205472616e73616374696f60008201527f6e2076616c756520646964206e6f7420657175616c20746865206d696e74207060208201527f726963652e000000000000000000000000000000000000000000000000000000604082015250565b6000613909604583612a7e565b915061391482613887565b606082019050919050565b60006020820190508181036000830152613938816138fc565b9050919050565b7f536166654f776e61626c653a206f776e6572736869702063616e6e6f7420626560008201527f2072656e6f756e63656400000000000000000000000000000000000000000000602082015250565b600061399b602a83612a7e565b91506139a68261393f565b604082019050919050565b600060208201905081810360008301526139ca8161398e565b9050919050565b600081356139de81612b38565b80915050919050565b60008160001b9050919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff613a20846139e7565b9350801983169250808416831791505092915050565b6000819050919050565b6000613a5b613a56613a5184612b2e565b613a36565b612b2e565b9050919050565b6000819050919050565b613a7582613a40565b613a88613a8182613a62565b83546139f4565b8255505050565b600081016000830180613aa1816139d1565b9050613aad8184613a6c565b505050600181016020830180613ac2816139d1565b9050613ace8184613a6c565b5050505050565b613adf8282613a8f565b5050565b7f446573417274734e465423726573657276653a204f7574206f6620726573657260008201527f766520706572696f640000000000000000000000000000000000000000000000602082015250565b6000613b3f602983612a7e565b9150613b4a82613ae3565b604082019050919050565b60006020820190508181036000830152613b6e81613b32565b9050919050565b7f446573417274734e465423726573657276653a2054686520616464726573732060008201527f616e64207175616e6c697479206d69736d617463682e00000000000000000000602082015250565b6000613bd1603683612a7e565b9150613bdc82613b75565b604082019050919050565b60006020820190508181036000830152613c0081613bc4565b9050919050565b7f446573417274734e465423726573657276653a204f766572207265736572766560008201527f20616d6f756e74206c696d69742e000000000000000000000000000000000000602082015250565b6000613c63602e83612a7e565b9150613c6e82613c07565b604082019050919050565b60006020820190508181036000830152613c9281613c56565b9050919050565b7f446573417274734e465423726573657276653a204f76657220746f74616c206160008201527f6d6f756e74206c696d69742e0000000000000000000000000000000000000000602082015250565b6000613cf5602c83612a7e565b9150613d0082613c99565b604082019050919050565b60006020820190508181036000830152613d2481613ce8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613d6582612b2e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d9857613d976134d7565b5b600182019050919050565b7f446573417274734e465423746f6b656e5552493a20555249207175657279206660008201527f6f72206e6f6e6578697374656e7420746f6b656e000000000000000000000000602082015250565b6000613dff603483612a7e565b9150613e0a82613da3565b604082019050919050565b60006020820190508181036000830152613e2e81613df2565b9050919050565b600081905092915050565b6000613e4b82612a73565b613e558185613e35565b9350613e65818560208601612a8f565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613ea7600583613e35565b9150613eb282613e71565b600582019050919050565b6000613ec98285613e40565b9150613ed58284613e40565b9150613ee082613e9a565b91508190509392505050565b7f446573417274734e4654236765744d696e7450726963653a207374616765206960008201527f6c6c6567616c0000000000000000000000000000000000000000000000000000602082015250565b6000613f48602683612a7e565b9150613f5382613eec565b604082019050919050565b60006020820190508181036000830152613f7781613f3b565b9050919050565b7f446573417274734e4654236e65787453746167653a2063757272656e7420737460008201527f61676520696c6c6567616c000000000000000000000000000000000000000000602082015250565b6000613fda602b83612a7e565b9150613fe582613f7e565b604082019050919050565b6000602082019050818103600083015261400981613fcd565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061406c602683612a7e565b915061407782614010565b604082019050919050565b6000602082019050818103600083015261409b8161405f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140d8602083612a7e565b91506140e3826140a2565b602082019050919050565b60006020820190508181036000830152614107816140cb565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000614144601083612a7e565b915061414f8261410e565b602082019050919050565b6000602082019050818103600083015261417381614137565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b60006141b0601d83612a7e565b91506141bb8261417a565b602082019050919050565b600060208201905081810360008301526141df816141a3565b9050919050565b600081905092915050565b50565b60006142016000836141e6565b915061420c826141f1565b600082019050919050565b6000614222826141f4565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000614288603a83612a7e565b91506142938261422c565b604082019050919050565b600060208201905081810360008301526142b78161427b565b9050919050565b7f446573417274734e465423636865636b53616c6553746167653a204f7574206f60008201527f662073656c6c696e6720706572696f6400000000000000000000000000000000602082015250565b600061431a603083612a7e565b9150614325826142be565b604082019050919050565b600060208201905081810360008301526143498161430d565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061437782614350565b614381818561435b565b9350614391818560208601612a8f565b61439a81612ac2565b840191505092915050565b60006080820190506143ba6000830187612bc3565b6143c76020830186612bc3565b6143d46040830185612c59565b81810360608301526143e6818461436c565b905095945050505050565b600081519050614400816129e4565b92915050565b60006020828403121561441c5761441b6129ae565b5b600061442a848285016143f1565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061446d82612b2e565b915061447883612b2e565b92508261448857614487614433565b5b828204905092915050565b600061449e82612b2e565b91506144a983612b2e565b9250828210156144bc576144bb6134d7565b5b828203905092915050565b60006144d282612b2e565b91506144dd83612b2e565b9250826144ed576144ec614433565b5b828206905092915050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b600061452e601483612a7e565b9150614539826144f8565b602082019050919050565b6000602082019050818103600083015261455d81614521565b905091905056fea2646970667358221220d78d3e50a32bacf57db912315da357b2d7a63f1c7da39ff423d13cb9796d066a64736f6c63430008090033000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001805ff1485c10e391e68d469d49dca27099523947942890dcdba4ed905a795ef42ecdc94bbb68a7ea73d369cc741e4ea356fe6a02c2ba141b5c2dfaa5802d635f370000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000008a8e4b1a3d80000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000009fdf42f6e48000000000000000000000000000000000000000000000000000000000000000004d68747470733a2f2f697066732e66696c65626173652e696f2f697066732f516d50515432776373316474543463737a554e364b6161715a4131776179394c436a71594b51394c7676646471432f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004d68747470733a2f2f697066732e66696c65626173652e696f2f697066732f516d5a7047586e3774546d50785a656a68684559666d667150514b7173646f656f696d774e773378737a7a4d6d572f00000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101f95760003560e01c8063715018a61161010d578063bc9bba5b116100a0578063e985e9c51161006f578063e985e9c5146106b5578063ee3743ab146106f2578063ee5d97a314610709578063eedbe31d14610732578063f2fde38b1461075d576101f9565b8063bc9bba5b146105e9578063bd1be05014610612578063c87b56dd1461063b578063d8ede18614610678576101f9565b80638da5cb5b116100dc5780638da5cb5b1461054e57806395d89b4114610579578063a22cb465146105a4578063b88d4fde146105cd576101f9565b8063715018a6146104ba5780638456cb59146104d157806386a55dda146104e85780638d1028d514610525576101f9565b80633ccfd60b116101905780635342622f1161015f5780635342622f146103c05780635c975abb146103e95780635ca1e165146104145780636352211e1461044057806370a082311461047d576101f9565b80633ccfd60b1461035a5780633f4ba83a14610371578063413f4ff51461038857806342842e0e146103a4576101f9565b806312065fe0116101cc57806312065fe0146102bf57806318160ddd146102ea57806323b872dd146103155780632ba9a71e14610331576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612a10565b610786565b6040516102329190612a58565b60405180910390f35b34801561024757600080fd5b50610250610818565b60405161025d9190612b0c565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612b64565b6108aa565b60405161029a9190612bd2565b60405180910390f35b6102bd60048036038101906102b89190612c19565b610929565b005b3480156102cb57600080fd5b506102d4610a6d565b6040516102e19190612c68565b60405180910390f35b3480156102f657600080fd5b506102ff610a75565b60405161030c9190612c68565b60405180910390f35b61032f600480360381019061032a9190612c83565b610a8c565b005b34801561033d57600080fd5b5061035860048036038101906103539190612d0c565b610db1565b005b34801561036657600080fd5b5061036f610dc3565b005b34801561037d57600080fd5b50610386610dec565b005b6103a2600480360381019061039d9190612d9e565b610dfe565b005b6103be60048036038101906103b99190612c83565b611244565b005b3480156103cc57600080fd5b506103e760048036038101906103e29190612f63565b611264565b005b3480156103f557600080fd5b506103fe611286565b60405161040b9190612a58565b60405180910390f35b34801561042057600080fd5b5061042961129d565b604051610437929190612fbb565b60405180910390f35b34801561044c57600080fd5b5061046760048036038101906104629190612b64565b6112ae565b6040516104749190612bd2565b60405180910390f35b34801561048957600080fd5b506104a4600480360381019061049f9190612fe4565b6112c0565b6040516104b19190612c68565b60405180910390f35b3480156104c657600080fd5b506104cf611379565b005b3480156104dd57600080fd5b506104e66113bc565b005b3480156104f457600080fd5b5061050f600480360381019061050a9190612b64565b6113ce565b60405161051c919061304f565b60405180910390f35b34801561053157600080fd5b5061054c6004803603810190610547919061308e565b611439565b005b34801561055a57600080fd5b50610563611481565b6040516105709190612bd2565b60405180910390f35b34801561058557600080fd5b5061058e6114ab565b60405161059b9190612b0c565b60405180910390f35b3480156105b057600080fd5b506105cb60048036038101906105c691906130fa565b61153d565b005b6105e760048036038101906105e291906131db565b611648565b005b3480156105f557600080fd5b50610610600480360381019061060b9190612d0c565b6116bb565b005b34801561061e57600080fd5b5061063960048036038101906106349190613321565b6116cd565b005b34801561064757600080fd5b50610662600480360381019061065d9190612b64565b61185a565b60405161066f9190612b0c565b60405180910390f35b34801561068457600080fd5b5061069f600480360381019061069a919061337d565b61190d565b6040516106ac9190612c68565b60405180910390f35b3480156106c157600080fd5b506106dc60048036038101906106d791906133ca565b611a19565b6040516106e99190612a58565b60405180910390f35b3480156106fe57600080fd5b50610707611aad565b005b34801561071557600080fd5b50610730600480360381019061072b9190612f63565b611b2d565b005b34801561073e57600080fd5b50610747611b4f565b6040516107549190612c68565b60405180910390f35b34801561076957600080fd5b50610784600480360381019061077f9190612fe4565b611b59565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107e157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108115750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461082790613439565b80601f016020809104026020016040519081016040528092919081815260200182805461085390613439565b80156108a05780601f10610875576101008083540402835291602001916108a0565b820191906000526020600020905b81548152906001019060200180831161088357829003601f168201915b5050505050905090565b60006108b582611bdd565b6108eb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610934826112ae565b90508073ffffffffffffffffffffffffffffffffffffffff16610955611c3c565b73ffffffffffffffffffffffffffffffffffffffff16146109b8576109818161097c611c3c565b611a19565b6109b7576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600047905090565b6000610a7f611c44565b6001546000540303905090565b6000610a9782611c49565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610afe576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b0a84611d17565b91509150610b208187610b1b611c3c565b611d3e565b610b6c57610b3586610b30611c3c565b611a19565b610b6b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610bd3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610be08686866001611d82565b8015610beb57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610cb985610c95888887611d88565b7c020000000000000000000000000000000000000000000000000000000017611db0565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d41576000600185019050600060046000838152602001908152602001600020541415610d3f576000548114610d3e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610da98686866001611ddb565b505050505050565b610db9611de1565b80600f8190555050565b610dcb611de1565b610dd3611e5f565b6000610ddd611ea9565b9050610de98147611eb1565b50565b610df4611de1565b610dfc611fa5565b565b610e06611e5f565b60026009541415610e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e43906134b7565b60405180910390fd5b6002600981905550610e5f600a54612008565b6122b8610e6a610a75565b82610e759190613506565b1115610eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ead906135ce565b60405180910390fd5b60006001600a541415610ed057600b600001549050610ed9565b600d6000015490505b8060136000600a5481526020019081526020016000206000610ef9611ea9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483610f3f9190613506565b1115610f80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7790613686565b60405180910390fd5b600080610f8b611ea9565b604051602001610f9b91906136ee565b604051602081830303815290604052805190602001209050610ffe81878780806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505061205c565b156110aa5760018414611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d9061377b565b60405180910390fd5b600160146000611054611ea9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506111df565b6001600a54141561115a57611103888880806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601054836120d0565b611142576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111399061380d565b60405180910390fd5b83600b60010154611153919061382d565b915061116e565b83600d6001015461116b919061382d565b91505b8360136000600a548152602001908152602001600020600061118e611ea9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111d79190613506565b925050819055505b813414611221576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112189061391f565b60405180910390fd5b61123261122c611ea9565b856120e7565b50505060016009819055505050505050565b61125f83838360405180602001604052806000815250611648565b505050565b61126c611de1565b80601290805190602001906112829291906128e7565b5050565b6000600860149054906101000a900460ff16905090565b600080600f54601054915091509091565b60006112b982611c49565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611328576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611381611de1565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b3906139b1565b60405180910390fd5b6113c4611de1565b6113cc612105565b565b6113d661296d565b6113df82612008565b600182141561141057600b604051806040016040529081600082015481526020016001820154815250509050611434565b600d6040518060400160405290816000820154815260200160018201548152505090505b919050565b611441611de1565b61144a82612008565b600182141561146a5780600b81816114629190613ad5565b90505061147d565b80600d81816114799190613ad5565b9050505b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546114ba90613439565b80601f01602080910402602001604051908101604052809291908181526020018280546114e690613439565b80156115335780601f1061150857610100808354040283529160200191611533565b820191906000526020600020905b81548152906001019060200180831161151657829003601f168201915b5050505050905090565b806007600061154a611c3c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115f7611c3c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161163c9190612a58565b60405180910390a35050565b611653848484610a8c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116b55761167e84848484612168565b6116b4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6116c3611de1565b8060108190555050565b6116d5611de1565b6116dd611e5f565b6000600a5414611722576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171990613b55565b60405180910390fd5b81518114611765576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175c90613be7565b60405180910390fd5b608281611770610a75565b61177a9190613506565b11156117bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b290613c79565b60405180910390fd5b6122b8816117c7610a75565b6117d19190613506565b1115611812576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180990613d0b565b60405180910390fd5b60005b818110156118555761184283828151811061183357611832613d2b565b5b602002602001015160016120e7565b808061184d90613d5a565b915050611815565b505050565b606061186582611bdd565b6118a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189b90613e15565b60405180910390fd5b60006118ae6122c8565b905060008151116118ce5760405180602001604052806000815250611905565b806118e46001856118df9190613506565b61236c565b6040516020016118f5929190613ebd565b6040516020818303038152906040525b915050919050565b60006001600a541015801561192557506002600a5411155b611964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195b90613f5e565b60405180910390fd5b600061196e611ea9565b60405160200161197e91906136ee565b6040516020818303038152906040528051906020012090506119e181858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505061205c565b156119f0576000915050611a13565b6001600a541415611a0957600b60010154915050611a13565b600d600101549150505b92915050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ab5611de1565b611abd611e5f565b6000600a5410158015611ad257506004600a54105b611b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0890613ff0565b60405180910390fd5b6001600a6000828254611b249190613506565b92505081905550565b611b35611de1565b8060129080519060200190611b4b9291906128e7565b5050565b6000600a54905090565b611b61611de1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc890614082565b60405180910390fd5b611bda816124cd565b50565b600081611be8611c44565b11158015611bf7575060005482105b8015611c35575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611c58611c44565b11611ce057600054811015611cdf5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611cdd575b6000811415611cd3576004600083600190039350838152602001908152602001600020549050611ca8565b8092505050611d12565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d9f868684612593565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611de9611ea9565b73ffffffffffffffffffffffffffffffffffffffff16611e07611481565b73ffffffffffffffffffffffffffffffffffffffff1614611e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e54906140ee565b60405180910390fd5b565b611e67611286565b15611ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9e9061415a565b60405180910390fd5b565b600033905090565b80471015611ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eeb906141c6565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611f1a90614217565b60006040518083038185875af1925050503d8060008114611f57576040519150601f19603f3d011682016040523d82523d6000602084013e611f5c565b606091505b5050905080611fa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f979061429e565b60405180910390fd5b505050565b611fad61259c565b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611ff1611ea9565b604051611ffe9190612bd2565b60405180910390a1565b6001811015801561201a575060028111155b612059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205090614330565b60405180910390fd5b50565b600061206b82600f54856120d0565b80156120c857506014600061207e611ea9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b905092915050565b6000826120dd85846125e5565b1490509392505050565b61210182826040518060200160405280600081525061263b565b5050565b61210d611e5f565b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612151611ea9565b60405161215e9190612bd2565b60405180910390a1565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261218e611c3c565b8786866040518563ffffffff1660e01b81526004016121b094939291906143a5565b602060405180830381600087803b1580156121ca57600080fd5b505af19250505080156121fb57506040513d601f19601f820116820180604052508101906121f89190614406565b60015b612275573d806000811461222b576040519150601f19603f3d011682016040523d82523d6000602084013e612230565b606091505b5060008151141561226d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606004600a54146122db5760116122de565b60125b80546122e990613439565b80601f016020809104026020016040519081016040528092919081815260200182805461231590613439565b80156123625780601f1061233757610100808354040283529160200191612362565b820191906000526020600020905b81548152906001019060200180831161234557829003601f168201915b5050505050905090565b606060008214156123b4576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124c8565b600082905060005b600082146123e65780806123cf90613d5a565b915050600a826123df9190614462565b91506123bc565b60008167ffffffffffffffff81111561240257612401612e38565b5b6040519080825280601f01601f1916602001820160405280156124345781602001600182028036833780820191505090505b5090505b600085146124c15760018261244d9190614493565b9150600a8561245c91906144c7565b60306124689190613506565b60f81b81838151811061247e5761247d613d2b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124ba9190614462565b9450612438565b8093505050505b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60009392505050565b6125a4611286565b6125e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125da90614544565b60405180910390fd5b565b60008082905060005b84518110156126305761261b8286838151811061260e5761260d613d2b565b5b60200260200101516126d8565b9150808061262890613d5a565b9150506125ee565b508091505092915050565b6126458383612703565b60008373ffffffffffffffffffffffffffffffffffffffff163b146126d357600080549050600083820390505b6126856000868380600101945086612168565b6126bb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106126725781600054146126d057600080fd5b50505b505050565b60008183106126f0576126eb82846128c0565b6126fb565b6126fa83836128c0565b5b905092915050565b6000805490506000821415612744576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127516000848385611d82565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506127c8836127b96000866000611d88565b6127c2856128d7565b17611db0565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461286957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061282e565b5060008214156128a5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506128bb6000848385611ddb565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b8280546128f390613439565b90600052602060002090601f016020900481019282612915576000855561295c565b82601f1061292e57805160ff191683800117855561295c565b8280016001018555821561295c579182015b8281111561295b578251825591602001919060010190612940565b5b5090506129699190612987565b5090565b604051806040016040528060008152602001600081525090565b5b808211156129a0576000816000905550600101612988565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6129ed816129b8565b81146129f857600080fd5b50565b600081359050612a0a816129e4565b92915050565b600060208284031215612a2657612a256129ae565b5b6000612a34848285016129fb565b91505092915050565b60008115159050919050565b612a5281612a3d565b82525050565b6000602082019050612a6d6000830184612a49565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612aad578082015181840152602081019050612a92565b83811115612abc576000848401525b50505050565b6000601f19601f8301169050919050565b6000612ade82612a73565b612ae88185612a7e565b9350612af8818560208601612a8f565b612b0181612ac2565b840191505092915050565b60006020820190508181036000830152612b268184612ad3565b905092915050565b6000819050919050565b612b4181612b2e565b8114612b4c57600080fd5b50565b600081359050612b5e81612b38565b92915050565b600060208284031215612b7a57612b796129ae565b5b6000612b8884828501612b4f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612bbc82612b91565b9050919050565b612bcc81612bb1565b82525050565b6000602082019050612be76000830184612bc3565b92915050565b612bf681612bb1565b8114612c0157600080fd5b50565b600081359050612c1381612bed565b92915050565b60008060408385031215612c3057612c2f6129ae565b5b6000612c3e85828601612c04565b9250506020612c4f85828601612b4f565b9150509250929050565b612c6281612b2e565b82525050565b6000602082019050612c7d6000830184612c59565b92915050565b600080600060608486031215612c9c57612c9b6129ae565b5b6000612caa86828701612c04565b9350506020612cbb86828701612c04565b9250506040612ccc86828701612b4f565b9150509250925092565b6000819050919050565b612ce981612cd6565b8114612cf457600080fd5b50565b600081359050612d0681612ce0565b92915050565b600060208284031215612d2257612d216129ae565b5b6000612d3084828501612cf7565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612d5e57612d5d612d39565b5b8235905067ffffffffffffffff811115612d7b57612d7a612d3e565b5b602083019150836020820283011115612d9757612d96612d43565b5b9250929050565b600080600080600060608688031215612dba57612db96129ae565b5b600086013567ffffffffffffffff811115612dd857612dd76129b3565b5b612de488828901612d48565b9550955050602086013567ffffffffffffffff811115612e0757612e066129b3565b5b612e1388828901612d48565b93509350506040612e2688828901612b4f565b9150509295509295909350565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612e7082612ac2565b810181811067ffffffffffffffff82111715612e8f57612e8e612e38565b5b80604052505050565b6000612ea26129a4565b9050612eae8282612e67565b919050565b600067ffffffffffffffff821115612ece57612ecd612e38565b5b612ed782612ac2565b9050602081019050919050565b82818337600083830152505050565b6000612f06612f0184612eb3565b612e98565b905082815260208101848484011115612f2257612f21612e33565b5b612f2d848285612ee4565b509392505050565b600082601f830112612f4a57612f49612d39565b5b8135612f5a848260208601612ef3565b91505092915050565b600060208284031215612f7957612f786129ae565b5b600082013567ffffffffffffffff811115612f9757612f966129b3565b5b612fa384828501612f35565b91505092915050565b612fb581612cd6565b82525050565b6000604082019050612fd06000830185612fac565b612fdd6020830184612fac565b9392505050565b600060208284031215612ffa57612ff96129ae565b5b600061300884828501612c04565b91505092915050565b61301a81612b2e565b82525050565b6040820160008201516130366000850182613011565b5060208201516130496020850182613011565b50505050565b60006040820190506130646000830184613020565b92915050565b600080fd5b6000604082840312156130855761308461306a565b5b81905092915050565b600080606083850312156130a5576130a46129ae565b5b60006130b385828601612b4f565b92505060206130c48582860161306f565b9150509250929050565b6130d781612a3d565b81146130e257600080fd5b50565b6000813590506130f4816130ce565b92915050565b60008060408385031215613111576131106129ae565b5b600061311f85828601612c04565b9250506020613130858286016130e5565b9150509250929050565b600067ffffffffffffffff82111561315557613154612e38565b5b61315e82612ac2565b9050602081019050919050565b600061317e6131798461313a565b612e98565b90508281526020810184848401111561319a57613199612e33565b5b6131a5848285612ee4565b509392505050565b600082601f8301126131c2576131c1612d39565b5b81356131d284826020860161316b565b91505092915050565b600080600080608085870312156131f5576131f46129ae565b5b600061320387828801612c04565b945050602061321487828801612c04565b935050604061322587828801612b4f565b925050606085013567ffffffffffffffff811115613246576132456129b3565b5b613252878288016131ad565b91505092959194509250565b600067ffffffffffffffff82111561327957613278612e38565b5b602082029050602081019050919050565b600061329d6132988461325e565b612e98565b905080838252602082019050602084028301858111156132c0576132bf612d43565b5b835b818110156132e957806132d58882612c04565b8452602084019350506020810190506132c2565b5050509392505050565b600082601f83011261330857613307612d39565b5b813561331884826020860161328a565b91505092915050565b60008060408385031215613338576133376129ae565b5b600083013567ffffffffffffffff811115613356576133556129b3565b5b613362858286016132f3565b925050602061337385828601612b4f565b9150509250929050565b60008060208385031215613394576133936129ae565b5b600083013567ffffffffffffffff8111156133b2576133b16129b3565b5b6133be85828601612d48565b92509250509250929050565b600080604083850312156133e1576133e06129ae565b5b60006133ef85828601612c04565b925050602061340085828601612c04565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061345157607f821691505b602082108114156134655761346461340a565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006134a1601f83612a7e565b91506134ac8261346b565b602082019050919050565b600060208201905081810360008301526134d081613494565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061351182612b2e565b915061351c83612b2e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613551576135506134d7565b5b828201905092915050565b7f446573417274734e46542362617463684d696e743a205175616e74697479207460008201527f6f6f2062696720746f2065786365656420746865206d617820737570706c792e602082015250565b60006135b8604083612a7e565b91506135c38261355c565b604082019050919050565b600060208201905081810360008301526135e7816135ab565b9050919050565b7f446573417274734e46542362617463684d696e743a206163636f756e7420686f60008201527f6c64206e756d62657220657863656564732063757272656e742073746167652060208201527f7065722077616c6c6574207468726573686f6c64202e00000000000000000000604082015250565b6000613670605683612a7e565b915061367b826135ee565b606082019050919050565b6000602082019050818103600083015261369f81613663565b9050919050565b60008160601b9050919050565b60006136be826136a6565b9050919050565b60006136d0826136b3565b9050919050565b6136e86136e382612bb1565b6136c5565b82525050565b60006136fa82846136d7565b60148201915081905092915050565b7f446573417274734e46542320596f7520636f756c64206d696e74206f6e6c792060008201527f6f6e652e00000000000000000000000000000000000000000000000000000000602082015250565b6000613765602483612a7e565b915061377082613709565b604082019050919050565b6000602082019050818103600083015261379481613758565b9050919050565b7f446573417274734e46542362617463684d696e743a205468652062757965722060008201527f6d75737420626520696e20574c2e000000000000000000000000000000000000602082015250565b60006137f7602e83612a7e565b91506138028261379b565b604082019050919050565b60006020820190508181036000830152613826816137ea565b9050919050565b600061383882612b2e565b915061384383612b2e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561387c5761387b6134d7565b5b828202905092915050565b7f446573417274734e46542362617463684d696e743a205472616e73616374696f60008201527f6e2076616c756520646964206e6f7420657175616c20746865206d696e74207060208201527f726963652e000000000000000000000000000000000000000000000000000000604082015250565b6000613909604583612a7e565b915061391482613887565b606082019050919050565b60006020820190508181036000830152613938816138fc565b9050919050565b7f536166654f776e61626c653a206f776e6572736869702063616e6e6f7420626560008201527f2072656e6f756e63656400000000000000000000000000000000000000000000602082015250565b600061399b602a83612a7e565b91506139a68261393f565b604082019050919050565b600060208201905081810360008301526139ca8161398e565b9050919050565b600081356139de81612b38565b80915050919050565b60008160001b9050919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff613a20846139e7565b9350801983169250808416831791505092915050565b6000819050919050565b6000613a5b613a56613a5184612b2e565b613a36565b612b2e565b9050919050565b6000819050919050565b613a7582613a40565b613a88613a8182613a62565b83546139f4565b8255505050565b600081016000830180613aa1816139d1565b9050613aad8184613a6c565b505050600181016020830180613ac2816139d1565b9050613ace8184613a6c565b5050505050565b613adf8282613a8f565b5050565b7f446573417274734e465423726573657276653a204f7574206f6620726573657260008201527f766520706572696f640000000000000000000000000000000000000000000000602082015250565b6000613b3f602983612a7e565b9150613b4a82613ae3565b604082019050919050565b60006020820190508181036000830152613b6e81613b32565b9050919050565b7f446573417274734e465423726573657276653a2054686520616464726573732060008201527f616e64207175616e6c697479206d69736d617463682e00000000000000000000602082015250565b6000613bd1603683612a7e565b9150613bdc82613b75565b604082019050919050565b60006020820190508181036000830152613c0081613bc4565b9050919050565b7f446573417274734e465423726573657276653a204f766572207265736572766560008201527f20616d6f756e74206c696d69742e000000000000000000000000000000000000602082015250565b6000613c63602e83612a7e565b9150613c6e82613c07565b604082019050919050565b60006020820190508181036000830152613c9281613c56565b9050919050565b7f446573417274734e465423726573657276653a204f76657220746f74616c206160008201527f6d6f756e74206c696d69742e0000000000000000000000000000000000000000602082015250565b6000613cf5602c83612a7e565b9150613d0082613c99565b604082019050919050565b60006020820190508181036000830152613d2481613ce8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613d6582612b2e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d9857613d976134d7565b5b600182019050919050565b7f446573417274734e465423746f6b656e5552493a20555249207175657279206660008201527f6f72206e6f6e6578697374656e7420746f6b656e000000000000000000000000602082015250565b6000613dff603483612a7e565b9150613e0a82613da3565b604082019050919050565b60006020820190508181036000830152613e2e81613df2565b9050919050565b600081905092915050565b6000613e4b82612a73565b613e558185613e35565b9350613e65818560208601612a8f565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613ea7600583613e35565b9150613eb282613e71565b600582019050919050565b6000613ec98285613e40565b9150613ed58284613e40565b9150613ee082613e9a565b91508190509392505050565b7f446573417274734e4654236765744d696e7450726963653a207374616765206960008201527f6c6c6567616c0000000000000000000000000000000000000000000000000000602082015250565b6000613f48602683612a7e565b9150613f5382613eec565b604082019050919050565b60006020820190508181036000830152613f7781613f3b565b9050919050565b7f446573417274734e4654236e65787453746167653a2063757272656e7420737460008201527f61676520696c6c6567616c000000000000000000000000000000000000000000602082015250565b6000613fda602b83612a7e565b9150613fe582613f7e565b604082019050919050565b6000602082019050818103600083015261400981613fcd565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061406c602683612a7e565b915061407782614010565b604082019050919050565b6000602082019050818103600083015261409b8161405f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140d8602083612a7e565b91506140e3826140a2565b602082019050919050565b60006020820190508181036000830152614107816140cb565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000614144601083612a7e565b915061414f8261410e565b602082019050919050565b6000602082019050818103600083015261417381614137565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b60006141b0601d83612a7e565b91506141bb8261417a565b602082019050919050565b600060208201905081810360008301526141df816141a3565b9050919050565b600081905092915050565b50565b60006142016000836141e6565b915061420c826141f1565b600082019050919050565b6000614222826141f4565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000614288603a83612a7e565b91506142938261422c565b604082019050919050565b600060208201905081810360008301526142b78161427b565b9050919050565b7f446573417274734e465423636865636b53616c6553746167653a204f7574206f60008201527f662073656c6c696e6720706572696f6400000000000000000000000000000000602082015250565b600061431a603083612a7e565b9150614325826142be565b604082019050919050565b600060208201905081810360008301526143498161430d565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061437782614350565b614381818561435b565b9350614391818560208601612a8f565b61439a81612ac2565b840191505092915050565b60006080820190506143ba6000830187612bc3565b6143c76020830186612bc3565b6143d46040830185612c59565b81810360608301526143e6818461436c565b905095945050505050565b600081519050614400816129e4565b92915050565b60006020828403121561441c5761441b6129ae565b5b600061442a848285016143f1565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061446d82612b2e565b915061447883612b2e565b92508261448857614487614433565b5b828204905092915050565b600061449e82612b2e565b91506144a983612b2e565b9250828210156144bc576144bb6134d7565b5b828203905092915050565b60006144d282612b2e565b91506144dd83612b2e565b9250826144ed576144ec614433565b5b828206905092915050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b600061452e601483612a7e565b9150614539826144f8565b602082019050919050565b6000602082019050818103600083015261455d81614521565b905091905056fea2646970667358221220d78d3e50a32bacf57db912315da357b2d7a63f1c7da39ff423d13cb9796d066a64736f6c63430008090033

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

000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001805ff1485c10e391e68d469d49dca27099523947942890dcdba4ed905a795ef42ecdc94bbb68a7ea73d369cc741e4ea356fe6a02c2ba141b5c2dfaa5802d635f370000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000008a8e4b1a3d80000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000009fdf42f6e48000000000000000000000000000000000000000000000000000000000000000004d68747470733a2f2f697066732e66696c65626173652e696f2f697066732f516d50515432776373316474543463737a554e364b6161715a4131776179394c436a71594b51394c7676646471432f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004d68747470733a2f2f697066732e66696c65626173652e696f2f697066732f516d5a7047586e3774546d50785a656a68684559666d667150514b7173646f656f696d774e773378737a7a4d6d572f00000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseUriForClosed (string): https://ipfs.filebase.io/ipfs/QmPQT2wcs1dtT4cszUN6KaaqZA1way9LCjqYKQ9LvvddqC/
Arg [1] : _baseUriForOpened (string): https://ipfs.filebase.io/ipfs/QmZpGXn7tTmPxZejhhEYfmfqPQKqsdoeoimwNw3xszzMmW/
Arg [2] : _privilegeRoot (bytes32): 0x5ff1485c10e391e68d469d49dca27099523947942890dcdba4ed905a795ef42e
Arg [3] : _ordinaryRoot (bytes32): 0xcdc94bbb68a7ea73d369cc741e4ea356fe6a02c2ba141b5c2dfaa5802d635f37
Arg [4] : _preSaleStage (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [5] : _publicSaleStage (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]

-----Encoded View---------------
16 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [2] : 5ff1485c10e391e68d469d49dca27099523947942890dcdba4ed905a795ef42e
Arg [3] : cdc94bbb68a7ea73d369cc741e4ea356fe6a02c2ba141b5c2dfaa5802d635f37
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 000000000000000000000000000000000000000000000000008a8e4b1a3d8000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 000000000000000000000000000000000000000000000000009fdf42f6e48000
Arg [8] : 000000000000000000000000000000000000000000000000000000000000004d
Arg [9] : 68747470733a2f2f697066732e66696c65626173652e696f2f697066732f516d
Arg [10] : 50515432776373316474543463737a554e364b6161715a4131776179394c436a
Arg [11] : 71594b51394c7676646471432f00000000000000000000000000000000000000
Arg [12] : 000000000000000000000000000000000000000000000000000000000000004d
Arg [13] : 68747470733a2f2f697066732e66696c65626173652e696f2f697066732f516d
Arg [14] : 5a7047586e3774546d50785a656a68684559666d667150514b7173646f656f69
Arg [15] : 6d774e773378737a7a4d6d572f00000000000000000000000000000000000000


Deployed Bytecode Sourcemap

87411:8026:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18388:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19290:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25781:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25214:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95054:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15041:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29420:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;93125:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88875:169;;;;;;;;;;;;;:::i;:::-;;95230:65;;;;;;;;;;;;;:::i;:::-;;90300:1893;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32341:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;93373:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83560:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;94209:114;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;20683:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16225:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95303:131;;;;;;;;;;;;;:::i;:::-;;95161:61;;;;;;;;;;;;;:::i;:::-;;93927:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;93624:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85777:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19466:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26339:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33132:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;93251:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89314:747;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92649:468;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;94436:610;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26730:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89052:254;;;;;;;;;;;;;:::i;:::-;;93499:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;94331:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86683:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18388:639;18473:4;18812:10;18797:25;;:11;:25;;;;:102;;;;18889:10;18874:25;;:11;:25;;;;18797:102;:179;;;;18966:10;18951:25;;:11;:25;;;;18797:179;18777:199;;18388:639;;;:::o;19290:100::-;19344:13;19377:5;19370:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19290:100;:::o;25781:218::-;25857:7;25882:16;25890:7;25882;:16::i;:::-;25877:64;;25907:34;;;;;;;;;;;;;;25877:64;25961:15;:24;25977:7;25961:24;;;;;;;;;;;:30;;;;;;;;;;;;25954:37;;25781:218;;;:::o;25214:408::-;25303:13;25319:16;25327:7;25319;:16::i;:::-;25303:32;;25375:5;25352:28;;:19;:17;:19::i;:::-;:28;;;25348:175;;25400:44;25417:5;25424:19;:17;:19::i;:::-;25400:16;:44::i;:::-;25395:128;;25472:35;;;;;;;;;;;;;;25395:128;25348:175;25568:2;25535:15;:24;25551:7;25535:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25606:7;25602:2;25586:28;;25595:5;25586:28;;;;;;;;;;;;25292:330;25214:408;;:::o;95054:99::-;95097:7;95124:21;95117:28;;95054:99;:::o;15041:323::-;15102:7;15330:15;:13;:15::i;:::-;15315:12;;15299:13;;:28;:46;15292:53;;15041:323;:::o;29420:2825::-;29562:27;29592;29611:7;29592:18;:27::i;:::-;29562:57;;29677:4;29636:45;;29652:19;29636:45;;;29632:86;;29690:28;;;;;;;;;;;;;;29632:86;29732:27;29761:23;29788:35;29815:7;29788:26;:35::i;:::-;29731:92;;;;29923:68;29948:15;29965:4;29971:19;:17;:19::i;:::-;29923:24;:68::i;:::-;29918:180;;30011:43;30028:4;30034:19;:17;:19::i;:::-;30011:16;:43::i;:::-;30006:92;;30063:35;;;;;;;;;;;;;;30006:92;29918:180;30129:1;30115:16;;:2;:16;;;30111:52;;;30140:23;;;;;;;;;;;;;;30111:52;30176:43;30198:4;30204:2;30208:7;30217:1;30176:21;:43::i;:::-;30312:15;30309:160;;;30452:1;30431:19;30424:30;30309:160;30849:18;:24;30868:4;30849:24;;;;;;;;;;;;;;;;30847:26;;;;;;;;;;;;30918:18;:22;30937:2;30918:22;;;;;;;;;;;;;;;;30916:24;;;;;;;;;;;31240:146;31277:2;31326:45;31341:4;31347:2;31351:19;31326:14;:45::i;:::-;11440:8;31298:73;31240:18;:146::i;:::-;31211:17;:26;31229:7;31211:26;;;;;;;;;;;:175;;;;31557:1;11440:8;31506:19;:47;:52;31502:627;;;31579:19;31611:1;31601:7;:11;31579:33;;31768:1;31734:17;:30;31752:11;31734:30;;;;;;;;;;;;:35;31730:384;;;31872:13;;31857:11;:28;31853:242;;32052:19;32019:17;:30;32037:11;32019:30;;;;;;;;;;;:52;;;;31853:242;31730:384;31560:569;31502:627;32176:7;32172:2;32157:27;;32166:4;32157:27;;;;;;;;;;;;32195:42;32216:4;32222:2;32226:7;32235:1;32195:20;:42::i;:::-;29551:2694;;;29420:2825;;;:::o;93125:118::-;85663:13;:11;:13::i;:::-;93221:14:::1;93205:13;:30;;;;93125:118:::0;:::o;88875:169::-;85663:13;:11;:13::i;:::-;83165:19:::1;:17;:19::i;:::-;88939:18:::2;88968:12;:10;:12::i;:::-;88939:42;;88992:44;89010:2;89014:21;88992:17;:44::i;:::-;88928:116;88875:169::o:0;95230:65::-;85663:13;:11;:13::i;:::-;95277:10:::1;:8;:10::i;:::-;95230:65::o:0;90300:1893::-;83165:19;:17;:19::i;:::-;53231:1:::1;53829:7;;:19;;53821:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;53231:1;53962:7;:18;;;;90498:28:::2;90513:12;;90498:14;:28::i;:::-;87827:4;90571:13;:11;:13::i;:::-;90559:9;:25;;;;:::i;:::-;:45;;90537:159;;;;;;;;;;;;:::i;:::-;;;;;;;;;90709:20;87619:1;90748:12;;:30;90744:191;;;90810:18;:31;;;90795:46;;90744:191;;;90889:21;:34;;;90874:49;;90744:191;91044:12;90979:20;:34;91000:12;;90979:34;;;;;;;;;;;:48;91014:12;:10;:12::i;:::-;90979:48;;;;;;;;;;;;;;;;90967:9;:60;;;;:::i;:::-;:89;;90945:225;;;;;;;;;;;;:::i;:::-;;;;;;;;;91183:11;91209:12:::0;91251::::2;:10;:12::i;:::-;91234:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;91224:41;;;;;;91209:56;;91280:35;91293:4;91299:15;;91280:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:12;:35::i;:::-;91276:715;;;91353:1;91340:9;:14;91332:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;91443:4;91410:16;:30;91427:12;:10;:12::i;:::-;91410:30;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;91276:715;;;87619:1;91502:12;;:30;91480:424;;;91597:54;91616:14;;91597:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91632:12;;91646:4;91597:18;:54::i;:::-;91567:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;91793:9;91766:18;:24;;;:36;;;;:::i;:::-;91760:42;;91480:424;;;91879:9;91849:21;:27;;;:39;;;;:::i;:::-;91843:45;;91480:424;91970:9;91918:20;:34;91939:12;;91918:34;;;;;;;;;;;:48;91953:12;:10;:12::i;:::-;91918:48;;;;;;;;;;;;;;;;:61;;;;;;;:::i;:::-;;;;;;;;91276:715;92038:3;92025:9;:16;92003:135;;;;;;;;;;;;:::i;:::-;;;;;;;;;92151:34;92161:12;:10;:12::i;:::-;92175:9;92151;:34::i;:::-;90487:1706;;;53187:1:::1;54141:7;:22;;;;90300:1893:::0;;;;;:::o;32341:193::-;32487:39;32504:4;32510:2;32514:7;32487:39;;;;;;;;;;;;:16;:39::i;:::-;32341:193;;;:::o;93373:118::-;85663:13;:11;:13::i;:::-;93475:8:::1;93456:16;:27;;;;;;;;;;;;:::i;:::-;;93373:118:::0;:::o;83560:86::-;83607:4;83631:7;;;;;;;;;;;83624:14;;83560:86;:::o;94209:114::-;94251:7;94260;94287:13;;94302:12;;94279:36;;;;94209:114;;:::o;20683:152::-;20755:7;20798:27;20817:7;20798:18;:27::i;:::-;20775:52;;20683:152;;;:::o;16225:233::-;16297:7;16338:1;16321:19;;:5;:19;;;16317:60;;;16349:28;;;;;;;;;;;;;;16317:60;10384:13;16395:18;:25;16414:5;16395:25;;;;;;;;;;;;;;;;:55;16388:62;;16225:233;;;:::o;95303:131::-;85663:13;:11;:13::i;:::-;95374:52:::1;;;;;;;;;;:::i;:::-;;;;;;;;95161:61:::0;85663:13;:11;:13::i;:::-;95206:8:::1;:6;:8::i;:::-;95161:61::o:0;93927:274::-;93989:18;;:::i;:::-;94020:21;94035:5;94020:14;:21::i;:::-;87619:1;94056:5;:23;94052:142;;;94103:18;94096:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94052:142;94161:21;94154:28;;;;;;;;;;;;;;;;;;;;;;;;;;;93927:274;;;;:::o;93624:295::-;85663:13;:11;:13::i;:::-;93726:21:::1;93741:5;93726:14;:21::i;:::-;87619:1;93762:5;:23;93758:154;;;93823:10;93802:18;:31;;;;;;:::i;:::-;;;;93758:154;;;93890:10;93866:21;:34;;;;;;:::i;:::-;;;;93758:154;93624:295:::0;;:::o;85777:87::-;85823:7;85850:6;;;;;;;;;;;85843:13;;85777:87;:::o;19466:104::-;19522:13;19555:7;19548:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19466:104;:::o;26339:234::-;26486:8;26434:18;:39;26453:19;:17;:19::i;:::-;26434:39;;;;;;;;;;;;;;;:49;26474:8;26434:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26546:8;26510:55;;26525:19;:17;:19::i;:::-;26510:55;;;26556:8;26510:55;;;;;;:::i;:::-;;;;;;;;26339:234;;:::o;33132:407::-;33307:31;33320:4;33326:2;33330:7;33307:12;:31::i;:::-;33371:1;33353:2;:14;;;:19;33349:183;;33392:56;33423:4;33429:2;33433:7;33442:5;33392:30;:56::i;:::-;33387:145;;33476:40;;;;;;;;;;;;;;33387:145;33349:183;33132:407;;;;:::o;93251:114::-;85663:13;:11;:13::i;:::-;93344::::1;93329:12;:28;;;;93251:114:::0;:::o;89314:747::-;85663:13;:11;:13::i;:::-;83165:19:::1;:17;:19::i;:::-;87569:1:::2;89444:12;;:29;89436:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;89565:3;:10;89552:9;:23;89530:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;87877:3;89706:9;89690:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:40;;89668:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;87827:4;89853:9;89837:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:45;;89815:139;;;;;;;;;;;;:::i;:::-;;;;;;;;;89972:9;89967:87;89991:9;89987:1;:13;89967:87;;;90022:20;90032:3;90036:1;90032:6;;;;;;;;:::i;:::-;;;;;;;;90040:1;90022:9;:20::i;:::-;90002:3;;;;;:::i;:::-;;;;89967:87;;;;89314:747:::0;;:::o;92649:468::-;92747:13;92800:16;92808:7;92800;:16::i;:::-;92778:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;92909:18;92930:10;:8;:10::i;:::-;92909:31;;92988:1;92973:4;92967:18;:22;:142;;;;;;;;;;;;;;;;;93039:4;93045:29;93072:1;93062:7;:11;;;;:::i;:::-;93045:16;:29::i;:::-;93022:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;92967:142;92951:158;;;92649:468;;;:::o;94436:610::-;94532:7;87619:1;94579:12;;:30;;:67;;;;;87672:1;94613:12;;:33;;94579:67;94557:155;;;;;;;;;;;;:::i;:::-;;;;;;;;;94725:12;94767;:10;:12::i;:::-;94750:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;94740:41;;;;;;94725:56;;94796:35;94809:4;94815:15;;94796:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:12;:35::i;:::-;94792:76;;;94855:1;94848:8;;;;;94792:76;87619:1;94882:12;;:30;94878:161;;;94936:18;:24;;;94929:31;;;;;94878:161;95000:21;:27;;;94993:34;;;94436:610;;;;;:::o;26730:164::-;26827:4;26851:18;:25;26870:5;26851:25;;;;;;;;;;;;;;;:35;26877:8;26851:35;;;;;;;;;;;;;;;;;;;;;;;;;26844:42;;26730:164;;;;:::o;89052:254::-;85663:13;:11;:13::i;:::-;83165:19:::1;:17;:19::i;:::-;87569:1:::2;89139:12;;:29;;:60;;;;;87773:1;89172:12;;:27;89139:60;89117:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;89297:1;89281:12;;:17;;;;;;;:::i;:::-;;;;;;;;89052:254::o:0;93499:117::-;85663:13;:11;:13::i;:::-;93600:8:::1;93581:16;:27;;;;;;;;;;;;:::i;:::-;;93499:117:::0;:::o;94331:97::-;94381:7;94408:12;;94401:19;;94331:97;:::o;86683:201::-;85663:13;:11;:13::i;:::-;86792:1:::1;86772:22;;:8;:22;;;;86764:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;86848:28;86867:8;86848:18;:28::i;:::-;86683:201:::0;:::o;27152:282::-;27217:4;27273:7;27254:15;:13;:15::i;:::-;:26;;:66;;;;;27307:13;;27297:7;:23;27254:66;:153;;;;;27406:1;11160:8;27358:17;:26;27376:7;27358:26;;;;;;;;;;;;:44;:49;27254:153;27234:173;;27152:282;;;:::o;49460:105::-;49520:7;49547:10;49540:17;;49460:105;:::o;14557:92::-;14613:7;14557:92;:::o;21838:1275::-;21905:7;21925:12;21940:7;21925:22;;22008:4;21989:15;:13;:15::i;:::-;:23;21985:1061;;22042:13;;22035:4;:20;22031:1015;;;22080:14;22097:17;:23;22115:4;22097:23;;;;;;;;;;;;22080:40;;22214:1;11160:8;22186:6;:24;:29;22182:845;;;22851:113;22868:1;22858:6;:11;22851:113;;;22911:17;:25;22929:6;;;;;;;22911:25;;;;;;;;;;;;22902:34;;22851:113;;;22997:6;22990:13;;;;;;22182:845;22057:989;22031:1015;21985:1061;23074:31;;;;;;;;;;;;;;21838:1275;;;;:::o;28315:485::-;28417:27;28446:23;28487:38;28528:15;:24;28544:7;28528:24;;;;;;;;;;;28487:65;;28705:18;28682:41;;28762:19;28756:26;28737:45;;28667:126;28315:485;;;:::o;27543:659::-;27692:11;27857:16;27850:5;27846:28;27837:37;;28017:16;28006:9;28002:32;27989:45;;28167:15;28156:9;28153:30;28145:5;28134:9;28131:20;28128:56;28118:66;;27543:659;;;;;:::o;34201:159::-;;;;;:::o;48769:311::-;48904:7;48924:16;11564:3;48950:19;:41;;48924:68;;11564:3;49018:31;49029:4;49035:2;49039:9;49018:10;:31::i;:::-;49010:40;;:62;;49003:69;;;48769:311;;;;;:::o;23661:450::-;23741:14;23909:16;23902:5;23898:28;23889:37;;24086:5;24072:11;24047:23;24043:41;24040:52;24033:5;24030:63;24020:73;;23661:450;;;;:::o;35025:158::-;;;;;:::o;85942:132::-;86017:12;:10;:12::i;:::-;86006:23;;:7;:5;:7::i;:::-;:23;;;85998:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;85942:132::o;83719:108::-;83790:8;:6;:8::i;:::-;83789:9;83781:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;83719:108::o;81673:98::-;81726:7;81753:10;81746:17;;81673:98;:::o;65397:317::-;65512:6;65487:21;:31;;65479:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;65566:12;65584:9;:14;;65606:6;65584:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65565:52;;;65636:7;65628:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;65468:246;65397:317;;:::o;84415:120::-;83424:16;:14;:16::i;:::-;84484:5:::1;84474:7;;:15;;;;;;;;;;;;;;;;;;84505:22;84514:12;:10;:12::i;:::-;84505:22;;;;;;:::i;:::-;;;;;;;;84415:120::o:0;90069:223::-;87619:1;90155:5;:23;;:53;;;;;87672:1;90182:5;:26;;90155:53;90133:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;90069:223;:::o;92201:256::-;92310:4;92348:57;92367:15;92384:13;;92399:5;92348:18;:57::i;:::-;:101;;;;;92419:16;:30;92436:12;:10;:12::i;:::-;92419:30;;;;;;;;;;;;;;;;;;;;;;;;;92418:31;92348:101;92332:117;;92201:256;;;;:::o;55397:190::-;55522:4;55575;55546:25;55559:5;55566:4;55546:12;:25::i;:::-;:33;55539:40;;55397:190;;;;;:::o;43292:112::-;43369:27;43379:2;43383:8;43369:27;;;;;;;;;;;;:9;:27::i;:::-;43292:112;;:::o;84156:118::-;83165:19;:17;:19::i;:::-;84226:4:::1;84216:7;;:14;;;;;;;;;;;;;;;;;;84246:20;84253:12;:10;:12::i;:::-;84246:20;;;;;;:::i;:::-;;;;;;;;84156:118::o:0;35623:716::-;35786:4;35832:2;35807:45;;;35853:19;:17;:19::i;:::-;35874:4;35880:7;35889:5;35807:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35803:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36107:1;36090:6;:13;:18;36086:235;;;36136:40;;;;;;;;;;;;;;36086:235;36279:6;36273:13;36264:6;36260:2;36256:15;36249:38;35803:529;35976:54;;;35966:64;;;:6;:64;;;;35959:71;;;35623:716;;;;;;:::o;92465:176::-;92525:13;87773:1;92567:12;;:28;:66;;92617:16;92567:66;;;92598:16;92567:66;92551:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92465:176;:::o;71886:723::-;71942:13;72172:1;72163:5;:10;72159:53;;;72190:10;;;;;;;;;;;;;;;;;;;;;72159:53;72222:12;72237:5;72222:20;;72253:14;72278:78;72293:1;72285:4;:9;72278:78;;72311:8;;;;;:::i;:::-;;;;72342:2;72334:10;;;;;:::i;:::-;;;72278:78;;;72366:19;72398:6;72388:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72366:39;;72416:154;72432:1;72423:5;:10;72416:154;;72460:1;72450:11;;;;;:::i;:::-;;;72527:2;72519:5;:10;;;;:::i;:::-;72506:2;:24;;;;:::i;:::-;72493:39;;72476:6;72483;72476:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;72556:2;72547:11;;;;;:::i;:::-;;;72416:154;;;72594:6;72580:21;;;;;71886:723;;;;:::o;87044:191::-;87118:16;87137:6;;;;;;;;;;;87118:25;;87163:8;87154:6;;:17;;;;;;;;;;;;;;;;;;87218:8;87187:40;;87208:8;87187:40;;;;;;;;;;;;87107:128;87044:191;:::o;48470:147::-;48607:6;48470:147;;;;;:::o;83904:108::-;83971:8;:6;:8::i;:::-;83963:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;83904:108::o;56264:296::-;56347:7;56367:20;56390:4;56367:27;;56410:9;56405:118;56429:5;:12;56425:1;:16;56405:118;;;56478:33;56488:12;56502:5;56508:1;56502:8;;;;;;;;:::i;:::-;;;;;;;;56478:9;:33::i;:::-;56463:48;;56443:3;;;;;:::i;:::-;;;;56405:118;;;;56540:12;56533:19;;;56264:296;;;;:::o;42519:689::-;42650:19;42656:2;42660:8;42650:5;:19::i;:::-;42729:1;42711:2;:14;;;:19;42707:483;;42751:11;42765:13;;42751:27;;42797:13;42819:8;42813:3;:14;42797:30;;42846:233;42877:62;42916:1;42920:2;42924:7;;;;;;42933:5;42877:30;:62::i;:::-;42872:167;;42975:40;;;;;;;;;;;;;;42872:167;43074:3;43066:5;:11;42846:233;;43161:3;43144:13;;:20;43140:34;;43166:8;;;43140:34;42732:458;;42707:483;42519:689;;;:::o;62471:149::-;62534:7;62565:1;62561;:5;:51;;62592:20;62607:1;62610;62592:14;:20::i;:::-;62561:51;;;62569:20;62584:1;62587;62569:14;:20::i;:::-;62561:51;62554:58;;62471:149;;;;:::o;36801:2966::-;36874:20;36897:13;;36874:36;;36937:1;36925:8;:13;36921:44;;;36947:18;;;;;;;;;;;;;;36921:44;36978:61;37008:1;37012:2;37016:12;37030:8;36978:21;:61::i;:::-;37522:1;10522:2;37492:1;:26;;37491:32;37479:8;:45;37453:18;:22;37472:2;37453:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;37801:139;37838:2;37892:33;37915:1;37919:2;37923:1;37892:14;:33::i;:::-;37859:30;37880:8;37859:20;:30::i;:::-;:66;37801:18;:139::i;:::-;37767:17;:31;37785:12;37767:31;;;;;;;;;;;:173;;;;37957:16;37988:11;38017:8;38002:12;:23;37988:37;;38538:16;38534:2;38530:25;38518:37;;38910:12;38870:8;38829:1;38767:25;38708:1;38647;38620:335;39281:1;39267:12;39263:20;39221:346;39322:3;39313:7;39310:16;39221:346;;39540:7;39530:8;39527:1;39500:25;39497:1;39494;39489:59;39375:1;39366:7;39362:15;39351:26;;39221:346;;;39225:77;39612:1;39600:8;:13;39596:45;;;39622:19;;;;;;;;;;;;;;39596:45;39674:3;39658:13;:19;;;;37227:2462;;39699:60;39728:1;39732:2;39736:12;39750:8;39699:20;:60::i;:::-;36863:2904;36801:2966;;:::o;62628:268::-;62696:13;62803:1;62797:4;62790:15;62832:1;62826:4;62819:15;62873:4;62867;62857:21;62848:30;;62628:268;;;;:::o;24213:324::-;24283:14;24516:1;24506:8;24503:15;24477:24;24473:46;24463:56;;24213:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:77::-;5952:7;5981:5;5970:16;;5915:77;;;:::o;5998:122::-;6071:24;6089:5;6071:24;:::i;:::-;6064:5;6061:35;6051:63;;6110:1;6107;6100:12;6051:63;5998:122;:::o;6126:139::-;6172:5;6210:6;6197:20;6188:29;;6226:33;6253:5;6226:33;:::i;:::-;6126:139;;;;:::o;6271:329::-;6330:6;6379:2;6367:9;6358:7;6354:23;6350:32;6347:119;;;6385:79;;:::i;:::-;6347:119;6505:1;6530:53;6575:7;6566:6;6555:9;6551:22;6530:53;:::i;:::-;6520:63;;6476:117;6271:329;;;;:::o;6606:117::-;6715:1;6712;6705:12;6729:117;6838:1;6835;6828:12;6852:117;6961:1;6958;6951:12;6992:568;7065:8;7075:6;7125:3;7118:4;7110:6;7106:17;7102:27;7092:122;;7133:79;;:::i;:::-;7092:122;7246:6;7233:20;7223:30;;7276:18;7268:6;7265:30;7262:117;;;7298:79;;:::i;:::-;7262:117;7412:4;7404:6;7400:17;7388:29;;7466:3;7458:4;7450:6;7446:17;7436:8;7432:32;7429:41;7426:128;;;7473:79;;:::i;:::-;7426:128;6992:568;;;;;:::o;7566:1079::-;7697:6;7705;7713;7721;7729;7778:2;7766:9;7757:7;7753:23;7749:32;7746:119;;;7784:79;;:::i;:::-;7746:119;7932:1;7921:9;7917:17;7904:31;7962:18;7954:6;7951:30;7948:117;;;7984:79;;:::i;:::-;7948:117;8097:80;8169:7;8160:6;8149:9;8145:22;8097:80;:::i;:::-;8079:98;;;;7875:312;8254:2;8243:9;8239:18;8226:32;8285:18;8277:6;8274:30;8271:117;;;8307:79;;:::i;:::-;8271:117;8420:80;8492:7;8483:6;8472:9;8468:22;8420:80;:::i;:::-;8402:98;;;;8197:313;8549:2;8575:53;8620:7;8611:6;8600:9;8596:22;8575:53;:::i;:::-;8565:63;;8520:118;7566:1079;;;;;;;;:::o;8651:117::-;8760:1;8757;8750:12;8774:180;8822:77;8819:1;8812:88;8919:4;8916:1;8909:15;8943:4;8940:1;8933:15;8960:281;9043:27;9065:4;9043:27;:::i;:::-;9035:6;9031:40;9173:6;9161:10;9158:22;9137:18;9125:10;9122:34;9119:62;9116:88;;;9184:18;;:::i;:::-;9116:88;9224:10;9220:2;9213:22;9003:238;8960:281;;:::o;9247:129::-;9281:6;9308:20;;:::i;:::-;9298:30;;9337:33;9365:4;9357:6;9337:33;:::i;:::-;9247:129;;;:::o;9382:308::-;9444:4;9534:18;9526:6;9523:30;9520:56;;;9556:18;;:::i;:::-;9520:56;9594:29;9616:6;9594:29;:::i;:::-;9586:37;;9678:4;9672;9668:15;9660:23;;9382:308;;;:::o;9696:154::-;9780:6;9775:3;9770;9757:30;9842:1;9833:6;9828:3;9824:16;9817:27;9696:154;;;:::o;9856:412::-;9934:5;9959:66;9975:49;10017:6;9975:49;:::i;:::-;9959:66;:::i;:::-;9950:75;;10048:6;10041:5;10034:21;10086:4;10079:5;10075:16;10124:3;10115:6;10110:3;10106:16;10103:25;10100:112;;;10131:79;;:::i;:::-;10100:112;10221:41;10255:6;10250:3;10245;10221:41;:::i;:::-;9940:328;9856:412;;;;;:::o;10288:340::-;10344:5;10393:3;10386:4;10378:6;10374:17;10370:27;10360:122;;10401:79;;:::i;:::-;10360:122;10518:6;10505:20;10543:79;10618:3;10610:6;10603:4;10595:6;10591:17;10543:79;:::i;:::-;10534:88;;10350:278;10288:340;;;;:::o;10634:509::-;10703:6;10752:2;10740:9;10731:7;10727:23;10723:32;10720:119;;;10758:79;;:::i;:::-;10720:119;10906:1;10895:9;10891:17;10878:31;10936:18;10928:6;10925:30;10922:117;;;10958:79;;:::i;:::-;10922:117;11063:63;11118:7;11109:6;11098:9;11094:22;11063:63;:::i;:::-;11053:73;;10849:287;10634:509;;;;:::o;11149:118::-;11236:24;11254:5;11236:24;:::i;:::-;11231:3;11224:37;11149:118;;:::o;11273:332::-;11394:4;11432:2;11421:9;11417:18;11409:26;;11445:71;11513:1;11502:9;11498:17;11489:6;11445:71;:::i;:::-;11526:72;11594:2;11583:9;11579:18;11570:6;11526:72;:::i;:::-;11273:332;;;;;:::o;11611:329::-;11670:6;11719:2;11707:9;11698:7;11694:23;11690:32;11687:119;;;11725:79;;:::i;:::-;11687:119;11845:1;11870:53;11915:7;11906:6;11895:9;11891:22;11870:53;:::i;:::-;11860:63;;11816:117;11611:329;;;;:::o;11946:108::-;12023:24;12041:5;12023:24;:::i;:::-;12018:3;12011:37;11946:108;;:::o;12108:524::-;12263:4;12258:3;12254:14;12358:4;12351:5;12347:16;12341:23;12377:63;12434:4;12429:3;12425:14;12411:12;12377:63;:::i;:::-;12278:172;12533:4;12526:5;12522:16;12516:23;12552:63;12609:4;12604:3;12600:14;12586:12;12552:63;:::i;:::-;12460:165;12232:400;12108:524;;:::o;12638:338::-;12789:4;12827:2;12816:9;12812:18;12804:26;;12840:129;12966:1;12955:9;12951:17;12942:6;12840:129;:::i;:::-;12638:338;;;;:::o;12982:117::-;13091:1;13088;13081:12;13131:235;13208:5;13249:2;13240:6;13235:3;13231:16;13227:25;13224:112;;;13255:79;;:::i;:::-;13224:112;13354:6;13345:15;;13131:235;;;;:::o;13372:536::-;13471:6;13479;13528:2;13516:9;13507:7;13503:23;13499:32;13496:119;;;13534:79;;:::i;:::-;13496:119;13654:1;13679:53;13724:7;13715:6;13704:9;13700:22;13679:53;:::i;:::-;13669:63;;13625:117;13781:2;13807:84;13883:7;13874:6;13863:9;13859:22;13807:84;:::i;:::-;13797:94;;13752:149;13372:536;;;;;:::o;13914:116::-;13984:21;13999:5;13984:21;:::i;:::-;13977:5;13974:32;13964:60;;14020:1;14017;14010:12;13964:60;13914:116;:::o;14036:133::-;14079:5;14117:6;14104:20;14095:29;;14133:30;14157:5;14133:30;:::i;:::-;14036:133;;;;:::o;14175:468::-;14240:6;14248;14297:2;14285:9;14276:7;14272:23;14268:32;14265:119;;;14303:79;;:::i;:::-;14265:119;14423:1;14448:53;14493:7;14484:6;14473:9;14469:22;14448:53;:::i;:::-;14438:63;;14394:117;14550:2;14576:50;14618:7;14609:6;14598:9;14594:22;14576:50;:::i;:::-;14566:60;;14521:115;14175:468;;;;;:::o;14649:307::-;14710:4;14800:18;14792:6;14789:30;14786:56;;;14822:18;;:::i;:::-;14786:56;14860:29;14882:6;14860:29;:::i;:::-;14852:37;;14944:4;14938;14934:15;14926:23;;14649:307;;;:::o;14962:410::-;15039:5;15064:65;15080:48;15121:6;15080:48;:::i;:::-;15064:65;:::i;:::-;15055:74;;15152:6;15145:5;15138:21;15190:4;15183:5;15179:16;15228:3;15219:6;15214:3;15210:16;15207:25;15204:112;;;15235:79;;:::i;:::-;15204:112;15325:41;15359:6;15354:3;15349;15325:41;:::i;:::-;15045:327;14962:410;;;;;:::o;15391:338::-;15446:5;15495:3;15488:4;15480:6;15476:17;15472:27;15462:122;;15503:79;;:::i;:::-;15462:122;15620:6;15607:20;15645:78;15719:3;15711:6;15704:4;15696:6;15692:17;15645:78;:::i;:::-;15636:87;;15452:277;15391:338;;;;:::o;15735:943::-;15830:6;15838;15846;15854;15903:3;15891:9;15882:7;15878:23;15874:33;15871:120;;;15910:79;;:::i;:::-;15871:120;16030:1;16055:53;16100:7;16091:6;16080:9;16076:22;16055:53;:::i;:::-;16045:63;;16001:117;16157:2;16183:53;16228:7;16219:6;16208:9;16204:22;16183:53;:::i;:::-;16173:63;;16128:118;16285:2;16311:53;16356:7;16347:6;16336:9;16332:22;16311:53;:::i;:::-;16301:63;;16256:118;16441:2;16430:9;16426:18;16413:32;16472:18;16464:6;16461:30;16458:117;;;16494:79;;:::i;:::-;16458:117;16599:62;16653:7;16644:6;16633:9;16629:22;16599:62;:::i;:::-;16589:72;;16384:287;15735:943;;;;;;;:::o;16684:311::-;16761:4;16851:18;16843:6;16840:30;16837:56;;;16873:18;;:::i;:::-;16837:56;16923:4;16915:6;16911:17;16903:25;;16983:4;16977;16973:15;16965:23;;16684:311;;;:::o;17018:710::-;17114:5;17139:81;17155:64;17212:6;17155:64;:::i;:::-;17139:81;:::i;:::-;17130:90;;17240:5;17269:6;17262:5;17255:21;17303:4;17296:5;17292:16;17285:23;;17356:4;17348:6;17344:17;17336:6;17332:30;17385:3;17377:6;17374:15;17371:122;;;17404:79;;:::i;:::-;17371:122;17519:6;17502:220;17536:6;17531:3;17528:15;17502:220;;;17611:3;17640:37;17673:3;17661:10;17640:37;:::i;:::-;17635:3;17628:50;17707:4;17702:3;17698:14;17691:21;;17578:144;17562:4;17557:3;17553:14;17546:21;;17502:220;;;17506:21;17120:608;;17018:710;;;;;:::o;17751:370::-;17822:5;17871:3;17864:4;17856:6;17852:17;17848:27;17838:122;;17879:79;;:::i;:::-;17838:122;17996:6;17983:20;18021:94;18111:3;18103:6;18096:4;18088:6;18084:17;18021:94;:::i;:::-;18012:103;;17828:293;17751:370;;;;:::o;18127:684::-;18220:6;18228;18277:2;18265:9;18256:7;18252:23;18248:32;18245:119;;;18283:79;;:::i;:::-;18245:119;18431:1;18420:9;18416:17;18403:31;18461:18;18453:6;18450:30;18447:117;;;18483:79;;:::i;:::-;18447:117;18588:78;18658:7;18649:6;18638:9;18634:22;18588:78;:::i;:::-;18578:88;;18374:302;18715:2;18741:53;18786:7;18777:6;18766:9;18762:22;18741:53;:::i;:::-;18731:63;;18686:118;18127:684;;;;;:::o;18817:559::-;18903:6;18911;18960:2;18948:9;18939:7;18935:23;18931:32;18928:119;;;18966:79;;:::i;:::-;18928:119;19114:1;19103:9;19099:17;19086:31;19144:18;19136:6;19133:30;19130:117;;;19166:79;;:::i;:::-;19130:117;19279:80;19351:7;19342:6;19331:9;19327:22;19279:80;:::i;:::-;19261:98;;;;19057:312;18817:559;;;;;:::o;19382:474::-;19450:6;19458;19507:2;19495:9;19486:7;19482:23;19478:32;19475:119;;;19513:79;;:::i;:::-;19475:119;19633:1;19658:53;19703:7;19694:6;19683:9;19679:22;19658:53;:::i;:::-;19648:63;;19604:117;19760:2;19786:53;19831:7;19822:6;19811:9;19807:22;19786:53;:::i;:::-;19776:63;;19731:118;19382:474;;;;;:::o;19862:180::-;19910:77;19907:1;19900:88;20007:4;20004:1;19997:15;20031:4;20028:1;20021:15;20048:320;20092:6;20129:1;20123:4;20119:12;20109:22;;20176:1;20170:4;20166:12;20197:18;20187:81;;20253:4;20245:6;20241:17;20231:27;;20187:81;20315:2;20307:6;20304:14;20284:18;20281:38;20278:84;;;20334:18;;:::i;:::-;20278:84;20099:269;20048:320;;;:::o;20374:181::-;20514:33;20510:1;20502:6;20498:14;20491:57;20374:181;:::o;20561:366::-;20703:3;20724:67;20788:2;20783:3;20724:67;:::i;:::-;20717:74;;20800:93;20889:3;20800:93;:::i;:::-;20918:2;20913:3;20909:12;20902:19;;20561:366;;;:::o;20933:419::-;21099:4;21137:2;21126:9;21122:18;21114:26;;21186:9;21180:4;21176:20;21172:1;21161:9;21157:17;21150:47;21214:131;21340:4;21214:131;:::i;:::-;21206:139;;20933:419;;;:::o;21358:180::-;21406:77;21403:1;21396:88;21503:4;21500:1;21493:15;21527:4;21524:1;21517:15;21544:305;21584:3;21603:20;21621:1;21603:20;:::i;:::-;21598:25;;21637:20;21655:1;21637:20;:::i;:::-;21632:25;;21791:1;21723:66;21719:74;21716:1;21713:81;21710:107;;;21797:18;;:::i;:::-;21710:107;21841:1;21838;21834:9;21827:16;;21544:305;;;;:::o;21855:251::-;21995:34;21991:1;21983:6;21979:14;21972:58;22064:34;22059:2;22051:6;22047:15;22040:59;21855:251;:::o;22112:366::-;22254:3;22275:67;22339:2;22334:3;22275:67;:::i;:::-;22268:74;;22351:93;22440:3;22351:93;:::i;:::-;22469:2;22464:3;22460:12;22453:19;;22112:366;;;:::o;22484:419::-;22650:4;22688:2;22677:9;22673:18;22665:26;;22737:9;22731:4;22727:20;22723:1;22712:9;22708:17;22701:47;22765:131;22891:4;22765:131;:::i;:::-;22757:139;;22484:419;;;:::o;22909:310::-;23049:34;23045:1;23037:6;23033:14;23026:58;23118:34;23113:2;23105:6;23101:15;23094:59;23187:24;23182:2;23174:6;23170:15;23163:49;22909:310;:::o;23225:366::-;23367:3;23388:67;23452:2;23447:3;23388:67;:::i;:::-;23381:74;;23464:93;23553:3;23464:93;:::i;:::-;23582:2;23577:3;23573:12;23566:19;;23225:366;;;:::o;23597:419::-;23763:4;23801:2;23790:9;23786:18;23778:26;;23850:9;23844:4;23840:20;23836:1;23825:9;23821:17;23814:47;23878:131;24004:4;23878:131;:::i;:::-;23870:139;;23597:419;;;:::o;24022:94::-;24055:8;24103:5;24099:2;24095:14;24074:35;;24022:94;;;:::o;24122:::-;24161:7;24190:20;24204:5;24190:20;:::i;:::-;24179:31;;24122:94;;;:::o;24222:100::-;24261:7;24290:26;24310:5;24290:26;:::i;:::-;24279:37;;24222:100;;;:::o;24328:157::-;24433:45;24453:24;24471:5;24453:24;:::i;:::-;24433:45;:::i;:::-;24428:3;24421:58;24328:157;;:::o;24491:256::-;24603:3;24618:75;24689:3;24680:6;24618:75;:::i;:::-;24718:2;24713:3;24709:12;24702:19;;24738:3;24731:10;;24491:256;;;;:::o;24753:223::-;24893:34;24889:1;24881:6;24877:14;24870:58;24962:6;24957:2;24949:6;24945:15;24938:31;24753:223;:::o;24982:366::-;25124:3;25145:67;25209:2;25204:3;25145:67;:::i;:::-;25138:74;;25221:93;25310:3;25221:93;:::i;:::-;25339:2;25334:3;25330:12;25323:19;;24982:366;;;:::o;25354:419::-;25520:4;25558:2;25547:9;25543:18;25535:26;;25607:9;25601:4;25597:20;25593:1;25582:9;25578:17;25571:47;25635:131;25761:4;25635:131;:::i;:::-;25627:139;;25354:419;;;:::o;25779:233::-;25919:34;25915:1;25907:6;25903:14;25896:58;25988:16;25983:2;25975:6;25971:15;25964:41;25779:233;:::o;26018:366::-;26160:3;26181:67;26245:2;26240:3;26181:67;:::i;:::-;26174:74;;26257:93;26346:3;26257:93;:::i;:::-;26375:2;26370:3;26366:12;26359:19;;26018:366;;;:::o;26390:419::-;26556:4;26594:2;26583:9;26579:18;26571:26;;26643:9;26637:4;26633:20;26629:1;26618:9;26614:17;26607:47;26671:131;26797:4;26671:131;:::i;:::-;26663:139;;26390:419;;;:::o;26815:348::-;26855:7;26878:20;26896:1;26878:20;:::i;:::-;26873:25;;26912:20;26930:1;26912:20;:::i;:::-;26907:25;;27100:1;27032:66;27028:74;27025:1;27022:81;27017:1;27010:9;27003:17;26999:105;26996:131;;;27107:18;;:::i;:::-;26996:131;27155:1;27152;27148:9;27137:20;;26815:348;;;;:::o;27169:293::-;27309:34;27305:1;27297:6;27293:14;27286:58;27378:34;27373:2;27365:6;27361:15;27354:59;27447:7;27442:2;27434:6;27430:15;27423:32;27169:293;:::o;27468:366::-;27610:3;27631:67;27695:2;27690:3;27631:67;:::i;:::-;27624:74;;27707:93;27796:3;27707:93;:::i;:::-;27825:2;27820:3;27816:12;27809:19;;27468:366;;;:::o;27840:419::-;28006:4;28044:2;28033:9;28029:18;28021:26;;28093:9;28087:4;28083:20;28079:1;28068:9;28064:17;28057:47;28121:131;28247:4;28121:131;:::i;:::-;28113:139;;27840:419;;;:::o;28265:229::-;28405:34;28401:1;28393:6;28389:14;28382:58;28474:12;28469:2;28461:6;28457:15;28450:37;28265:229;:::o;28500:366::-;28642:3;28663:67;28727:2;28722:3;28663:67;:::i;:::-;28656:74;;28739:93;28828:3;28739:93;:::i;:::-;28857:2;28852:3;28848:12;28841:19;;28500:366;;;:::o;28872:419::-;29038:4;29076:2;29065:9;29061:18;29053:26;;29125:9;29119:4;29115:20;29111:1;29100:9;29096:17;29089:47;29153:131;29279:4;29153:131;:::i;:::-;29145:139;;28872:419;;;:::o;29483:186::-;29528:11;29577:3;29564:17;29590:33;29617:5;29590:33;:::i;:::-;29657:5;29633:29;;29540:129;29483:186;;;:::o;29675:92::-;29707:8;29754:5;29751:1;29747:13;29726:34;;29675:92;;;:::o;29773:290::-;29831:6;29860:66;29947:22;29960:8;29947:22;:::i;:::-;29935:34;;30002:4;29998:9;29991:5;29987:21;29978:30;;30051:4;30041:8;30037:19;30030:5;30027:30;30017:40;;29838:225;29773:290;;;;:::o;30069:60::-;30097:3;30118:5;30111:12;;30069:60;;;:::o;30135:142::-;30185:9;30218:53;30236:34;30245:24;30263:5;30245:24;:::i;:::-;30236:34;:::i;:::-;30218:53;:::i;:::-;30205:66;;30135:142;;;:::o;30283:75::-;30326:3;30347:5;30340:12;;30283:75;;;:::o;30364:262::-;30474:39;30505:7;30474:39;:::i;:::-;30535:84;30577:41;30601:16;30577:41;:::i;:::-;30570:4;30564:11;30535:84;:::i;:::-;30529:4;30522:98;30440:186;30364:262;;:::o;30632:813::-;30816:1;30810:4;30806:12;30862:1;30855:5;30851:13;30912:12;30955:42;30983:13;30955:42;:::i;:::-;30938:59;;31011:78;31075:13;31063:10;31011:78;:::i;:::-;30773:327;;;31153:1;31147:4;31143:12;31199:2;31192:5;31188:14;31250:12;31293:42;31321:13;31293:42;:::i;:::-;31276:59;;31349:78;31413:13;31401:10;31349:78;:::i;:::-;31110:328;;;30632:813;;:::o;31451:272::-;31595:122;31709:7;31703:4;31595:122;:::i;:::-;31451:272;;:::o;31729:228::-;31869:34;31865:1;31857:6;31853:14;31846:58;31938:11;31933:2;31925:6;31921:15;31914:36;31729:228;:::o;31963:366::-;32105:3;32126:67;32190:2;32185:3;32126:67;:::i;:::-;32119:74;;32202:93;32291:3;32202:93;:::i;:::-;32320:2;32315:3;32311:12;32304:19;;31963:366;;;:::o;32335:419::-;32501:4;32539:2;32528:9;32524:18;32516:26;;32588:9;32582:4;32578:20;32574:1;32563:9;32559:17;32552:47;32616:131;32742:4;32616:131;:::i;:::-;32608:139;;32335:419;;;:::o;32760:241::-;32900:34;32896:1;32888:6;32884:14;32877:58;32969:24;32964:2;32956:6;32952:15;32945:49;32760:241;:::o;33007:366::-;33149:3;33170:67;33234:2;33229:3;33170:67;:::i;:::-;33163:74;;33246:93;33335:3;33246:93;:::i;:::-;33364:2;33359:3;33355:12;33348:19;;33007:366;;;:::o;33379:419::-;33545:4;33583:2;33572:9;33568:18;33560:26;;33632:9;33626:4;33622:20;33618:1;33607:9;33603:17;33596:47;33660:131;33786:4;33660:131;:::i;:::-;33652:139;;33379:419;;;:::o;33804:233::-;33944:34;33940:1;33932:6;33928:14;33921:58;34013:16;34008:2;34000:6;33996:15;33989:41;33804:233;:::o;34043:366::-;34185:3;34206:67;34270:2;34265:3;34206:67;:::i;:::-;34199:74;;34282:93;34371:3;34282:93;:::i;:::-;34400:2;34395:3;34391:12;34384:19;;34043:366;;;:::o;34415:419::-;34581:4;34619:2;34608:9;34604:18;34596:26;;34668:9;34662:4;34658:20;34654:1;34643:9;34639:17;34632:47;34696:131;34822:4;34696:131;:::i;:::-;34688:139;;34415:419;;;:::o;34840:231::-;34980:34;34976:1;34968:6;34964:14;34957:58;35049:14;35044:2;35036:6;35032:15;35025:39;34840:231;:::o;35077:366::-;35219:3;35240:67;35304:2;35299:3;35240:67;:::i;:::-;35233:74;;35316:93;35405:3;35316:93;:::i;:::-;35434:2;35429:3;35425:12;35418:19;;35077:366;;;:::o;35449:419::-;35615:4;35653:2;35642:9;35638:18;35630:26;;35702:9;35696:4;35692:20;35688:1;35677:9;35673:17;35666:47;35730:131;35856:4;35730:131;:::i;:::-;35722:139;;35449:419;;;:::o;35874:180::-;35922:77;35919:1;35912:88;36019:4;36016:1;36009:15;36043:4;36040:1;36033:15;36060:233;36099:3;36122:24;36140:5;36122:24;:::i;:::-;36113:33;;36168:66;36161:5;36158:77;36155:103;;;36238:18;;:::i;:::-;36155:103;36285:1;36278:5;36274:13;36267:20;;36060:233;;;:::o;36299:239::-;36439:34;36435:1;36427:6;36423:14;36416:58;36508:22;36503:2;36495:6;36491:15;36484:47;36299:239;:::o;36544:366::-;36686:3;36707:67;36771:2;36766:3;36707:67;:::i;:::-;36700:74;;36783:93;36872:3;36783:93;:::i;:::-;36901:2;36896:3;36892:12;36885:19;;36544:366;;;:::o;36916:419::-;37082:4;37120:2;37109:9;37105:18;37097:26;;37169:9;37163:4;37159:20;37155:1;37144:9;37140:17;37133:47;37197:131;37323:4;37197:131;:::i;:::-;37189:139;;36916:419;;;:::o;37341:148::-;37443:11;37480:3;37465:18;;37341:148;;;;:::o;37495:377::-;37601:3;37629:39;37662:5;37629:39;:::i;:::-;37684:89;37766:6;37761:3;37684:89;:::i;:::-;37677:96;;37782:52;37827:6;37822:3;37815:4;37808:5;37804:16;37782:52;:::i;:::-;37859:6;37854:3;37850:16;37843:23;;37605:267;37495:377;;;;:::o;37878:155::-;38018:7;38014:1;38006:6;38002:14;37995:31;37878:155;:::o;38039:400::-;38199:3;38220:84;38302:1;38297:3;38220:84;:::i;:::-;38213:91;;38313:93;38402:3;38313:93;:::i;:::-;38431:1;38426:3;38422:11;38415:18;;38039:400;;;:::o;38445:701::-;38726:3;38748:95;38839:3;38830:6;38748:95;:::i;:::-;38741:102;;38860:95;38951:3;38942:6;38860:95;:::i;:::-;38853:102;;38972:148;39116:3;38972:148;:::i;:::-;38965:155;;39137:3;39130:10;;38445:701;;;;;:::o;39152:225::-;39292:34;39288:1;39280:6;39276:14;39269:58;39361:8;39356:2;39348:6;39344:15;39337:33;39152:225;:::o;39383:366::-;39525:3;39546:67;39610:2;39605:3;39546:67;:::i;:::-;39539:74;;39622:93;39711:3;39622:93;:::i;:::-;39740:2;39735:3;39731:12;39724:19;;39383:366;;;:::o;39755:419::-;39921:4;39959:2;39948:9;39944:18;39936:26;;40008:9;40002:4;39998:20;39994:1;39983:9;39979:17;39972:47;40036:131;40162:4;40036:131;:::i;:::-;40028:139;;39755:419;;;:::o;40180:230::-;40320:34;40316:1;40308:6;40304:14;40297:58;40389:13;40384:2;40376:6;40372:15;40365:38;40180:230;:::o;40416:366::-;40558:3;40579:67;40643:2;40638:3;40579:67;:::i;:::-;40572:74;;40655:93;40744:3;40655:93;:::i;:::-;40773:2;40768:3;40764:12;40757:19;;40416:366;;;:::o;40788:419::-;40954:4;40992:2;40981:9;40977:18;40969:26;;41041:9;41035:4;41031:20;41027:1;41016:9;41012:17;41005:47;41069:131;41195:4;41069:131;:::i;:::-;41061:139;;40788:419;;;:::o;41213:225::-;41353:34;41349:1;41341:6;41337:14;41330:58;41422:8;41417:2;41409:6;41405:15;41398:33;41213:225;:::o;41444:366::-;41586:3;41607:67;41671:2;41666:3;41607:67;:::i;:::-;41600:74;;41683:93;41772:3;41683:93;:::i;:::-;41801:2;41796:3;41792:12;41785:19;;41444:366;;;:::o;41816:419::-;41982:4;42020:2;42009:9;42005:18;41997:26;;42069:9;42063:4;42059:20;42055:1;42044:9;42040:17;42033:47;42097:131;42223:4;42097:131;:::i;:::-;42089:139;;41816:419;;;:::o;42241:182::-;42381:34;42377:1;42369:6;42365:14;42358:58;42241:182;:::o;42429:366::-;42571:3;42592:67;42656:2;42651:3;42592:67;:::i;:::-;42585:74;;42668:93;42757:3;42668:93;:::i;:::-;42786:2;42781:3;42777:12;42770:19;;42429:366;;;:::o;42801:419::-;42967:4;43005:2;42994:9;42990:18;42982:26;;43054:9;43048:4;43044:20;43040:1;43029:9;43025:17;43018:47;43082:131;43208:4;43082:131;:::i;:::-;43074:139;;42801:419;;;:::o;43226:166::-;43366:18;43362:1;43354:6;43350:14;43343:42;43226:166;:::o;43398:366::-;43540:3;43561:67;43625:2;43620:3;43561:67;:::i;:::-;43554:74;;43637:93;43726:3;43637:93;:::i;:::-;43755:2;43750:3;43746:12;43739:19;;43398:366;;;:::o;43770:419::-;43936:4;43974:2;43963:9;43959:18;43951:26;;44023:9;44017:4;44013:20;44009:1;43998:9;43994:17;43987:47;44051:131;44177:4;44051:131;:::i;:::-;44043:139;;43770:419;;;:::o;44195:179::-;44335:31;44331:1;44323:6;44319:14;44312:55;44195:179;:::o;44380:366::-;44522:3;44543:67;44607:2;44602:3;44543:67;:::i;:::-;44536:74;;44619:93;44708:3;44619:93;:::i;:::-;44737:2;44732:3;44728:12;44721:19;;44380:366;;;:::o;44752:419::-;44918:4;44956:2;44945:9;44941:18;44933:26;;45005:9;44999:4;44995:20;44991:1;44980:9;44976:17;44969:47;45033:131;45159:4;45033:131;:::i;:::-;45025:139;;44752:419;;;:::o;45177:147::-;45278:11;45315:3;45300:18;;45177:147;;;;:::o;45330:114::-;;:::o;45450:398::-;45609:3;45630:83;45711:1;45706:3;45630:83;:::i;:::-;45623:90;;45722:93;45811:3;45722:93;:::i;:::-;45840:1;45835:3;45831:11;45824:18;;45450:398;;;:::o;45854:379::-;46038:3;46060:147;46203:3;46060:147;:::i;:::-;46053:154;;46224:3;46217:10;;45854:379;;;:::o;46239:245::-;46379:34;46375:1;46367:6;46363:14;46356:58;46448:28;46443:2;46435:6;46431:15;46424:53;46239:245;:::o;46490:366::-;46632:3;46653:67;46717:2;46712:3;46653:67;:::i;:::-;46646:74;;46729:93;46818:3;46729:93;:::i;:::-;46847:2;46842:3;46838:12;46831:19;;46490:366;;;:::o;46862:419::-;47028:4;47066:2;47055:9;47051:18;47043:26;;47115:9;47109:4;47105:20;47101:1;47090:9;47086:17;47079:47;47143:131;47269:4;47143:131;:::i;:::-;47135:139;;46862:419;;;:::o;47287:235::-;47427:34;47423:1;47415:6;47411:14;47404:58;47496:18;47491:2;47483:6;47479:15;47472:43;47287:235;:::o;47528:366::-;47670:3;47691:67;47755:2;47750:3;47691:67;:::i;:::-;47684:74;;47767:93;47856:3;47767:93;:::i;:::-;47885:2;47880:3;47876:12;47869:19;;47528:366;;;:::o;47900:419::-;48066:4;48104:2;48093:9;48089:18;48081:26;;48153:9;48147:4;48143:20;48139:1;48128:9;48124:17;48117:47;48181:131;48307:4;48181:131;:::i;:::-;48173:139;;47900:419;;;:::o;48325:98::-;48376:6;48410:5;48404:12;48394:22;;48325:98;;;:::o;48429:168::-;48512:11;48546:6;48541:3;48534:19;48586:4;48581:3;48577:14;48562:29;;48429:168;;;;:::o;48603:360::-;48689:3;48717:38;48749:5;48717:38;:::i;:::-;48771:70;48834:6;48829:3;48771:70;:::i;:::-;48764:77;;48850:52;48895:6;48890:3;48883:4;48876:5;48872:16;48850:52;:::i;:::-;48927:29;48949:6;48927:29;:::i;:::-;48922:3;48918:39;48911:46;;48693:270;48603:360;;;;:::o;48969:640::-;49164:4;49202:3;49191:9;49187:19;49179:27;;49216:71;49284:1;49273:9;49269:17;49260:6;49216:71;:::i;:::-;49297:72;49365:2;49354:9;49350:18;49341:6;49297:72;:::i;:::-;49379;49447:2;49436:9;49432:18;49423:6;49379:72;:::i;:::-;49498:9;49492:4;49488:20;49483:2;49472:9;49468:18;49461:48;49526:76;49597:4;49588:6;49526:76;:::i;:::-;49518:84;;48969:640;;;;;;;:::o;49615:141::-;49671:5;49702:6;49696:13;49687:22;;49718:32;49744:5;49718:32;:::i;:::-;49615:141;;;;:::o;49762:349::-;49831:6;49880:2;49868:9;49859:7;49855:23;49851:32;49848:119;;;49886:79;;:::i;:::-;49848:119;50006:1;50031:63;50086:7;50077:6;50066:9;50062:22;50031:63;:::i;:::-;50021:73;;49977:127;49762:349;;;;:::o;50117:180::-;50165:77;50162:1;50155:88;50262:4;50259:1;50252:15;50286:4;50283:1;50276:15;50303:185;50343:1;50360:20;50378:1;50360:20;:::i;:::-;50355:25;;50394:20;50412:1;50394:20;:::i;:::-;50389:25;;50433:1;50423:35;;50438:18;;:::i;:::-;50423:35;50480:1;50477;50473:9;50468:14;;50303:185;;;;:::o;50494:191::-;50534:4;50554:20;50572:1;50554:20;:::i;:::-;50549:25;;50588:20;50606:1;50588:20;:::i;:::-;50583:25;;50627:1;50624;50621:8;50618:34;;;50632:18;;:::i;:::-;50618:34;50677:1;50674;50670:9;50662:17;;50494:191;;;;:::o;50691:176::-;50723:1;50740:20;50758:1;50740:20;:::i;:::-;50735:25;;50774:20;50792:1;50774:20;:::i;:::-;50769:25;;50813:1;50803:35;;50818:18;;:::i;:::-;50803:35;50859:1;50856;50852:9;50847:14;;50691:176;;;;:::o;50873:170::-;51013:22;51009:1;51001:6;50997:14;50990:46;50873:170;:::o;51049:366::-;51191:3;51212:67;51276:2;51271:3;51212:67;:::i;:::-;51205:74;;51288:93;51377:3;51288:93;:::i;:::-;51406:2;51401:3;51397:12;51390:19;;51049:366;;;:::o;51421:419::-;51587:4;51625:2;51614:9;51610:18;51602:26;;51674:9;51668:4;51664:20;51660:1;51649:9;51645:17;51638:47;51702:131;51828:4;51702:131;:::i;:::-;51694:139;;51421:419;;;:::o

Swarm Source

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