ETH Price: $2,698.96 (-1.68%)

Token

CallofCthulhu (CTHULHU)
 

Overview

Max Total Supply

314 CTHULHU

Holders

238

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
jdeal.eth
Balance
1 CTHULHU
0x8Fc015f2cd9707361528bcE580593f6fc26F0adC
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:
CallofCthulhu

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

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

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

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;



/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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);
}



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

pragma solidity ^0.8.4;



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

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

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

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

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


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

// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;



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

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

pragma solidity ^0.8.4;


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

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _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 _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

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

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

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

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

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

    /**
     * Sets the auxillary 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 {
        _addressData[owner].aux = aux;
    }

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

        unchecked {
            if (_startTokenId() <= curr) if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

    /**
     * @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, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSender()) revert ApproveToCaller();

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

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

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

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @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.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // 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 {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

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

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // 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 {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

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

    /**
     * @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 {}
}
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}




// 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);
    }
}
// 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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

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


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


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





pragma solidity >=0.8.6;




interface AkloToken {
    function updateRewardOnMint(address _to, uint256 _amount) external;

    function updateReward(address _from, address _to) external;

    function getReward(address _to) external;

    function spend(address _from, uint256 _amount) external;

    function balanceOf(address account) external view returns (uint256);
}

contract CallofCthulhu is ERC721A, Ownable {

    uint public price = 0.0049 ether;
    uint public maxSupply = 4444;
    uint public maxSupplyFCFS= 200;
    uint public maxTx = 3;
    uint public maxTxFCFS = 1;

    mapping(address => uint256) public _preSaleCounter;

    bytes32 public merkleRoot;

    bool private mintOpen = false;
    bool private presaleOpen = false;
    bool private saleFCFSOpen = false;
    mapping(address => bool) private cthulhuOfSacrifice;

    string internal baseTokenURI = '';
    
    AkloToken public akloToken;



    constructor() ERC721A("CallofCthulhu", "CTHULHU") {}

    function toggleMint() external onlyOwner {
        mintOpen = !mintOpen;
    }

    function togglePresale() external onlyOwner {
        presaleOpen = !presaleOpen;
    }

    function toggleFCFS() external onlyOwner {
        saleFCFSOpen = !saleFCFSOpen;
    }
    
    function setPrice(uint newPrice) external onlyOwner {
        price = newPrice;
    }
    
    function setBaseTokenURI(string calldata _uri) external onlyOwner {
        baseTokenURI = _uri;
    }

    function setMerkleRoot(bytes32 root) external onlyOwner {
        merkleRoot = root;
    }
    
    function setMaxSupply(uint newSupply) external onlyOwner {
        maxSupply = newSupply;
    }

    function setToken(address _contract) external onlyOwner {
        akloToken = AkloToken(_contract);
    }
    
    function setMaxTx(uint newMax) external onlyOwner {
        maxTx = newMax;
    }

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

    function buyTo(address to, uint qty) external onlyOwner {
        _mintTo(to, qty);
    }

    function buyPre(uint qty, bytes32[] memory proof) external payable {
        require(presaleOpen, "store closed");
        require(
            _preSaleCounter[msg.sender] + qty <= maxTx,
            "Exceeded max available to purchase"
        );
        _preSaleCounter[msg.sender] =
            _preSaleCounter[msg.sender] +
            qty;
        require(verify(proof), "address not in whitelist");
        _buyPre(qty);
    }

    function buyFCFS(uint qty) external payable {
        require(saleFCFSOpen, "store closed");
        require(
            _preSaleCounter[msg.sender] + qty <= maxTx,
            "Exceeded max available to purchase"
        );
        _preSaleCounter[msg.sender] =
            _preSaleCounter[msg.sender] +
            qty;
        _buyFCFS(qty);
    }
    
    function buy(uint qty) external payable {
        require(mintOpen, "store closed");
        require(
            _preSaleCounter[msg.sender] + qty <= maxTx,
            "Exceeded max available to purchase"
        );
        _preSaleCounter[msg.sender] =
            _preSaleCounter[msg.sender] +
            qty;
        _buy(qty);
    }

    function _buy(uint qty) internal {
        require(qty <= maxTx && qty > 0, "TRANSACTION: qty of mints not alowed");
        require(totalSupply() + qty <= maxSupply, "reached max supply");
        require(msg.value >= price * qty, "PAYMENT: invalid value");
        _mintTo(_msgSender(), qty);
        akloToken.updateRewardOnMint(_msgSender(), qty);
    }

    function _buyPre(uint qty) internal {
        require(qty <= maxTx && qty > 0, "TRANSACTION: qty of mints not alowed");
        require(totalSupply() + qty <= maxSupply, "reached max supply of preSale");
        require(msg.value >= price * qty, "PAYMENT: invalid value");
        _mintTo(_msgSender(), qty);
        akloToken.updateRewardOnMint(_msgSender(), qty);
    }

    function _buyFCFS(uint qty) internal {
        require(qty <= maxTxFCFS && qty > 0, "TRANSACTION: qty of mints not alowed");
        require(totalSupply() + qty <= maxSupplyFCFS, "reached max supply of preSale");
        uint free = balanceOf(_msgSender()) == 0 ? 1 : 0;
        require(msg.value >= price * (qty - free), "PAYMENT: invalid value");
        _mintTo(_msgSender(), qty);
        akloToken.updateRewardOnMint(_msgSender(), qty);
    }

    function _mintTo(address to, uint qty) internal {
        require(qty + totalSupply() <= maxSupply, "SUPPLY: Value exceeds totalSupply");
        _mint(to, qty);
    }
    
    function withdraw() external onlyOwner {
        payable(_msgSender()).transfer(address(this).balance);
    }

    function verify(bytes32[] memory proof) internal view returns (bool) {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        return MerkleProof.verify(proof, merkleRoot, leaf);
    }

    function airdrop(address[] calldata _users) external onlyOwner {
        for (uint256 i = 0; i < _users.length; i++) {
            _safeMint(_users[i], 1);
        }
    }

    function claimTokens() external {
        akloToken.updateReward(msg.sender, address(0));
        akloToken.getReward(msg.sender);
    }

    function spendTokens(uint256 _amount) external {
        akloToken.spend(msg.sender, _amount);
    }

    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 tokenId,
        uint256 quantity
    ) internal virtual override {
        super._beforeTokenTransfers(from, to, tokenId, quantity);
        if (from != address(0)) {
            akloToken.updateReward(from, to);
        }
    }

    function addSacrificial(address a) public onlyOwner {
        cthulhuOfSacrifice[a] = true;
    }

    function removeSacrificial(address a) public onlyOwner {
        cthulhuOfSacrifice[a] = false;
    }

    modifier onlySacrificial() {
        require(cthulhuOfSacrifice[_msgSender()], 'Not a cthulhu of sacrifice');
        _;
    }

    function burnFromSacrificial(uint256 tokenId) public onlySacrificial {
        require(_exists(tokenId), 'Token does not exist');
        _burn(tokenId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_preSaleCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"addSacrificial","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"akloToken","outputs":[{"internalType":"contract AkloToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burnFromSacrificial","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"buyFCFS","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"buyPre","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"buyTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupplyFCFS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxFCFS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"removeSacrificial","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contract","type":"address"}],"name":"setToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"spendTokens","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":[],"name":"toggleFCFS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052661168862766400060095561115c600a5560c8600b556003600c556001600d556000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055506000601060026101000a81548160ff02191690831515021790555060405180602001604052806000815250601290805190602001906200009c9291906200025a565b50348015620000aa57600080fd5b506040518060400160405280600d81526020017f43616c6c6f66437468756c6875000000000000000000000000000000000000008152506040518060400160405280600781526020017f435448554c48550000000000000000000000000000000000000000000000000081525081600290805190602001906200012f9291906200025a565b508060039080519060200190620001489291906200025a565b50620001596200018760201b60201c565b600081905550505062000181620001756200018c60201b60201c565b6200019460201b60201c565b6200036f565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000268906200030a565b90600052602060002090601f0160209004810192826200028c5760008555620002d8565b82601f10620002a757805160ff1916838001178555620002d8565b82800160010185558215620002d8579182015b82811115620002d7578251825591602001919060010190620002ba565b5b509050620002e79190620002eb565b5090565b5b8082111562000306576000816000905550600101620002ec565b5090565b600060028204905060018216806200032357607f821691505b602082108114156200033a576200033962000340565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6150bc806200037f6000396000f3fe6080604052600436106102725760003560e01c8063729ad39e1161014f578063a83884ff116100c1578063d5abeb011161007a578063d5abeb01146108c9578063d96a094a146108f4578063db7011cf14610910578063df55f35a1461092c578063e985e9c514610955578063f2fde38b1461099257610272565b8063a83884ff146107e1578063b88d4fde1461080c578063bbe8fdcd14610835578063bc3371821461084c578063c87b56dd14610875578063d3dd5fe0146108b257610272565b80638da5cb5b116101135780638da5cb5b146106e55780638e39f5151461071057806391b7f5ed1461073957806395d89b4114610762578063a035b1fe1461078d578063a22cb465146107b857610272565b8063729ad39e1461062357806372d5e1341461064c5780637437681e146106755780637cb64759146106a057806381814492146106c957610272565b80632eb4a7ab116101e857806342842e0e116101ac57806342842e0e1461052957806348c54b9d146105525780636352211e146105695780636f8b44b0146105a657806370a08231146105cf578063715018a61461060c57610272565b80632eb4a7ab1461047c57806330176e13146104a757806334393743146104d05780633ccfd60b146104e75780633e9cdf49146104fe57610272565b806309bd4c311161023a57806309bd4c311461036e578063144fa6d71461039757806318160ddd146103c05780631a68fbd3146103eb57806323b872dd1461041657806327b1425a1461043f57610272565b806301ffc9a714610277578063044bd259146102b457806306fdde03146102dd578063081812fc14610308578063095ea7b314610345575b600080fd5b34801561028357600080fd5b5061029e600480360381019061029991906141b8565b6109bb565b6040516102ab9190614689565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d69190613f7b565b610a9d565b005b3480156102e957600080fd5b506102f2610b00565b6040516102ff91906146da565b60405180910390f35b34801561031457600080fd5b5061032f600480360381019061032a919061425f565b610b92565b60405161033c91906145d0565b60405180910390f35b34801561035157600080fd5b5061036c600480360381019061036791906140fe565b610c0e565b005b34801561037a57600080fd5b50610395600480360381019061039091906140fe565b610d13565b005b3480156103a357600080fd5b506103be60048036038101906103b99190613f7b565b610d29565b005b3480156103cc57600080fd5b506103d5610d75565b6040516103e2919061487c565b60405180910390f35b3480156103f757600080fd5b50610400610d8c565b60405161040d919061487c565b60405180910390f35b34801561042257600080fd5b5061043d60048036038101906104389190613fe8565b610d92565b005b34801561044b57600080fd5b5061046660048036038101906104619190613f7b565b610da2565b604051610473919061487c565b60405180910390f35b34801561048857600080fd5b50610491610dba565b60405161049e91906146a4565b60405180910390f35b3480156104b357600080fd5b506104ce60048036038101906104c99190614212565b610dc0565b005b3480156104dc57600080fd5b506104e5610dde565b005b3480156104f357600080fd5b506104fc610e12565b005b34801561050a57600080fd5b50610513610e6a565b60405161052091906146bf565b60405180910390f35b34801561053557600080fd5b50610550600480360381019061054b9190613fe8565b610e90565b005b34801561055e57600080fd5b50610567610eb0565b005b34801561057557600080fd5b50610590600480360381019061058b919061425f565b610fcf565b60405161059d91906145d0565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c8919061425f565b610fe5565b005b3480156105db57600080fd5b506105f660048036038101906105f19190613f7b565b610ff7565b604051610603919061487c565b60405180910390f35b34801561061857600080fd5b506106216110c7565b005b34801561062f57600080fd5b5061064a6004803603810190610645919061413e565b6110db565b005b34801561065857600080fd5b50610673600480360381019061066e9190613f7b565b61113b565b005b34801561068157600080fd5b5061068a61119e565b604051610697919061487c565b60405180910390f35b3480156106ac57600080fd5b506106c760048036038101906106c2919061418b565b6111a4565b005b6106e360048036038101906106de919061428c565b6111b6565b005b3480156106f157600080fd5b506106fa611377565b60405161070791906145d0565b60405180910390f35b34801561071c57600080fd5b506107376004803603810190610732919061425f565b6113a1565b005b34801561074557600080fd5b50610760600480360381019061075b919061425f565b611433565b005b34801561076e57600080fd5b50610777611445565b60405161078491906146da565b60405180910390f35b34801561079957600080fd5b506107a26114d7565b6040516107af919061487c565b60405180910390f35b3480156107c457600080fd5b506107df60048036038101906107da91906140be565b6114dd565b005b3480156107ed57600080fd5b506107f6611655565b604051610803919061487c565b60405180910390f35b34801561081857600080fd5b50610833600480360381019061082e919061403b565b61165b565b005b34801561084157600080fd5b5061084a6116d3565b005b34801561085857600080fd5b50610873600480360381019061086e919061425f565b611707565b005b34801561088157600080fd5b5061089c6004803603810190610897919061425f565b611719565b6040516108a991906146da565b60405180910390f35b3480156108be57600080fd5b506108c76117b8565b005b3480156108d557600080fd5b506108de6117ec565b6040516108eb919061487c565b60405180910390f35b61090e6004803603810190610909919061425f565b6117f2565b005b61092a6004803603810190610925919061425f565b61196a565b005b34801561093857600080fd5b50610953600480360381019061094e919061425f565b611ae2565b005b34801561096157600080fd5b5061097c60048036038101906109779190613fa8565b611bc9565b6040516109899190614689565b60405180910390f35b34801561099e57600080fd5b506109b960048036038101906109b49190613f7b565b611c5d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a8657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a965750610a9582611ce1565b5b9050919050565b610aa5611d4b565b6001601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b606060028054610b0f90614b67565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3b90614b67565b8015610b885780601f10610b5d57610100808354040283529160200191610b88565b820191906000526020600020905b815481529060010190602001808311610b6b57829003601f168201915b5050505050905090565b6000610b9d82611dc9565b610bd3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c1982610fcf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c81576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ca0611e17565b73ffffffffffffffffffffffffffffffffffffffff1614610d0357610ccc81610cc7611e17565b611bc9565b610d02576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610d0e838383611e1f565b505050565b610d1b611d4b565b610d258282611ed1565b5050565b610d31611d4b565b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610d7f611f36565b6001546000540303905090565b600b5481565b610d9d838383611f3b565b505050565b600e6020528060005260406000206000915090505481565b600f5481565b610dc8611d4b565b818160129190610dd9929190613c5d565b505050565b610de6611d4b565b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b610e1a611d4b565b610e22611e17565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610e67573d6000803e3d6000fd5b50565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610eab8383836040518060200160405280600081525061165b565b505050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d230af3a3360006040518363ffffffff1660e01b8152600401610f0e9291906145eb565b600060405180830381600087803b158015610f2857600080fd5b505af1158015610f3c573d6000803e3d6000fd5b50505050601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c00007b0336040518263ffffffff1660e01b8152600401610f9b91906145d0565b600060405180830381600087803b158015610fb557600080fd5b505af1158015610fc9573d6000803e3d6000fd5b50505050565b6000610fda826123f1565b600001519050919050565b610fed611d4b565b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561105f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6110cf611d4b565b6110d9600061267c565b565b6110e3611d4b565b60005b828290508110156111365761112383838381811061110757611106614cf5565b5b905060200201602081019061111c9190613f7b565b6001612742565b808061112e90614bca565b9150506110e6565b505050565b611143611d4b565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600c5481565b6111ac611d4b565b80600f8190555050565b601060019054906101000a900460ff16611205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fc9061477c565b60405180910390fd5b600c5482600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611253919061495c565b1115611294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128b9061485c565b60405180910390fd5b81600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112df919061495c565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061132b81612760565b61136a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611361906147fc565b60405180910390fd5b611373826127a1565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663af7d6ca333836040518363ffffffff1660e01b81526004016113fe929190614660565b600060405180830381600087803b15801561141857600080fd5b505af115801561142c573d6000803e3d6000fd5b5050505050565b61143b611d4b565b8060098190555050565b60606003805461145490614b67565b80601f016020809104026020016040519081016040528092919081815260200182805461148090614b67565b80156114cd5780601f106114a2576101008083540402835291602001916114cd565b820191906000526020600020905b8154815290600101906020018083116114b057829003601f168201915b5050505050905090565b60095481565b6114e5611e17565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561154a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611557611e17565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611604611e17565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116499190614689565b60405180910390a35050565b600d5481565b611666848484611f3b565b6116858373ffffffffffffffffffffffffffffffffffffffff16612943565b156116cd5761169684848484612966565b6116cc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6116db611d4b565b601060029054906101000a900460ff1615601060026101000a81548160ff021916908315150217905550565b61170f611d4b565b80600c8190555050565b606061172482611dc9565b61175a576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611764612ac6565b905060008151141561178557604051806020016040528060008152506117b0565b8061178f84612b58565b6040516020016117a09291906145ac565b6040516020818303038152906040525b915050919050565b6117c0611d4b565b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b600a5481565b601060009054906101000a900460ff16611841576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118389061477c565b60405180910390fd5b600c5481600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461188f919061495c565b11156118d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c79061485c565b60405180910390fd5b80600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461191b919061495c565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061196781612cb9565b50565b601060029054906101000a900460ff166119b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b09061477c565b60405180910390fd5b600c5481600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a07919061495c565b1115611a48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3f9061485c565b60405180910390fd5b80600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a93919061495c565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611adf81612e5b565b50565b60116000611aee611e17565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6c906147bc565b60405180910390fd5b611b7e81611dc9565b611bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb49061475c565b60405180910390fd5b611bc681613030565b50565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c65611d4b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccc906146fc565b60405180910390fd5b611cde8161267c565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611d53611e17565b73ffffffffffffffffffffffffffffffffffffffff16611d71611377565b73ffffffffffffffffffffffffffffffffffffffff1614611dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbe9061481c565b60405180910390fd5b565b600081611dd4611f36565b11158015611de3575060005482105b8015611e10575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600a54611edc610d75565b82611ee7919061495c565b1115611f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1f9061483c565b60405180910390fd5b611f32828261303e565b5050565b600090565b6000611f46826123f1565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611fb1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611fd2611e17565b73ffffffffffffffffffffffffffffffffffffffff161480612001575061200085611ffb611e17565b611bc9565b5b80612046575061200f611e17565b73ffffffffffffffffffffffffffffffffffffffff1661202e84610b92565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061207f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156120e6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120f3858585600161331a565b6120ff60008487611e1f565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561237f57600054821461237e57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123ea85858560016133f0565b5050505050565b6123f9613ce3565b600082905080612407611f36565b1161264557600054811015612644576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161264257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612526578092505050612677565b5b60011561264157818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461263c578092505050612677565b612527565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61275c8282604051806020016040528060008152506133f6565b5050565b600080336040516020016127749190614591565b60405160208183030381529060405280519060200120905061279983600f54836137b8565b915050919050565b600c5481111580156127b35750600081115b6127f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e99061471c565b60405180910390fd5b600a54816127fe610d75565b612808919061495c565b1115612849576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128409061479c565b60405180910390fd5b8060095461285791906149e3565b341015612899576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128909061473c565b60405180910390fd5b6128aa6128a4611e17565b82611ed1565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cc240c016128f0611e17565b836040518363ffffffff1660e01b815260040161290e929190614660565b600060405180830381600087803b15801561292857600080fd5b505af115801561293c573d6000803e3d6000fd5b5050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261298c611e17565b8786866040518563ffffffff1660e01b81526004016129ae9493929190614614565b602060405180830381600087803b1580156129c857600080fd5b505af19250505080156129f957506040513d601f19601f820116820180604052508101906129f691906141e5565b60015b612a73573d8060008114612a29576040519150601f19603f3d011682016040523d82523d6000602084013e612a2e565b606091505b50600081511415612a6b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060128054612ad590614b67565b80601f0160208091040260200160405190810160405280929190818152602001828054612b0190614b67565b8015612b4e5780601f10612b2357610100808354040283529160200191612b4e565b820191906000526020600020905b815481529060010190602001808311612b3157829003601f168201915b5050505050905090565b60606000821415612ba0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612cb4565b600082905060005b60008214612bd2578080612bbb90614bca565b915050600a82612bcb91906149b2565b9150612ba8565b60008167ffffffffffffffff811115612bee57612bed614d24565b5b6040519080825280601f01601f191660200182016040528015612c205781602001600182028036833780820191505090505b5090505b60008514612cad57600182612c399190614a3d565b9150600a85612c489190614c37565b6030612c54919061495c565b60f81b818381518110612c6a57612c69614cf5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ca691906149b2565b9450612c24565b8093505050505b919050565b600c548111158015612ccb5750600081115b612d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d019061471c565b60405180910390fd5b600a5481612d16610d75565b612d20919061495c565b1115612d61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d58906147dc565b60405180910390fd5b80600954612d6f91906149e3565b341015612db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da89061473c565b60405180910390fd5b612dc2612dbc611e17565b82611ed1565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cc240c01612e08611e17565b836040518363ffffffff1660e01b8152600401612e26929190614660565b600060405180830381600087803b158015612e4057600080fd5b505af1158015612e54573d6000803e3d6000fd5b5050505050565b600d548111158015612e6d5750600081115b612eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea39061471c565b60405180910390fd5b600b5481612eb8610d75565b612ec2919061495c565b1115612f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612efa9061479c565b60405180910390fd5b600080612f16612f11611e17565b610ff7565b14612f22576000612f25565b60015b60ff1690508082612f369190614a3d565b600954612f4391906149e3565b341015612f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7c9061473c565b60405180910390fd5b612f96612f90611e17565b83611ed1565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cc240c01612fdc611e17565b846040518363ffffffff1660e01b8152600401612ffa929190614660565b600060405180830381600087803b15801561301457600080fd5b505af1158015613028573d6000803e3d6000fd5b505050505050565b61303b8160006137cf565b50565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156130ab576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156130e6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6130f3600084838561331a565b81600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555081600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550826004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106132965781600081905550505061331560008483856133f0565b505050565b61332684848484613bbf565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146133ea57601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d230af3a85856040518363ffffffff1660e01b81526004016133b79291906145eb565b600060405180830381600087803b1580156133d157600080fd5b505af11580156133e5573d6000803e3d6000fd5b505050505b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613463576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141561349e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6134ab600085838661331a565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000848201905061366c8673ffffffffffffffffffffffffffffffffffffffff16612943565b15613731575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136e16000878480600101955087612966565b613717576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061367257826000541461372c57600080fd5b61379c565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613732575b8160008190555050506137b260008583866133f0565b50505050565b6000826137c58584613bc5565b1490509392505050565b60006137da836123f1565b905060008160000151905082156138bb5760008173ffffffffffffffffffffffffffffffffffffffff1661380c611e17565b73ffffffffffffffffffffffffffffffffffffffff16148061383b575061383a82613835611e17565b611bc9565b5b806138805750613849611e17565b73ffffffffffffffffffffffffffffffffffffffff1661386886610b92565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806138b9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b6138c981600086600161331a565b6138d560008583611e1f565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060018160000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060018160000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008781526020019081526020016000209050828160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600181600001601c6101000a81548160ff02191690831515021790555060006001870190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415613b39576000548214613b3857848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5050505083600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613ba78160008660016133f0565b60016000815480929190600101919050555050505050565b50505050565b60008082905060005b8451811015613c1057613bfb82868381518110613bee57613bed614cf5565b5b6020026020010151613c1b565b91508080613c0890614bca565b915050613bce565b508091505092915050565b6000818310613c3357613c2e8284613c46565b613c3e565b613c3d8383613c46565b5b905092915050565b600082600052816020526040600020905092915050565b828054613c6990614b67565b90600052602060002090601f016020900481019282613c8b5760008555613cd2565b82601f10613ca457803560ff1916838001178555613cd2565b82800160010185558215613cd2579182015b82811115613cd1578235825591602001919060010190613cb6565b5b509050613cdf9190613d26565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613d3f576000816000905550600101613d27565b5090565b6000613d56613d51846148bc565b614897565b90508083825260208201905082856020860282011115613d7957613d78614d5d565b5b60005b85811015613da95781613d8f8882613ea3565b845260208401935060208301925050600181019050613d7c565b5050509392505050565b6000613dc6613dc1846148e8565b614897565b905082815260208101848484011115613de257613de1614d62565b5b613ded848285614b25565b509392505050565b600081359050613e0481615013565b92915050565b60008083601f840112613e2057613e1f614d58565b5b8235905067ffffffffffffffff811115613e3d57613e3c614d53565b5b602083019150836020820283011115613e5957613e58614d5d565b5b9250929050565b600082601f830112613e7557613e74614d58565b5b8135613e85848260208601613d43565b91505092915050565b600081359050613e9d8161502a565b92915050565b600081359050613eb281615041565b92915050565b600081359050613ec781615058565b92915050565b600081519050613edc81615058565b92915050565b600082601f830112613ef757613ef6614d58565b5b8135613f07848260208601613db3565b91505092915050565b60008083601f840112613f2657613f25614d58565b5b8235905067ffffffffffffffff811115613f4357613f42614d53565b5b602083019150836001820283011115613f5f57613f5e614d5d565b5b9250929050565b600081359050613f758161506f565b92915050565b600060208284031215613f9157613f90614d6c565b5b6000613f9f84828501613df5565b91505092915050565b60008060408385031215613fbf57613fbe614d6c565b5b6000613fcd85828601613df5565b9250506020613fde85828601613df5565b9150509250929050565b60008060006060848603121561400157614000614d6c565b5b600061400f86828701613df5565b935050602061402086828701613df5565b925050604061403186828701613f66565b9150509250925092565b6000806000806080858703121561405557614054614d6c565b5b600061406387828801613df5565b945050602061407487828801613df5565b935050604061408587828801613f66565b925050606085013567ffffffffffffffff8111156140a6576140a5614d67565b5b6140b287828801613ee2565b91505092959194509250565b600080604083850312156140d5576140d4614d6c565b5b60006140e385828601613df5565b92505060206140f485828601613e8e565b9150509250929050565b6000806040838503121561411557614114614d6c565b5b600061412385828601613df5565b925050602061413485828601613f66565b9150509250929050565b6000806020838503121561415557614154614d6c565b5b600083013567ffffffffffffffff81111561417357614172614d67565b5b61417f85828601613e0a565b92509250509250929050565b6000602082840312156141a1576141a0614d6c565b5b60006141af84828501613ea3565b91505092915050565b6000602082840312156141ce576141cd614d6c565b5b60006141dc84828501613eb8565b91505092915050565b6000602082840312156141fb576141fa614d6c565b5b600061420984828501613ecd565b91505092915050565b6000806020838503121561422957614228614d6c565b5b600083013567ffffffffffffffff81111561424757614246614d67565b5b61425385828601613f10565b92509250509250929050565b60006020828403121561427557614274614d6c565b5b600061428384828501613f66565b91505092915050565b600080604083850312156142a3576142a2614d6c565b5b60006142b185828601613f66565b925050602083013567ffffffffffffffff8111156142d2576142d1614d67565b5b6142de85828601613e60565b9150509250929050565b6142f181614a71565b82525050565b61430861430382614a71565b614c13565b82525050565b61431781614a83565b82525050565b61432681614a8f565b82525050565b600061433782614919565b614341818561492f565b9350614351818560208601614b34565b61435a81614d71565b840191505092915050565b61436e81614aef565b82525050565b600061437f82614924565b6143898185614940565b9350614399818560208601614b34565b6143a281614d71565b840191505092915050565b60006143b882614924565b6143c28185614951565b93506143d2818560208601614b34565b80840191505092915050565b60006143eb602683614940565b91506143f682614d8f565b604082019050919050565b600061440e602483614940565b915061441982614dde565b604082019050919050565b6000614431601683614940565b915061443c82614e2d565b602082019050919050565b6000614454601483614940565b915061445f82614e56565b602082019050919050565b6000614477600c83614940565b915061448282614e7f565b602082019050919050565b600061449a601d83614940565b91506144a582614ea8565b602082019050919050565b60006144bd601a83614940565b91506144c882614ed1565b602082019050919050565b60006144e0601283614940565b91506144eb82614efa565b602082019050919050565b6000614503601883614940565b915061450e82614f23565b602082019050919050565b6000614526602083614940565b915061453182614f4c565b602082019050919050565b6000614549602183614940565b915061455482614f75565b604082019050919050565b600061456c602283614940565b915061457782614fc4565b604082019050919050565b61458b81614ae5565b82525050565b600061459d82846142f7565b60148201915081905092915050565b60006145b882856143ad565b91506145c482846143ad565b91508190509392505050565b60006020820190506145e560008301846142e8565b92915050565b600060408201905061460060008301856142e8565b61460d60208301846142e8565b9392505050565b600060808201905061462960008301876142e8565b61463660208301866142e8565b6146436040830185614582565b8181036060830152614655818461432c565b905095945050505050565b600060408201905061467560008301856142e8565b6146826020830184614582565b9392505050565b600060208201905061469e600083018461430e565b92915050565b60006020820190506146b9600083018461431d565b92915050565b60006020820190506146d46000830184614365565b92915050565b600060208201905081810360008301526146f48184614374565b905092915050565b60006020820190508181036000830152614715816143de565b9050919050565b6000602082019050818103600083015261473581614401565b9050919050565b6000602082019050818103600083015261475581614424565b9050919050565b6000602082019050818103600083015261477581614447565b9050919050565b600060208201905081810360008301526147958161446a565b9050919050565b600060208201905081810360008301526147b58161448d565b9050919050565b600060208201905081810360008301526147d5816144b0565b9050919050565b600060208201905081810360008301526147f5816144d3565b9050919050565b60006020820190508181036000830152614815816144f6565b9050919050565b6000602082019050818103600083015261483581614519565b9050919050565b600060208201905081810360008301526148558161453c565b9050919050565b600060208201905081810360008301526148758161455f565b9050919050565b60006020820190506148916000830184614582565b92915050565b60006148a16148b2565b90506148ad8282614b99565b919050565b6000604051905090565b600067ffffffffffffffff8211156148d7576148d6614d24565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561490357614902614d24565b5b61490c82614d71565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061496782614ae5565b915061497283614ae5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156149a7576149a6614c68565b5b828201905092915050565b60006149bd82614ae5565b91506149c883614ae5565b9250826149d8576149d7614c97565b5b828204905092915050565b60006149ee82614ae5565b91506149f983614ae5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a3257614a31614c68565b5b828202905092915050565b6000614a4882614ae5565b9150614a5383614ae5565b925082821015614a6657614a65614c68565b5b828203905092915050565b6000614a7c82614ac5565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000614afa82614b01565b9050919050565b6000614b0c82614b13565b9050919050565b6000614b1e82614ac5565b9050919050565b82818337600083830152505050565b60005b83811015614b52578082015181840152602081019050614b37565b83811115614b61576000848401525b50505050565b60006002820490506001821680614b7f57607f821691505b60208210811415614b9357614b92614cc6565b5b50919050565b614ba282614d71565b810181811067ffffffffffffffff82111715614bc157614bc0614d24565b5b80604052505050565b6000614bd582614ae5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614c0857614c07614c68565b5b600182019050919050565b6000614c1e82614c25565b9050919050565b6000614c3082614d82565b9050919050565b6000614c4282614ae5565b9150614c4d83614ae5565b925082614c5d57614c5c614c97565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5452414e53414354494f4e3a20717479206f66206d696e7473206e6f7420616c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b7f5041594d454e543a20696e76616c69642076616c756500000000000000000000600082015250565b7f546f6b656e20646f6573206e6f74206578697374000000000000000000000000600082015250565b7f73746f726520636c6f7365640000000000000000000000000000000000000000600082015250565b7f72656163686564206d617820737570706c79206f662070726553616c65000000600082015250565b7f4e6f74206120637468756c6875206f6620736163726966696365000000000000600082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f61646472657373206e6f7420696e2077686974656c6973740000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f535550504c593a2056616c7565206578636565647320746f74616c537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d617820617661696c61626c6520746f2070757263686160008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b61501c81614a71565b811461502757600080fd5b50565b61503381614a83565b811461503e57600080fd5b50565b61504a81614a8f565b811461505557600080fd5b50565b61506181614a99565b811461506c57600080fd5b50565b61507881614ae5565b811461508357600080fd5b5056fea2646970667358221220818416a769c9cbde63b4d912ad7b82f7509fbaf22c859f76b3b6cab688a2669764736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102725760003560e01c8063729ad39e1161014f578063a83884ff116100c1578063d5abeb011161007a578063d5abeb01146108c9578063d96a094a146108f4578063db7011cf14610910578063df55f35a1461092c578063e985e9c514610955578063f2fde38b1461099257610272565b8063a83884ff146107e1578063b88d4fde1461080c578063bbe8fdcd14610835578063bc3371821461084c578063c87b56dd14610875578063d3dd5fe0146108b257610272565b80638da5cb5b116101135780638da5cb5b146106e55780638e39f5151461071057806391b7f5ed1461073957806395d89b4114610762578063a035b1fe1461078d578063a22cb465146107b857610272565b8063729ad39e1461062357806372d5e1341461064c5780637437681e146106755780637cb64759146106a057806381814492146106c957610272565b80632eb4a7ab116101e857806342842e0e116101ac57806342842e0e1461052957806348c54b9d146105525780636352211e146105695780636f8b44b0146105a657806370a08231146105cf578063715018a61461060c57610272565b80632eb4a7ab1461047c57806330176e13146104a757806334393743146104d05780633ccfd60b146104e75780633e9cdf49146104fe57610272565b806309bd4c311161023a57806309bd4c311461036e578063144fa6d71461039757806318160ddd146103c05780631a68fbd3146103eb57806323b872dd1461041657806327b1425a1461043f57610272565b806301ffc9a714610277578063044bd259146102b457806306fdde03146102dd578063081812fc14610308578063095ea7b314610345575b600080fd5b34801561028357600080fd5b5061029e600480360381019061029991906141b8565b6109bb565b6040516102ab9190614689565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d69190613f7b565b610a9d565b005b3480156102e957600080fd5b506102f2610b00565b6040516102ff91906146da565b60405180910390f35b34801561031457600080fd5b5061032f600480360381019061032a919061425f565b610b92565b60405161033c91906145d0565b60405180910390f35b34801561035157600080fd5b5061036c600480360381019061036791906140fe565b610c0e565b005b34801561037a57600080fd5b50610395600480360381019061039091906140fe565b610d13565b005b3480156103a357600080fd5b506103be60048036038101906103b99190613f7b565b610d29565b005b3480156103cc57600080fd5b506103d5610d75565b6040516103e2919061487c565b60405180910390f35b3480156103f757600080fd5b50610400610d8c565b60405161040d919061487c565b60405180910390f35b34801561042257600080fd5b5061043d60048036038101906104389190613fe8565b610d92565b005b34801561044b57600080fd5b5061046660048036038101906104619190613f7b565b610da2565b604051610473919061487c565b60405180910390f35b34801561048857600080fd5b50610491610dba565b60405161049e91906146a4565b60405180910390f35b3480156104b357600080fd5b506104ce60048036038101906104c99190614212565b610dc0565b005b3480156104dc57600080fd5b506104e5610dde565b005b3480156104f357600080fd5b506104fc610e12565b005b34801561050a57600080fd5b50610513610e6a565b60405161052091906146bf565b60405180910390f35b34801561053557600080fd5b50610550600480360381019061054b9190613fe8565b610e90565b005b34801561055e57600080fd5b50610567610eb0565b005b34801561057557600080fd5b50610590600480360381019061058b919061425f565b610fcf565b60405161059d91906145d0565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c8919061425f565b610fe5565b005b3480156105db57600080fd5b506105f660048036038101906105f19190613f7b565b610ff7565b604051610603919061487c565b60405180910390f35b34801561061857600080fd5b506106216110c7565b005b34801561062f57600080fd5b5061064a6004803603810190610645919061413e565b6110db565b005b34801561065857600080fd5b50610673600480360381019061066e9190613f7b565b61113b565b005b34801561068157600080fd5b5061068a61119e565b604051610697919061487c565b60405180910390f35b3480156106ac57600080fd5b506106c760048036038101906106c2919061418b565b6111a4565b005b6106e360048036038101906106de919061428c565b6111b6565b005b3480156106f157600080fd5b506106fa611377565b60405161070791906145d0565b60405180910390f35b34801561071c57600080fd5b506107376004803603810190610732919061425f565b6113a1565b005b34801561074557600080fd5b50610760600480360381019061075b919061425f565b611433565b005b34801561076e57600080fd5b50610777611445565b60405161078491906146da565b60405180910390f35b34801561079957600080fd5b506107a26114d7565b6040516107af919061487c565b60405180910390f35b3480156107c457600080fd5b506107df60048036038101906107da91906140be565b6114dd565b005b3480156107ed57600080fd5b506107f6611655565b604051610803919061487c565b60405180910390f35b34801561081857600080fd5b50610833600480360381019061082e919061403b565b61165b565b005b34801561084157600080fd5b5061084a6116d3565b005b34801561085857600080fd5b50610873600480360381019061086e919061425f565b611707565b005b34801561088157600080fd5b5061089c6004803603810190610897919061425f565b611719565b6040516108a991906146da565b60405180910390f35b3480156108be57600080fd5b506108c76117b8565b005b3480156108d557600080fd5b506108de6117ec565b6040516108eb919061487c565b60405180910390f35b61090e6004803603810190610909919061425f565b6117f2565b005b61092a6004803603810190610925919061425f565b61196a565b005b34801561093857600080fd5b50610953600480360381019061094e919061425f565b611ae2565b005b34801561096157600080fd5b5061097c60048036038101906109779190613fa8565b611bc9565b6040516109899190614689565b60405180910390f35b34801561099e57600080fd5b506109b960048036038101906109b49190613f7b565b611c5d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a8657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a965750610a9582611ce1565b5b9050919050565b610aa5611d4b565b6001601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b606060028054610b0f90614b67565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3b90614b67565b8015610b885780601f10610b5d57610100808354040283529160200191610b88565b820191906000526020600020905b815481529060010190602001808311610b6b57829003601f168201915b5050505050905090565b6000610b9d82611dc9565b610bd3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c1982610fcf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c81576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ca0611e17565b73ffffffffffffffffffffffffffffffffffffffff1614610d0357610ccc81610cc7611e17565b611bc9565b610d02576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610d0e838383611e1f565b505050565b610d1b611d4b565b610d258282611ed1565b5050565b610d31611d4b565b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610d7f611f36565b6001546000540303905090565b600b5481565b610d9d838383611f3b565b505050565b600e6020528060005260406000206000915090505481565b600f5481565b610dc8611d4b565b818160129190610dd9929190613c5d565b505050565b610de6611d4b565b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b610e1a611d4b565b610e22611e17565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610e67573d6000803e3d6000fd5b50565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610eab8383836040518060200160405280600081525061165b565b505050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d230af3a3360006040518363ffffffff1660e01b8152600401610f0e9291906145eb565b600060405180830381600087803b158015610f2857600080fd5b505af1158015610f3c573d6000803e3d6000fd5b50505050601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c00007b0336040518263ffffffff1660e01b8152600401610f9b91906145d0565b600060405180830381600087803b158015610fb557600080fd5b505af1158015610fc9573d6000803e3d6000fd5b50505050565b6000610fda826123f1565b600001519050919050565b610fed611d4b565b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561105f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6110cf611d4b565b6110d9600061267c565b565b6110e3611d4b565b60005b828290508110156111365761112383838381811061110757611106614cf5565b5b905060200201602081019061111c9190613f7b565b6001612742565b808061112e90614bca565b9150506110e6565b505050565b611143611d4b565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600c5481565b6111ac611d4b565b80600f8190555050565b601060019054906101000a900460ff16611205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fc9061477c565b60405180910390fd5b600c5482600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611253919061495c565b1115611294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128b9061485c565b60405180910390fd5b81600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112df919061495c565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061132b81612760565b61136a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611361906147fc565b60405180910390fd5b611373826127a1565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663af7d6ca333836040518363ffffffff1660e01b81526004016113fe929190614660565b600060405180830381600087803b15801561141857600080fd5b505af115801561142c573d6000803e3d6000fd5b5050505050565b61143b611d4b565b8060098190555050565b60606003805461145490614b67565b80601f016020809104026020016040519081016040528092919081815260200182805461148090614b67565b80156114cd5780601f106114a2576101008083540402835291602001916114cd565b820191906000526020600020905b8154815290600101906020018083116114b057829003601f168201915b5050505050905090565b60095481565b6114e5611e17565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561154a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611557611e17565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611604611e17565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116499190614689565b60405180910390a35050565b600d5481565b611666848484611f3b565b6116858373ffffffffffffffffffffffffffffffffffffffff16612943565b156116cd5761169684848484612966565b6116cc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6116db611d4b565b601060029054906101000a900460ff1615601060026101000a81548160ff021916908315150217905550565b61170f611d4b565b80600c8190555050565b606061172482611dc9565b61175a576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611764612ac6565b905060008151141561178557604051806020016040528060008152506117b0565b8061178f84612b58565b6040516020016117a09291906145ac565b6040516020818303038152906040525b915050919050565b6117c0611d4b565b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b600a5481565b601060009054906101000a900460ff16611841576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118389061477c565b60405180910390fd5b600c5481600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461188f919061495c565b11156118d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c79061485c565b60405180910390fd5b80600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461191b919061495c565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061196781612cb9565b50565b601060029054906101000a900460ff166119b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b09061477c565b60405180910390fd5b600c5481600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a07919061495c565b1115611a48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3f9061485c565b60405180910390fd5b80600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a93919061495c565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611adf81612e5b565b50565b60116000611aee611e17565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6c906147bc565b60405180910390fd5b611b7e81611dc9565b611bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb49061475c565b60405180910390fd5b611bc681613030565b50565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c65611d4b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccc906146fc565b60405180910390fd5b611cde8161267c565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611d53611e17565b73ffffffffffffffffffffffffffffffffffffffff16611d71611377565b73ffffffffffffffffffffffffffffffffffffffff1614611dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbe9061481c565b60405180910390fd5b565b600081611dd4611f36565b11158015611de3575060005482105b8015611e10575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600a54611edc610d75565b82611ee7919061495c565b1115611f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1f9061483c565b60405180910390fd5b611f32828261303e565b5050565b600090565b6000611f46826123f1565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611fb1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611fd2611e17565b73ffffffffffffffffffffffffffffffffffffffff161480612001575061200085611ffb611e17565b611bc9565b5b80612046575061200f611e17565b73ffffffffffffffffffffffffffffffffffffffff1661202e84610b92565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061207f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156120e6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120f3858585600161331a565b6120ff60008487611e1f565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561237f57600054821461237e57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123ea85858560016133f0565b5050505050565b6123f9613ce3565b600082905080612407611f36565b1161264557600054811015612644576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161264257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612526578092505050612677565b5b60011561264157818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461263c578092505050612677565b612527565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61275c8282604051806020016040528060008152506133f6565b5050565b600080336040516020016127749190614591565b60405160208183030381529060405280519060200120905061279983600f54836137b8565b915050919050565b600c5481111580156127b35750600081115b6127f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e99061471c565b60405180910390fd5b600a54816127fe610d75565b612808919061495c565b1115612849576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128409061479c565b60405180910390fd5b8060095461285791906149e3565b341015612899576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128909061473c565b60405180910390fd5b6128aa6128a4611e17565b82611ed1565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cc240c016128f0611e17565b836040518363ffffffff1660e01b815260040161290e929190614660565b600060405180830381600087803b15801561292857600080fd5b505af115801561293c573d6000803e3d6000fd5b5050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261298c611e17565b8786866040518563ffffffff1660e01b81526004016129ae9493929190614614565b602060405180830381600087803b1580156129c857600080fd5b505af19250505080156129f957506040513d601f19601f820116820180604052508101906129f691906141e5565b60015b612a73573d8060008114612a29576040519150601f19603f3d011682016040523d82523d6000602084013e612a2e565b606091505b50600081511415612a6b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060128054612ad590614b67565b80601f0160208091040260200160405190810160405280929190818152602001828054612b0190614b67565b8015612b4e5780601f10612b2357610100808354040283529160200191612b4e565b820191906000526020600020905b815481529060010190602001808311612b3157829003601f168201915b5050505050905090565b60606000821415612ba0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612cb4565b600082905060005b60008214612bd2578080612bbb90614bca565b915050600a82612bcb91906149b2565b9150612ba8565b60008167ffffffffffffffff811115612bee57612bed614d24565b5b6040519080825280601f01601f191660200182016040528015612c205781602001600182028036833780820191505090505b5090505b60008514612cad57600182612c399190614a3d565b9150600a85612c489190614c37565b6030612c54919061495c565b60f81b818381518110612c6a57612c69614cf5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ca691906149b2565b9450612c24565b8093505050505b919050565b600c548111158015612ccb5750600081115b612d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d019061471c565b60405180910390fd5b600a5481612d16610d75565b612d20919061495c565b1115612d61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d58906147dc565b60405180910390fd5b80600954612d6f91906149e3565b341015612db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da89061473c565b60405180910390fd5b612dc2612dbc611e17565b82611ed1565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cc240c01612e08611e17565b836040518363ffffffff1660e01b8152600401612e26929190614660565b600060405180830381600087803b158015612e4057600080fd5b505af1158015612e54573d6000803e3d6000fd5b5050505050565b600d548111158015612e6d5750600081115b612eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea39061471c565b60405180910390fd5b600b5481612eb8610d75565b612ec2919061495c565b1115612f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612efa9061479c565b60405180910390fd5b600080612f16612f11611e17565b610ff7565b14612f22576000612f25565b60015b60ff1690508082612f369190614a3d565b600954612f4391906149e3565b341015612f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7c9061473c565b60405180910390fd5b612f96612f90611e17565b83611ed1565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cc240c01612fdc611e17565b846040518363ffffffff1660e01b8152600401612ffa929190614660565b600060405180830381600087803b15801561301457600080fd5b505af1158015613028573d6000803e3d6000fd5b505050505050565b61303b8160006137cf565b50565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156130ab576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156130e6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6130f3600084838561331a565b81600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555081600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550826004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106132965781600081905550505061331560008483856133f0565b505050565b61332684848484613bbf565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146133ea57601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d230af3a85856040518363ffffffff1660e01b81526004016133b79291906145eb565b600060405180830381600087803b1580156133d157600080fd5b505af11580156133e5573d6000803e3d6000fd5b505050505b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613463576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141561349e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6134ab600085838661331a565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000848201905061366c8673ffffffffffffffffffffffffffffffffffffffff16612943565b15613731575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136e16000878480600101955087612966565b613717576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061367257826000541461372c57600080fd5b61379c565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613732575b8160008190555050506137b260008583866133f0565b50505050565b6000826137c58584613bc5565b1490509392505050565b60006137da836123f1565b905060008160000151905082156138bb5760008173ffffffffffffffffffffffffffffffffffffffff1661380c611e17565b73ffffffffffffffffffffffffffffffffffffffff16148061383b575061383a82613835611e17565b611bc9565b5b806138805750613849611e17565b73ffffffffffffffffffffffffffffffffffffffff1661386886610b92565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806138b9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b6138c981600086600161331a565b6138d560008583611e1f565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060018160000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060018160000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008781526020019081526020016000209050828160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600181600001601c6101000a81548160ff02191690831515021790555060006001870190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415613b39576000548214613b3857848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5050505083600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613ba78160008660016133f0565b60016000815480929190600101919050555050505050565b50505050565b60008082905060005b8451811015613c1057613bfb82868381518110613bee57613bed614cf5565b5b6020026020010151613c1b565b91508080613c0890614bca565b915050613bce565b508091505092915050565b6000818310613c3357613c2e8284613c46565b613c3e565b613c3d8383613c46565b5b905092915050565b600082600052816020526040600020905092915050565b828054613c6990614b67565b90600052602060002090601f016020900481019282613c8b5760008555613cd2565b82601f10613ca457803560ff1916838001178555613cd2565b82800160010185558215613cd2579182015b82811115613cd1578235825591602001919060010190613cb6565b5b509050613cdf9190613d26565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613d3f576000816000905550600101613d27565b5090565b6000613d56613d51846148bc565b614897565b90508083825260208201905082856020860282011115613d7957613d78614d5d565b5b60005b85811015613da95781613d8f8882613ea3565b845260208401935060208301925050600181019050613d7c565b5050509392505050565b6000613dc6613dc1846148e8565b614897565b905082815260208101848484011115613de257613de1614d62565b5b613ded848285614b25565b509392505050565b600081359050613e0481615013565b92915050565b60008083601f840112613e2057613e1f614d58565b5b8235905067ffffffffffffffff811115613e3d57613e3c614d53565b5b602083019150836020820283011115613e5957613e58614d5d565b5b9250929050565b600082601f830112613e7557613e74614d58565b5b8135613e85848260208601613d43565b91505092915050565b600081359050613e9d8161502a565b92915050565b600081359050613eb281615041565b92915050565b600081359050613ec781615058565b92915050565b600081519050613edc81615058565b92915050565b600082601f830112613ef757613ef6614d58565b5b8135613f07848260208601613db3565b91505092915050565b60008083601f840112613f2657613f25614d58565b5b8235905067ffffffffffffffff811115613f4357613f42614d53565b5b602083019150836001820283011115613f5f57613f5e614d5d565b5b9250929050565b600081359050613f758161506f565b92915050565b600060208284031215613f9157613f90614d6c565b5b6000613f9f84828501613df5565b91505092915050565b60008060408385031215613fbf57613fbe614d6c565b5b6000613fcd85828601613df5565b9250506020613fde85828601613df5565b9150509250929050565b60008060006060848603121561400157614000614d6c565b5b600061400f86828701613df5565b935050602061402086828701613df5565b925050604061403186828701613f66565b9150509250925092565b6000806000806080858703121561405557614054614d6c565b5b600061406387828801613df5565b945050602061407487828801613df5565b935050604061408587828801613f66565b925050606085013567ffffffffffffffff8111156140a6576140a5614d67565b5b6140b287828801613ee2565b91505092959194509250565b600080604083850312156140d5576140d4614d6c565b5b60006140e385828601613df5565b92505060206140f485828601613e8e565b9150509250929050565b6000806040838503121561411557614114614d6c565b5b600061412385828601613df5565b925050602061413485828601613f66565b9150509250929050565b6000806020838503121561415557614154614d6c565b5b600083013567ffffffffffffffff81111561417357614172614d67565b5b61417f85828601613e0a565b92509250509250929050565b6000602082840312156141a1576141a0614d6c565b5b60006141af84828501613ea3565b91505092915050565b6000602082840312156141ce576141cd614d6c565b5b60006141dc84828501613eb8565b91505092915050565b6000602082840312156141fb576141fa614d6c565b5b600061420984828501613ecd565b91505092915050565b6000806020838503121561422957614228614d6c565b5b600083013567ffffffffffffffff81111561424757614246614d67565b5b61425385828601613f10565b92509250509250929050565b60006020828403121561427557614274614d6c565b5b600061428384828501613f66565b91505092915050565b600080604083850312156142a3576142a2614d6c565b5b60006142b185828601613f66565b925050602083013567ffffffffffffffff8111156142d2576142d1614d67565b5b6142de85828601613e60565b9150509250929050565b6142f181614a71565b82525050565b61430861430382614a71565b614c13565b82525050565b61431781614a83565b82525050565b61432681614a8f565b82525050565b600061433782614919565b614341818561492f565b9350614351818560208601614b34565b61435a81614d71565b840191505092915050565b61436e81614aef565b82525050565b600061437f82614924565b6143898185614940565b9350614399818560208601614b34565b6143a281614d71565b840191505092915050565b60006143b882614924565b6143c28185614951565b93506143d2818560208601614b34565b80840191505092915050565b60006143eb602683614940565b91506143f682614d8f565b604082019050919050565b600061440e602483614940565b915061441982614dde565b604082019050919050565b6000614431601683614940565b915061443c82614e2d565b602082019050919050565b6000614454601483614940565b915061445f82614e56565b602082019050919050565b6000614477600c83614940565b915061448282614e7f565b602082019050919050565b600061449a601d83614940565b91506144a582614ea8565b602082019050919050565b60006144bd601a83614940565b91506144c882614ed1565b602082019050919050565b60006144e0601283614940565b91506144eb82614efa565b602082019050919050565b6000614503601883614940565b915061450e82614f23565b602082019050919050565b6000614526602083614940565b915061453182614f4c565b602082019050919050565b6000614549602183614940565b915061455482614f75565b604082019050919050565b600061456c602283614940565b915061457782614fc4565b604082019050919050565b61458b81614ae5565b82525050565b600061459d82846142f7565b60148201915081905092915050565b60006145b882856143ad565b91506145c482846143ad565b91508190509392505050565b60006020820190506145e560008301846142e8565b92915050565b600060408201905061460060008301856142e8565b61460d60208301846142e8565b9392505050565b600060808201905061462960008301876142e8565b61463660208301866142e8565b6146436040830185614582565b8181036060830152614655818461432c565b905095945050505050565b600060408201905061467560008301856142e8565b6146826020830184614582565b9392505050565b600060208201905061469e600083018461430e565b92915050565b60006020820190506146b9600083018461431d565b92915050565b60006020820190506146d46000830184614365565b92915050565b600060208201905081810360008301526146f48184614374565b905092915050565b60006020820190508181036000830152614715816143de565b9050919050565b6000602082019050818103600083015261473581614401565b9050919050565b6000602082019050818103600083015261475581614424565b9050919050565b6000602082019050818103600083015261477581614447565b9050919050565b600060208201905081810360008301526147958161446a565b9050919050565b600060208201905081810360008301526147b58161448d565b9050919050565b600060208201905081810360008301526147d5816144b0565b9050919050565b600060208201905081810360008301526147f5816144d3565b9050919050565b60006020820190508181036000830152614815816144f6565b9050919050565b6000602082019050818103600083015261483581614519565b9050919050565b600060208201905081810360008301526148558161453c565b9050919050565b600060208201905081810360008301526148758161455f565b9050919050565b60006020820190506148916000830184614582565b92915050565b60006148a16148b2565b90506148ad8282614b99565b919050565b6000604051905090565b600067ffffffffffffffff8211156148d7576148d6614d24565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561490357614902614d24565b5b61490c82614d71565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061496782614ae5565b915061497283614ae5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156149a7576149a6614c68565b5b828201905092915050565b60006149bd82614ae5565b91506149c883614ae5565b9250826149d8576149d7614c97565b5b828204905092915050565b60006149ee82614ae5565b91506149f983614ae5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a3257614a31614c68565b5b828202905092915050565b6000614a4882614ae5565b9150614a5383614ae5565b925082821015614a6657614a65614c68565b5b828203905092915050565b6000614a7c82614ac5565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000614afa82614b01565b9050919050565b6000614b0c82614b13565b9050919050565b6000614b1e82614ac5565b9050919050565b82818337600083830152505050565b60005b83811015614b52578082015181840152602081019050614b37565b83811115614b61576000848401525b50505050565b60006002820490506001821680614b7f57607f821691505b60208210811415614b9357614b92614cc6565b5b50919050565b614ba282614d71565b810181811067ffffffffffffffff82111715614bc157614bc0614d24565b5b80604052505050565b6000614bd582614ae5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614c0857614c07614c68565b5b600182019050919050565b6000614c1e82614c25565b9050919050565b6000614c3082614d82565b9050919050565b6000614c4282614ae5565b9150614c4d83614ae5565b925082614c5d57614c5c614c97565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5452414e53414354494f4e3a20717479206f66206d696e7473206e6f7420616c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b7f5041594d454e543a20696e76616c69642076616c756500000000000000000000600082015250565b7f546f6b656e20646f6573206e6f74206578697374000000000000000000000000600082015250565b7f73746f726520636c6f7365640000000000000000000000000000000000000000600082015250565b7f72656163686564206d617820737570706c79206f662070726553616c65000000600082015250565b7f4e6f74206120637468756c6875206f6620736163726966696365000000000000600082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f61646472657373206e6f7420696e2077686974656c6973740000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f535550504c593a2056616c7565206578636565647320746f74616c537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d617820617661696c61626c6520746f2070757263686160008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b61501c81614a71565b811461502757600080fd5b50565b61503381614a83565b811461503e57600080fd5b50565b61504a81614a8f565b811461505557600080fd5b50565b61506181614a99565b811461506c57600080fd5b50565b61507881614ae5565b811461508357600080fd5b5056fea2646970667358221220818416a769c9cbde63b4d912ad7b82f7509fbaf22c859f76b3b6cab688a2669764736f6c63430008070033

Deployed Bytecode Sourcemap

57249:5973:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13937:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62702:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17052:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18556:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18118:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58915:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58592:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13177:312;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57375:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19421:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57474:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57533:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58271:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57975:89;;;;;;;;;;;;;:::i;:::-;;61595:111;;;;;;;;;;;;;:::i;:::-;;57788:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19662:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62108:139;;;;;;;;;;;;;:::i;:::-;;16860:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58487:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14306:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56033:103;;;;;;;;;;;;;:::i;:::-;;61925:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62809:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57412:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58383:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59014:443;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55385:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62255:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58172:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17221:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57301:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18832:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57440:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19918:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58072:88;;;;;;;;;;;;;:::i;:::-;;58711:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17396:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57887:80;;;;;;;;;;;;;:::i;:::-;;57340:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59838:349;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59465:361;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63057:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19190:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56291:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13937:305;14039:4;14091:25;14076:40;;;:11;:40;;;;:105;;;;14148:33;14133:48;;;:11;:48;;;;14076:105;:158;;;;14198:36;14222:11;14198:23;:36::i;:::-;14076:158;14056:178;;13937:305;;;:::o;62702:99::-;55271:13;:11;:13::i;:::-;62789:4:::1;62765:18;:21;62784:1;62765:21;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;62702:99:::0;:::o;17052:100::-;17106:13;17139:5;17132:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17052:100;:::o;18556:204::-;18624:7;18649:16;18657:7;18649;:16::i;:::-;18644:64;;18674:34;;;;;;;;;;;;;;18644:64;18728:15;:24;18744:7;18728:24;;;;;;;;;;;;;;;;;;;;;18721:31;;18556:204;;;:::o;18118:372::-;18191:13;18207:24;18223:7;18207:15;:24::i;:::-;18191:40;;18252:5;18246:11;;:2;:11;;;18242:48;;;18266:24;;;;;;;;;;;;;;18242:48;18323:5;18307:21;;:12;:10;:12::i;:::-;:21;;;18303:139;;18334:37;18351:5;18358:12;:10;:12::i;:::-;18334:16;:37::i;:::-;18330:112;;18395:35;;;;;;;;;;;;;;18330:112;18303:139;18454:28;18463:2;18467:7;18476:5;18454:8;:28::i;:::-;18180:310;18118:372;;:::o;58915:91::-;55271:13;:11;:13::i;:::-;58982:16:::1;58990:2;58994:3;58982:7;:16::i;:::-;58915:91:::0;;:::o;58592:107::-;55271:13;:11;:13::i;:::-;58681:9:::1;58659;;:32;;;;;;;;;;;;;;;;;;58592:107:::0;:::o;13177:312::-;13230:7;13455:15;:13;:15::i;:::-;13440:12;;13424:13;;:28;:46;13417:53;;13177:312;:::o;57375:30::-;;;;:::o;19421:170::-;19555:28;19565:4;19571:2;19575:7;19555:9;:28::i;:::-;19421:170;;;:::o;57474:50::-;;;;;;;;;;;;;;;;;:::o;57533:25::-;;;;:::o;58271:104::-;55271:13;:11;:13::i;:::-;58363:4:::1;;58348:12;:19;;;;;;;:::i;:::-;;58271:104:::0;;:::o;57975:89::-;55271:13;:11;:13::i;:::-;58045:11:::1;;;;;;;;;;;58044:12;58030:11;;:26;;;;;;;;;;;;;;;;;;57975:89::o:0;61595:111::-;55271:13;:11;:13::i;:::-;61653:12:::1;:10;:12::i;:::-;61645:30;;:53;61676:21;61645:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;61595:111::o:0;57788:26::-;;;;;;;;;;;;;:::o;19662:185::-;19800:39;19817:4;19823:2;19827:7;19800:39;;;;;;;;;;;;:16;:39::i;:::-;19662:185;;;:::o;62108:139::-;62151:9;;;;;;;;;;;:22;;;62174:10;62194:1;62151:46;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62208:9;;;;;;;;;;;:19;;;62228:10;62208:31;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62108:139::o;16860:125::-;16924:7;16951:21;16964:7;16951:12;:21::i;:::-;:26;;;16944:33;;16860:125;;;:::o;58487:97::-;55271:13;:11;:13::i;:::-;58567:9:::1;58555;:21;;;;58487:97:::0;:::o;14306:206::-;14370:7;14411:1;14394:19;;:5;:19;;;14390:60;;;14422:28;;;;;;;;;;;;;;14390:60;14476:12;:19;14489:5;14476:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;14468:36;;14461:43;;14306:206;;;:::o;56033:103::-;55271:13;:11;:13::i;:::-;56098:30:::1;56125:1;56098:18;:30::i;:::-;56033:103::o:0;61925:175::-;55271:13;:11;:13::i;:::-;62004:9:::1;61999:94;62023:6;;:13;;62019:1;:17;61999:94;;;62058:23;62068:6;;62075:1;62068:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;62079:1;62058:9;:23::i;:::-;62038:3;;;;;:::i;:::-;;;;61999:94;;;;61925:175:::0;;:::o;62809:103::-;55271:13;:11;:13::i;:::-;62899:5:::1;62875:18;:21;62894:1;62875:21;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;62809:103:::0;:::o;57412:21::-;;;;:::o;58383:92::-;55271:13;:11;:13::i;:::-;58463:4:::1;58450:10;:17;;;;58383:92:::0;:::o;59014:443::-;59100:11;;;;;;;;;;;59092:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;59198:5;;59191:3;59161:15;:27;59177:10;59161:27;;;;;;;;;;;;;;;;:33;;;;:::i;:::-;:42;;59139:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;59362:3;59319:15;:27;59335:10;59319:27;;;;;;;;;;;;;;;;:46;;;;:::i;:::-;59276:15;:27;59292:10;59276:27;;;;;;;;;;;;;;;:89;;;;59384:13;59391:5;59384:6;:13::i;:::-;59376:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;59437:12;59445:3;59437:7;:12::i;:::-;59014:443;;:::o;55385:87::-;55431:7;55458:6;;;;;;;;;;;55451:13;;55385:87;:::o;62255:102::-;62313:9;;;;;;;;;;;:15;;;62329:10;62341:7;62313:36;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62255:102;:::o;58172:87::-;55271:13;:11;:13::i;:::-;58243:8:::1;58235:5;:16;;;;58172:87:::0;:::o;17221:104::-;17277:13;17310:7;17303:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17221:104;:::o;57301:32::-;;;;:::o;18832:287::-;18943:12;:10;:12::i;:::-;18931:24;;:8;:24;;;18927:54;;;18964:17;;;;;;;;;;;;;;18927:54;19039:8;18994:18;:32;19013:12;:10;:12::i;:::-;18994:32;;;;;;;;;;;;;;;:42;19027:8;18994:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;19092:8;19063:48;;19078:12;:10;:12::i;:::-;19063:48;;;19102:8;19063:48;;;;;;:::i;:::-;;;;;;;;18832:287;;:::o;57440:25::-;;;;:::o;19918:370::-;20085:28;20095:4;20101:2;20105:7;20085:9;:28::i;:::-;20128:15;:2;:13;;;:15::i;:::-;20124:157;;;20149:56;20180:4;20186:2;20190:7;20199:5;20149:30;:56::i;:::-;20145:136;;20229:40;;;;;;;;;;;;;;20145:136;20124:157;19918:370;;;;:::o;58072:88::-;55271:13;:11;:13::i;:::-;58140:12:::1;;;;;;;;;;;58139:13;58124:12;;:28;;;;;;;;;;;;;;;;;;58072:88::o:0;58711:83::-;55271:13;:11;:13::i;:::-;58780:6:::1;58772:5;:14;;;;58711:83:::0;:::o;17396:318::-;17469:13;17500:16;17508:7;17500;:16::i;:::-;17495:59;;17525:29;;;;;;;;;;;;;;17495:59;17567:21;17591:10;:8;:10::i;:::-;17567:34;;17644:1;17625:7;17619:21;:26;;:87;;;;;;;;;;;;;;;;;17672:7;17681:18;:7;:16;:18::i;:::-;17655:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;17619:87;17612:94;;;17396:318;;;:::o;57887:80::-;55271:13;:11;:13::i;:::-;57951:8:::1;;;;;;;;;;;57950:9;57939:8;;:20;;;;;;;;;;;;;;;;;;57887:80::o:0;57340:28::-;;;;:::o;59838:349::-;59897:8;;;;;;;;;;;59889:33;;;;;;;;;;;;:::i;:::-;;;;;;;;;59992:5;;59985:3;59955:15;:27;59971:10;59955:27;;;;;;;;;;;;;;;;:33;;;;:::i;:::-;:42;;59933:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;60156:3;60113:15;:27;60129:10;60113:27;;;;;;;;;;;;;;;;:46;;;;:::i;:::-;60070:15;:27;60086:10;60070:27;;;;;;;;;;;;;;;:89;;;;60170:9;60175:3;60170:4;:9::i;:::-;59838:349;:::o;59465:361::-;59528:12;;;;;;;;;;;59520:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;59627:5;;59620:3;59590:15;:27;59606:10;59590:27;;;;;;;;;;;;;;;;:33;;;;:::i;:::-;:42;;59568:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;59791:3;59748:15;:27;59764:10;59748:27;;;;;;;;;;;;;;;;:46;;;;:::i;:::-;59705:15;:27;59721:10;59705:27;;;;;;;;;;;;;;;:89;;;;59805:13;59814:3;59805:8;:13::i;:::-;59465:361;:::o;63057:162::-;62966:18;:32;62985:12;:10;:12::i;:::-;62966:32;;;;;;;;;;;;;;;;;;;;;;;;;62958:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;63145:16:::1;63153:7;63145;:16::i;:::-;63137:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;63197:14;63203:7;63197:5;:14::i;:::-;63057:162:::0;:::o;19190:164::-;19287:4;19311:18;:25;19330:5;19311:25;;;;;;;;;;;;;;;:35;19337:8;19311:35;;;;;;;;;;;;;;;;;;;;;;;;;19304:42;;19190:164;;;;:::o;56291:201::-;55271:13;:11;:13::i;:::-;56400:1:::1;56380:22;;:8;:22;;;;56372:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;56456:28;56475:8;56456:18;:28::i;:::-;56291:201:::0;:::o;10978:157::-;11063:4;11102:25;11087:40;;;:11;:40;;;;11080:47;;10978:157;;;:::o;55550:132::-;55625:12;:10;:12::i;:::-;55614:23;;:7;:5;:7::i;:::-;:23;;;55606:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55550:132::o;20543:174::-;20600:4;20643:7;20624:15;:13;:15::i;:::-;:26;;:53;;;;;20664:13;;20654:7;:23;20624:53;:85;;;;;20682:11;:20;20694:7;20682:20;;;;;;;;;;;:27;;;;;;;;;;;;20681:28;20624:85;20617:92;;20543:174;;;:::o;9966:98::-;10019:7;10046:10;10039:17;;9966:98;:::o;29765:196::-;29907:2;29880:15;:24;29896:7;29880:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;29945:7;29941:2;29925:28;;29934:5;29925:28;;;;;;;;;;;;29765:196;;;:::o;61413:170::-;61503:9;;61486:13;:11;:13::i;:::-;61480:3;:19;;;;:::i;:::-;:32;;61472:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;61561:14;61567:2;61571:3;61561:5;:14::i;:::-;61413:170;;:::o;12951:92::-;13007:7;12951:92;:::o;24713:2130::-;24828:35;24866:21;24879:7;24866:12;:21::i;:::-;24828:59;;24926:4;24904:26;;:13;:18;;;:26;;;24900:67;;24939:28;;;;;;;;;;;;;;24900:67;24980:22;25022:4;25006:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;25043:36;25060:4;25066:12;:10;:12::i;:::-;25043:16;:36::i;:::-;25006:73;:126;;;;25120:12;:10;:12::i;:::-;25096:36;;:20;25108:7;25096:11;:20::i;:::-;:36;;;25006:126;24980:153;;25151:17;25146:66;;25177:35;;;;;;;;;;;;;;25146:66;25241:1;25227:16;;:2;:16;;;25223:52;;;25252:23;;;;;;;;;;;;;;25223:52;25288:43;25310:4;25316:2;25320:7;25329:1;25288:21;:43::i;:::-;25396:35;25413:1;25417:7;25426:4;25396:8;:35::i;:::-;25757:1;25727:12;:18;25740:4;25727:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25801:1;25773:12;:16;25786:2;25773:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25819:31;25853:11;:20;25865:7;25853:20;;;;;;;;;;;25819:54;;25904:2;25888:8;:13;;;:18;;;;;;;;;;;;;;;;;;25954:15;25921:8;:23;;;:49;;;;;;;;;;;;;;;;;;26222:19;26254:1;26244:7;:11;26222:33;;26270:31;26304:11;:24;26316:11;26304:24;;;;;;;;;;;26270:58;;26372:1;26347:27;;:8;:13;;;;;;;;;;;;:27;;;26343:384;;;26557:13;;26542:11;:28;26538:174;;26611:4;26595:8;:13;;;:20;;;;;;;;;;;;;;;;;;26664:13;:28;;;26638:8;:23;;;:54;;;;;;;;;;;;;;;;;;26538:174;26343:384;25702:1036;;;26774:7;26770:2;26755:27;;26764:4;26755:27;;;;;;;;;;;;26793:42;26814:4;26820:2;26824:7;26833:1;26793:20;:42::i;:::-;24817:2026;;24713:2130;;;:::o;15687:1111::-;15749:21;;:::i;:::-;15783:12;15798:7;15783:22;;15866:4;15847:15;:13;:15::i;:::-;:23;15843:888;;15883:13;;15876:4;:20;15872:859;;;15917:31;15951:11;:17;15963:4;15951:17;;;;;;;;;;;15917:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15992:9;:16;;;15987:729;;16063:1;16037:28;;:9;:14;;;:28;;;16033:101;;16101:9;16094:16;;;;;;16033:101;16436:261;16443:4;16436:261;;;16476:6;;;;;;;;16521:11;:17;16533:4;16521:17;;;;;;;;;;;16509:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16595:1;16569:28;;:9;:14;;;:28;;;16565:109;;16637:9;16630:16;;;;;;16565:109;16436:261;;;15987:729;15898:833;15872:859;15843:888;16759:31;;;;;;;;;;;;;;15687:1111;;;;:::o;56652:191::-;56726:16;56745:6;;;;;;;;;;;56726:25;;56771:8;56762:6;;:17;;;;;;;;;;;;;;;;;;56826:8;56795:40;;56816:8;56795:40;;;;;;;;;;;;56715:128;56652:191;:::o;20801:104::-;20870:27;20880:2;20884:8;20870:27;;;;;;;;;;;;:9;:27::i;:::-;20801:104;;:::o;61714:203::-;61777:4;61794:12;61836:10;61819:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;61809:39;;;;;;61794:54;;61866:43;61885:5;61892:10;;61904:4;61866:18;:43::i;:::-;61859:50;;;61714:203;;;:::o;60566:377::-;60628:5;;60621:3;:12;;:23;;;;;60643:1;60637:3;:7;60621:23;60613:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;60727:9;;60720:3;60704:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:32;;60696:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;60810:3;60802:5;;:11;;;;:::i;:::-;60789:9;:24;;60781:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;60851:26;60859:12;:10;:12::i;:::-;60873:3;60851:7;:26::i;:::-;60888:9;;;;;;;;;;;:28;;;60917:12;:10;:12::i;:::-;60931:3;60888:47;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60566:377;:::o;37354:326::-;37414:4;37671:1;37649:7;:19;;;:23;37642:30;;37354:326;;;:::o;30453:667::-;30616:4;30653:2;30637:36;;;30674:12;:10;:12::i;:::-;30688:4;30694:7;30703:5;30637:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;30633:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30888:1;30871:6;:13;:18;30867:235;;;30917:40;;;;;;;;;;;;;;30867:235;31060:6;31054:13;31045:6;31041:2;31037:15;31030:38;30633:480;30766:45;;;30756:55;;;:6;:55;;;;30749:62;;;30453:667;;;;;;:::o;58802:105::-;58854:13;58887:12;58880:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58802:105;:::o;34112:723::-;34168:13;34398:1;34389:5;:10;34385:53;;;34416:10;;;;;;;;;;;;;;;;;;;;;34385:53;34448:12;34463:5;34448:20;;34479:14;34504:78;34519:1;34511:4;:9;34504:78;;34537:8;;;;;:::i;:::-;;;;34568:2;34560:10;;;;;:::i;:::-;;;34504:78;;;34592:19;34624:6;34614:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34592:39;;34642:154;34658:1;34649:5;:10;34642:154;;34686:1;34676:11;;;;;:::i;:::-;;;34753:2;34745:5;:10;;;;:::i;:::-;34732:2;:24;;;;:::i;:::-;34719:39;;34702:6;34709;34702:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;34782:2;34773:11;;;;;:::i;:::-;;;34642:154;;;34820:6;34806:21;;;;;34112:723;;;;:::o;60195:363::-;60254:5;;60247:3;:12;;:23;;;;;60269:1;60263:3;:7;60247:23;60239:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;60353:9;;60346:3;60330:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:32;;60322:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;60425:3;60417:5;;:11;;;;:::i;:::-;60404:9;:24;;60396:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;60466:26;60474:12;:10;:12::i;:::-;60488:3;60466:7;:26::i;:::-;60503:9;;;;;;;;;;;:28;;;60532:12;:10;:12::i;:::-;60546:3;60503:47;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60195:363;:::o;60951:454::-;61014:9;;61007:3;:16;;:27;;;;;61033:1;61027:3;:7;61007:27;60999:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;61117:13;;61110:3;61094:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:36;;61086:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;61175:9;61214:1;61187:23;61197:12;:10;:12::i;:::-;61187:9;:23::i;:::-;:28;:36;;61222:1;61187:36;;;61218:1;61187:36;61175:48;;;;61270:4;61264:3;:10;;;;:::i;:::-;61255:5;;:20;;;;:::i;:::-;61242:9;:33;;61234:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61313:26;61321:12;:10;:12::i;:::-;61335:3;61313:7;:26::i;:::-;61350:9;;;;;;;;;;;:28;;;61379:12;:10;:12::i;:::-;61393:3;61350:47;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60988:417;60951:454;:::o;26921:89::-;26981:21;26987:7;26996:5;26981;:21::i;:::-;26921:89;:::o;23286:1173::-;23351:20;23374:13;;23351:36;;23416:1;23402:16;;:2;:16;;;23398:48;;;23427:19;;;;;;;;;;;;;;23398:48;23473:1;23461:8;:13;23457:44;;;23483:18;;;;;;;;;;;;;;23457:44;23514:61;23544:1;23548:2;23552:12;23566:8;23514:21;:61::i;:::-;23887:8;23852:12;:16;23865:2;23852:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23951:8;23911:12;:16;23924:2;23911:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24010:2;23977:11;:25;23989:12;23977:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;24077:15;24027:11;:25;24039:12;24027:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;24110:20;24133:12;24110:35;;24160:11;24189:8;24174:12;:23;24160:37;;24214:111;24266:14;;;;;;24262:2;24241:40;;24258:1;24241:40;;;;;;;;;;;;24320:3;24305:12;:18;24214:111;;24357:12;24341:13;:28;;;;23827:554;;24391:60;24420:1;24424:2;24428:12;24442:8;24391:20;:60::i;:::-;23340:1119;23286:1173;;:::o;62365:329::-;62537:56;62565:4;62571:2;62575:7;62584:8;62537:27;:56::i;:::-;62624:1;62608:18;;:4;:18;;;62604:83;;62643:9;;;;;;;;;;;:22;;;62666:4;62672:2;62643:32;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62604:83;62365:329;;;;:::o;32586:158::-;;;;;:::o;21278:1749::-;21401:20;21424:13;;21401:36;;21466:1;21452:16;;:2;:16;;;21448:48;;;21477:19;;;;;;;;;;;;;;21448:48;21523:1;21511:8;:13;21507:44;;;21533:18;;;;;;;;;;;;;;21507:44;21564:61;21594:1;21598:2;21602:12;21616:8;21564:21;:61::i;:::-;21937:8;21902:12;:16;21915:2;21902:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22001:8;21961:12;:16;21974:2;21961:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22060:2;22027:11;:25;22039:12;22027:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;22127:15;22077:11;:25;22089:12;22077:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;22160:20;22183:12;22160:35;;22210:11;22239:8;22224:12;:23;22210:37;;22268:15;:2;:13;;;:15::i;:::-;22264:631;;;22304:313;22360:12;22356:2;22335:38;;22352:1;22335:38;;;;;;;;;;;;22401:69;22440:1;22444:2;22448:14;;;;;;22464:5;22401:30;:69::i;:::-;22396:174;;22506:40;;;;;;;;;;;;;;22396:174;22612:3;22597:12;:18;22304:313;;22698:12;22681:13;;:29;22677:43;;22712:8;;;22677:43;22264:631;;;22761:119;22817:14;;;;;;22813:2;22792:40;;22809:1;22792:40;;;;;;;;;;;;22875:3;22860:12;:18;22761:119;;22264:631;22925:12;22909:13;:28;;;;21877:1072;;22959:60;22988:1;22992:2;22996:12;23010:8;22959:20;:60::i;:::-;21390:1637;21278:1749;;;:::o;46697:190::-;46822:4;46875;46846:25;46859:5;46866:4;46846:12;:25::i;:::-;:33;46839:40;;46697:190;;;;;:::o;27239:2408::-;27319:35;27357:21;27370:7;27357:12;:21::i;:::-;27319:59;;27391:12;27406:13;:18;;;27391:33;;27441:13;27437:290;;;27471:22;27513:4;27497:20;;:12;:10;:12::i;:::-;:20;;;:77;;;;27538:36;27555:4;27561:12;:10;:12::i;:::-;27538:16;:36::i;:::-;27497:77;:134;;;;27619:12;:10;:12::i;:::-;27595:36;;:20;27607:7;27595:11;:20::i;:::-;:36;;;27497:134;27471:161;;27654:17;27649:66;;27680:35;;;;;;;;;;;;;;27649:66;27456:271;27437:290;27739:51;27761:4;27775:1;27779:7;27788:1;27739:21;:51::i;:::-;27855:35;27872:1;27876:7;27885:4;27855:8;:35::i;:::-;28186:31;28220:12;:18;28233:4;28220:18;;;;;;;;;;;;;;;28186:52;;28276:1;28253:11;:19;;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28320:1;28292:11;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28420:31;28454:11;:20;28466:7;28454:20;;;;;;;;;;;28420:54;;28505:4;28489:8;:13;;;:20;;;;;;;;;;;;;;;;;;28557:15;28524:8;:23;;;:49;;;;;;;;;;;;;;;;;;28606:4;28588:8;:15;;;:22;;;;;;;;;;;;;;;;;;28858:19;28890:1;28880:7;:11;28858:33;;28906:31;28940:11;:24;28952:11;28940:24;;;;;;;;;;;28906:58;;29008:1;28983:27;;:8;:13;;;;;;;;;;;;:27;;;28979:384;;;29193:13;;29178:11;:28;29174:174;;29247:4;29231:8;:13;;;:20;;;;;;;;;;;;;;;;;;29300:13;:28;;;29274:8;:23;;;:54;;;;;;;;;;;;;;;;;;29174:174;28979:384;28161:1213;;;;29418:7;29414:1;29391:35;;29400:4;29391:35;;;;;;;;;;;;29437:50;29458:4;29472:1;29476:7;29485:1;29437:20;:50::i;:::-;29614:12;;:14;;;;;;;;;;;;;27308:2339;;27239:2408;;:::o;31768:159::-;;;;;:::o;47564:296::-;47647:7;47667:20;47690:4;47667:27;;47710:9;47705:118;47729:5;:12;47725:1;:16;47705:118;;;47778:33;47788:12;47802:5;47808:1;47802:8;;;;;;;;:::i;:::-;;;;;;;;47778:9;:33::i;:::-;47763:48;;47743:3;;;;;:::i;:::-;;;;47705:118;;;;47840:12;47833:19;;;47564:296;;;;:::o;53771:149::-;53834:7;53865:1;53861;:5;:51;;53892:20;53907:1;53910;53892:14;:20::i;:::-;53861:51;;;53869:20;53884:1;53887;53869:14;:20::i;:::-;53861:51;53854:58;;53771:149;;;;:::o;53928:268::-;53996:13;54103:1;54097:4;54090:15;54132:1;54126:4;54119:15;54173:4;54167;54157:21;54148:30;;53928:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:139::-;1214:5;1252:6;1239:20;1230:29;;1268:33;1295:5;1268:33;:::i;:::-;1168:139;;;;:::o;1330:568::-;1403:8;1413:6;1463:3;1456:4;1448:6;1444:17;1440:27;1430:122;;1471:79;;:::i;:::-;1430:122;1584:6;1571:20;1561:30;;1614:18;1606:6;1603:30;1600:117;;;1636:79;;:::i;:::-;1600:117;1750:4;1742:6;1738:17;1726:29;;1804:3;1796:4;1788:6;1784:17;1774:8;1770:32;1767:41;1764:128;;;1811:79;;:::i;:::-;1764:128;1330:568;;;;;:::o;1921:370::-;1992:5;2041:3;2034:4;2026:6;2022:17;2018:27;2008:122;;2049:79;;:::i;:::-;2008:122;2166:6;2153:20;2191:94;2281:3;2273:6;2266:4;2258:6;2254:17;2191:94;:::i;:::-;2182:103;;1998:293;1921:370;;;;:::o;2297:133::-;2340:5;2378:6;2365:20;2356:29;;2394:30;2418:5;2394:30;:::i;:::-;2297:133;;;;:::o;2436:139::-;2482:5;2520:6;2507:20;2498:29;;2536:33;2563:5;2536:33;:::i;:::-;2436:139;;;;:::o;2581:137::-;2626:5;2664:6;2651:20;2642:29;;2680:32;2706:5;2680:32;:::i;:::-;2581:137;;;;:::o;2724:141::-;2780:5;2811:6;2805:13;2796:22;;2827:32;2853:5;2827:32;:::i;:::-;2724:141;;;;:::o;2884:338::-;2939:5;2988:3;2981:4;2973:6;2969:17;2965:27;2955:122;;2996:79;;:::i;:::-;2955:122;3113:6;3100:20;3138:78;3212:3;3204:6;3197:4;3189:6;3185:17;3138:78;:::i;:::-;3129:87;;2945:277;2884:338;;;;:::o;3242:553::-;3300:8;3310:6;3360:3;3353:4;3345:6;3341:17;3337:27;3327:122;;3368:79;;:::i;:::-;3327:122;3481:6;3468:20;3458:30;;3511:18;3503:6;3500:30;3497:117;;;3533:79;;:::i;:::-;3497:117;3647:4;3639:6;3635:17;3623:29;;3701:3;3693:4;3685:6;3681:17;3671:8;3667:32;3664:41;3661:128;;;3708:79;;:::i;:::-;3661:128;3242:553;;;;;:::o;3801:139::-;3847:5;3885:6;3872:20;3863:29;;3901:33;3928:5;3901:33;:::i;:::-;3801:139;;;;:::o;3946:329::-;4005:6;4054:2;4042:9;4033:7;4029:23;4025:32;4022:119;;;4060:79;;:::i;:::-;4022:119;4180:1;4205:53;4250:7;4241:6;4230:9;4226:22;4205:53;:::i;:::-;4195:63;;4151:117;3946:329;;;;:::o;4281:474::-;4349:6;4357;4406:2;4394:9;4385:7;4381:23;4377:32;4374:119;;;4412:79;;:::i;:::-;4374:119;4532:1;4557:53;4602:7;4593:6;4582:9;4578:22;4557:53;:::i;:::-;4547:63;;4503:117;4659:2;4685:53;4730:7;4721:6;4710:9;4706:22;4685:53;:::i;:::-;4675:63;;4630:118;4281:474;;;;;:::o;4761:619::-;4838:6;4846;4854;4903:2;4891:9;4882:7;4878:23;4874:32;4871:119;;;4909:79;;:::i;:::-;4871:119;5029:1;5054:53;5099:7;5090:6;5079:9;5075:22;5054:53;:::i;:::-;5044:63;;5000:117;5156:2;5182:53;5227:7;5218:6;5207:9;5203:22;5182:53;:::i;:::-;5172:63;;5127:118;5284:2;5310:53;5355:7;5346:6;5335:9;5331:22;5310:53;:::i;:::-;5300:63;;5255:118;4761:619;;;;;:::o;5386:943::-;5481:6;5489;5497;5505;5554:3;5542:9;5533:7;5529:23;5525:33;5522:120;;;5561:79;;:::i;:::-;5522:120;5681:1;5706:53;5751:7;5742:6;5731:9;5727:22;5706:53;:::i;:::-;5696:63;;5652:117;5808:2;5834:53;5879:7;5870:6;5859:9;5855:22;5834:53;:::i;:::-;5824:63;;5779:118;5936:2;5962:53;6007:7;5998:6;5987:9;5983:22;5962:53;:::i;:::-;5952:63;;5907:118;6092:2;6081:9;6077:18;6064:32;6123:18;6115:6;6112:30;6109:117;;;6145:79;;:::i;:::-;6109:117;6250:62;6304:7;6295:6;6284:9;6280:22;6250:62;:::i;:::-;6240:72;;6035:287;5386:943;;;;;;;:::o;6335:468::-;6400:6;6408;6457:2;6445:9;6436:7;6432:23;6428:32;6425:119;;;6463:79;;:::i;:::-;6425:119;6583:1;6608:53;6653:7;6644:6;6633:9;6629:22;6608:53;:::i;:::-;6598:63;;6554:117;6710:2;6736:50;6778:7;6769:6;6758:9;6754:22;6736:50;:::i;:::-;6726:60;;6681:115;6335:468;;;;;:::o;6809:474::-;6877:6;6885;6934:2;6922:9;6913:7;6909:23;6905:32;6902:119;;;6940:79;;:::i;:::-;6902:119;7060:1;7085:53;7130:7;7121:6;7110:9;7106:22;7085:53;:::i;:::-;7075:63;;7031:117;7187:2;7213:53;7258:7;7249:6;7238:9;7234:22;7213:53;:::i;:::-;7203:63;;7158:118;6809:474;;;;;:::o;7289:559::-;7375:6;7383;7432:2;7420:9;7411:7;7407:23;7403:32;7400:119;;;7438:79;;:::i;:::-;7400:119;7586:1;7575:9;7571:17;7558:31;7616:18;7608:6;7605:30;7602:117;;;7638:79;;:::i;:::-;7602:117;7751:80;7823:7;7814:6;7803:9;7799:22;7751:80;:::i;:::-;7733:98;;;;7529:312;7289:559;;;;;:::o;7854:329::-;7913:6;7962:2;7950:9;7941:7;7937:23;7933:32;7930:119;;;7968:79;;:::i;:::-;7930:119;8088:1;8113:53;8158:7;8149:6;8138:9;8134:22;8113:53;:::i;:::-;8103:63;;8059:117;7854:329;;;;:::o;8189:327::-;8247:6;8296:2;8284:9;8275:7;8271:23;8267:32;8264:119;;;8302:79;;:::i;:::-;8264:119;8422:1;8447:52;8491:7;8482:6;8471:9;8467:22;8447:52;:::i;:::-;8437:62;;8393:116;8189:327;;;;:::o;8522:349::-;8591:6;8640:2;8628:9;8619:7;8615:23;8611:32;8608:119;;;8646:79;;:::i;:::-;8608:119;8766:1;8791:63;8846:7;8837:6;8826:9;8822:22;8791:63;:::i;:::-;8781:73;;8737:127;8522:349;;;;:::o;8877:529::-;8948:6;8956;9005:2;8993:9;8984:7;8980:23;8976:32;8973:119;;;9011:79;;:::i;:::-;8973:119;9159:1;9148:9;9144:17;9131:31;9189:18;9181:6;9178:30;9175:117;;;9211:79;;:::i;:::-;9175:117;9324:65;9381:7;9372:6;9361:9;9357:22;9324:65;:::i;:::-;9306:83;;;;9102:297;8877:529;;;;;:::o;9412:329::-;9471:6;9520:2;9508:9;9499:7;9495:23;9491:32;9488:119;;;9526:79;;:::i;:::-;9488:119;9646:1;9671:53;9716:7;9707:6;9696:9;9692:22;9671:53;:::i;:::-;9661:63;;9617:117;9412:329;;;;:::o;9747:684::-;9840:6;9848;9897:2;9885:9;9876:7;9872:23;9868:32;9865:119;;;9903:79;;:::i;:::-;9865:119;10023:1;10048:53;10093:7;10084:6;10073:9;10069:22;10048:53;:::i;:::-;10038:63;;9994:117;10178:2;10167:9;10163:18;10150:32;10209:18;10201:6;10198:30;10195:117;;;10231:79;;:::i;:::-;10195:117;10336:78;10406:7;10397:6;10386:9;10382:22;10336:78;:::i;:::-;10326:88;;10121:303;9747:684;;;;;:::o;10437:118::-;10524:24;10542:5;10524:24;:::i;:::-;10519:3;10512:37;10437:118;;:::o;10561:157::-;10666:45;10686:24;10704:5;10686:24;:::i;:::-;10666:45;:::i;:::-;10661:3;10654:58;10561:157;;:::o;10724:109::-;10805:21;10820:5;10805:21;:::i;:::-;10800:3;10793:34;10724:109;;:::o;10839:118::-;10926:24;10944:5;10926:24;:::i;:::-;10921:3;10914:37;10839:118;;:::o;10963:360::-;11049:3;11077:38;11109:5;11077:38;:::i;:::-;11131:70;11194:6;11189:3;11131:70;:::i;:::-;11124:77;;11210:52;11255:6;11250:3;11243:4;11236:5;11232:16;11210:52;:::i;:::-;11287:29;11309:6;11287:29;:::i;:::-;11282:3;11278:39;11271:46;;11053:270;10963:360;;;;:::o;11329:167::-;11434:55;11483:5;11434:55;:::i;:::-;11429:3;11422:68;11329:167;;:::o;11502:364::-;11590:3;11618:39;11651:5;11618:39;:::i;:::-;11673:71;11737:6;11732:3;11673:71;:::i;:::-;11666:78;;11753:52;11798:6;11793:3;11786:4;11779:5;11775:16;11753:52;:::i;:::-;11830:29;11852:6;11830:29;:::i;:::-;11825:3;11821:39;11814:46;;11594:272;11502:364;;;;:::o;11872:377::-;11978:3;12006:39;12039:5;12006:39;:::i;:::-;12061:89;12143:6;12138:3;12061:89;:::i;:::-;12054:96;;12159:52;12204:6;12199:3;12192:4;12185:5;12181:16;12159:52;:::i;:::-;12236:6;12231:3;12227:16;12220:23;;11982:267;11872:377;;;;:::o;12255:366::-;12397:3;12418:67;12482:2;12477:3;12418:67;:::i;:::-;12411:74;;12494:93;12583:3;12494:93;:::i;:::-;12612:2;12607:3;12603:12;12596:19;;12255:366;;;:::o;12627:::-;12769:3;12790:67;12854:2;12849:3;12790:67;:::i;:::-;12783:74;;12866:93;12955:3;12866:93;:::i;:::-;12984:2;12979:3;12975:12;12968:19;;12627:366;;;:::o;12999:::-;13141:3;13162:67;13226:2;13221:3;13162:67;:::i;:::-;13155:74;;13238:93;13327:3;13238:93;:::i;:::-;13356:2;13351:3;13347:12;13340:19;;12999:366;;;:::o;13371:::-;13513:3;13534:67;13598:2;13593:3;13534:67;:::i;:::-;13527:74;;13610:93;13699:3;13610:93;:::i;:::-;13728:2;13723:3;13719:12;13712:19;;13371:366;;;:::o;13743:::-;13885:3;13906:67;13970:2;13965:3;13906:67;:::i;:::-;13899:74;;13982:93;14071:3;13982:93;:::i;:::-;14100:2;14095:3;14091:12;14084:19;;13743:366;;;:::o;14115:::-;14257:3;14278:67;14342:2;14337:3;14278:67;:::i;:::-;14271:74;;14354:93;14443:3;14354:93;:::i;:::-;14472:2;14467:3;14463:12;14456:19;;14115:366;;;:::o;14487:::-;14629:3;14650:67;14714:2;14709:3;14650:67;:::i;:::-;14643:74;;14726:93;14815:3;14726:93;:::i;:::-;14844:2;14839:3;14835:12;14828:19;;14487:366;;;:::o;14859:::-;15001:3;15022:67;15086:2;15081:3;15022:67;:::i;:::-;15015:74;;15098:93;15187:3;15098:93;:::i;:::-;15216:2;15211:3;15207:12;15200:19;;14859:366;;;:::o;15231:::-;15373:3;15394:67;15458:2;15453:3;15394:67;:::i;:::-;15387:74;;15470:93;15559:3;15470:93;:::i;:::-;15588:2;15583:3;15579:12;15572:19;;15231:366;;;:::o;15603:::-;15745:3;15766:67;15830:2;15825:3;15766:67;:::i;:::-;15759:74;;15842:93;15931:3;15842:93;:::i;:::-;15960:2;15955:3;15951:12;15944:19;;15603:366;;;:::o;15975:::-;16117:3;16138:67;16202:2;16197:3;16138:67;:::i;:::-;16131:74;;16214:93;16303:3;16214:93;:::i;:::-;16332:2;16327:3;16323:12;16316:19;;15975:366;;;:::o;16347:::-;16489:3;16510:67;16574:2;16569:3;16510:67;:::i;:::-;16503:74;;16586:93;16675:3;16586:93;:::i;:::-;16704:2;16699:3;16695:12;16688:19;;16347:366;;;:::o;16719:118::-;16806:24;16824:5;16806:24;:::i;:::-;16801:3;16794:37;16719:118;;:::o;16843:256::-;16955:3;16970:75;17041:3;17032:6;16970:75;:::i;:::-;17070:2;17065:3;17061:12;17054:19;;17090:3;17083:10;;16843:256;;;;:::o;17105:435::-;17285:3;17307:95;17398:3;17389:6;17307:95;:::i;:::-;17300:102;;17419:95;17510:3;17501:6;17419:95;:::i;:::-;17412:102;;17531:3;17524:10;;17105:435;;;;;:::o;17546:222::-;17639:4;17677:2;17666:9;17662:18;17654:26;;17690:71;17758:1;17747:9;17743:17;17734:6;17690:71;:::i;:::-;17546:222;;;;:::o;17774:332::-;17895:4;17933:2;17922:9;17918:18;17910:26;;17946:71;18014:1;18003:9;17999:17;17990:6;17946:71;:::i;:::-;18027:72;18095:2;18084:9;18080:18;18071:6;18027:72;:::i;:::-;17774:332;;;;;:::o;18112:640::-;18307:4;18345:3;18334:9;18330:19;18322:27;;18359:71;18427:1;18416:9;18412:17;18403:6;18359:71;:::i;:::-;18440:72;18508:2;18497:9;18493:18;18484:6;18440:72;:::i;:::-;18522;18590:2;18579:9;18575:18;18566:6;18522:72;:::i;:::-;18641:9;18635:4;18631:20;18626:2;18615:9;18611:18;18604:48;18669:76;18740:4;18731:6;18669:76;:::i;:::-;18661:84;;18112:640;;;;;;;:::o;18758:332::-;18879:4;18917:2;18906:9;18902:18;18894:26;;18930:71;18998:1;18987:9;18983:17;18974:6;18930:71;:::i;:::-;19011:72;19079:2;19068:9;19064:18;19055:6;19011:72;:::i;:::-;18758:332;;;;;:::o;19096:210::-;19183:4;19221:2;19210:9;19206:18;19198:26;;19234:65;19296:1;19285:9;19281:17;19272:6;19234:65;:::i;:::-;19096:210;;;;:::o;19312:222::-;19405:4;19443:2;19432:9;19428:18;19420:26;;19456:71;19524:1;19513:9;19509:17;19500:6;19456:71;:::i;:::-;19312:222;;;;:::o;19540:258::-;19651:4;19689:2;19678:9;19674:18;19666:26;;19702:89;19788:1;19777:9;19773:17;19764:6;19702:89;:::i;:::-;19540:258;;;;:::o;19804:313::-;19917:4;19955:2;19944:9;19940:18;19932:26;;20004:9;19998:4;19994:20;19990:1;19979:9;19975:17;19968:47;20032:78;20105:4;20096:6;20032:78;:::i;:::-;20024:86;;19804:313;;;;:::o;20123:419::-;20289:4;20327:2;20316:9;20312:18;20304:26;;20376:9;20370:4;20366:20;20362:1;20351:9;20347:17;20340:47;20404:131;20530:4;20404:131;:::i;:::-;20396:139;;20123:419;;;:::o;20548:::-;20714:4;20752:2;20741:9;20737:18;20729:26;;20801:9;20795:4;20791:20;20787:1;20776:9;20772:17;20765:47;20829:131;20955:4;20829:131;:::i;:::-;20821:139;;20548:419;;;:::o;20973:::-;21139:4;21177:2;21166:9;21162:18;21154:26;;21226:9;21220:4;21216:20;21212:1;21201:9;21197:17;21190:47;21254:131;21380:4;21254:131;:::i;:::-;21246:139;;20973:419;;;:::o;21398:::-;21564:4;21602:2;21591:9;21587:18;21579:26;;21651:9;21645:4;21641:20;21637:1;21626:9;21622:17;21615:47;21679:131;21805:4;21679:131;:::i;:::-;21671:139;;21398:419;;;:::o;21823:::-;21989:4;22027:2;22016:9;22012:18;22004:26;;22076:9;22070:4;22066:20;22062:1;22051:9;22047:17;22040:47;22104:131;22230:4;22104:131;:::i;:::-;22096:139;;21823:419;;;:::o;22248:::-;22414:4;22452:2;22441:9;22437:18;22429:26;;22501:9;22495:4;22491:20;22487:1;22476:9;22472:17;22465:47;22529:131;22655:4;22529:131;:::i;:::-;22521:139;;22248:419;;;:::o;22673:::-;22839:4;22877:2;22866:9;22862:18;22854:26;;22926:9;22920:4;22916:20;22912:1;22901:9;22897:17;22890:47;22954:131;23080:4;22954:131;:::i;:::-;22946:139;;22673:419;;;:::o;23098:::-;23264:4;23302:2;23291:9;23287:18;23279:26;;23351:9;23345:4;23341:20;23337:1;23326:9;23322:17;23315:47;23379:131;23505:4;23379:131;:::i;:::-;23371:139;;23098:419;;;:::o;23523:::-;23689:4;23727:2;23716:9;23712:18;23704:26;;23776:9;23770:4;23766:20;23762:1;23751:9;23747:17;23740:47;23804:131;23930:4;23804:131;:::i;:::-;23796:139;;23523:419;;;:::o;23948:::-;24114:4;24152:2;24141:9;24137:18;24129:26;;24201:9;24195:4;24191:20;24187:1;24176:9;24172:17;24165:47;24229:131;24355:4;24229:131;:::i;:::-;24221:139;;23948:419;;;:::o;24373:::-;24539:4;24577:2;24566:9;24562:18;24554:26;;24626:9;24620:4;24616:20;24612:1;24601:9;24597:17;24590:47;24654:131;24780:4;24654:131;:::i;:::-;24646:139;;24373:419;;;:::o;24798:::-;24964:4;25002:2;24991:9;24987:18;24979:26;;25051:9;25045:4;25041:20;25037:1;25026:9;25022:17;25015:47;25079:131;25205:4;25079:131;:::i;:::-;25071:139;;24798:419;;;:::o;25223:222::-;25316:4;25354:2;25343:9;25339:18;25331:26;;25367:71;25435:1;25424:9;25420:17;25411:6;25367:71;:::i;:::-;25223:222;;;;:::o;25451:129::-;25485:6;25512:20;;:::i;:::-;25502:30;;25541:33;25569:4;25561:6;25541:33;:::i;:::-;25451:129;;;:::o;25586:75::-;25619:6;25652:2;25646:9;25636:19;;25586:75;:::o;25667:311::-;25744:4;25834:18;25826:6;25823:30;25820:56;;;25856:18;;:::i;:::-;25820:56;25906:4;25898:6;25894:17;25886:25;;25966:4;25960;25956:15;25948:23;;25667:311;;;:::o;25984:307::-;26045:4;26135:18;26127:6;26124:30;26121:56;;;26157:18;;:::i;:::-;26121:56;26195:29;26217:6;26195:29;:::i;:::-;26187:37;;26279:4;26273;26269:15;26261:23;;25984:307;;;:::o;26297:98::-;26348:6;26382:5;26376:12;26366:22;;26297:98;;;:::o;26401:99::-;26453:6;26487:5;26481:12;26471:22;;26401:99;;;:::o;26506:168::-;26589:11;26623:6;26618:3;26611:19;26663:4;26658:3;26654:14;26639:29;;26506:168;;;;:::o;26680:169::-;26764:11;26798:6;26793:3;26786:19;26838:4;26833:3;26829:14;26814:29;;26680:169;;;;:::o;26855:148::-;26957:11;26994:3;26979:18;;26855:148;;;;:::o;27009:305::-;27049:3;27068:20;27086:1;27068:20;:::i;:::-;27063:25;;27102:20;27120:1;27102:20;:::i;:::-;27097:25;;27256:1;27188:66;27184:74;27181:1;27178:81;27175:107;;;27262:18;;:::i;:::-;27175:107;27306:1;27303;27299:9;27292:16;;27009:305;;;;:::o;27320:185::-;27360:1;27377:20;27395:1;27377:20;:::i;:::-;27372:25;;27411:20;27429:1;27411:20;:::i;:::-;27406:25;;27450:1;27440:35;;27455:18;;:::i;:::-;27440:35;27497:1;27494;27490:9;27485:14;;27320:185;;;;:::o;27511:348::-;27551:7;27574:20;27592:1;27574:20;:::i;:::-;27569:25;;27608:20;27626:1;27608:20;:::i;:::-;27603:25;;27796:1;27728:66;27724:74;27721:1;27718:81;27713:1;27706:9;27699:17;27695:105;27692:131;;;27803:18;;:::i;:::-;27692:131;27851:1;27848;27844:9;27833:20;;27511:348;;;;:::o;27865:191::-;27905:4;27925:20;27943:1;27925:20;:::i;:::-;27920:25;;27959:20;27977:1;27959:20;:::i;:::-;27954:25;;27998:1;27995;27992:8;27989:34;;;28003:18;;:::i;:::-;27989:34;28048:1;28045;28041:9;28033:17;;27865:191;;;;:::o;28062:96::-;28099:7;28128:24;28146:5;28128:24;:::i;:::-;28117:35;;28062:96;;;:::o;28164:90::-;28198:7;28241:5;28234:13;28227:21;28216:32;;28164:90;;;:::o;28260:77::-;28297:7;28326:5;28315:16;;28260:77;;;:::o;28343:149::-;28379:7;28419:66;28412:5;28408:78;28397:89;;28343:149;;;:::o;28498:126::-;28535:7;28575:42;28568:5;28564:54;28553:65;;28498:126;;;:::o;28630:77::-;28667:7;28696:5;28685:16;;28630:77;;;:::o;28713:144::-;28781:9;28814:37;28845:5;28814:37;:::i;:::-;28801:50;;28713:144;;;:::o;28863:126::-;28913:9;28946:37;28977:5;28946:37;:::i;:::-;28933:50;;28863:126;;;:::o;28995:113::-;29045:9;29078:24;29096:5;29078:24;:::i;:::-;29065:37;;28995:113;;;:::o;29114:154::-;29198:6;29193:3;29188;29175:30;29260:1;29251:6;29246:3;29242:16;29235:27;29114:154;;;:::o;29274:307::-;29342:1;29352:113;29366:6;29363:1;29360:13;29352:113;;;29451:1;29446:3;29442:11;29436:18;29432:1;29427:3;29423:11;29416:39;29388:2;29385:1;29381:10;29376:15;;29352:113;;;29483:6;29480:1;29477:13;29474:101;;;29563:1;29554:6;29549:3;29545:16;29538:27;29474:101;29323:258;29274:307;;;:::o;29587:320::-;29631:6;29668:1;29662:4;29658:12;29648:22;;29715:1;29709:4;29705:12;29736:18;29726:81;;29792:4;29784:6;29780:17;29770:27;;29726:81;29854:2;29846:6;29843:14;29823:18;29820:38;29817:84;;;29873:18;;:::i;:::-;29817:84;29638:269;29587:320;;;:::o;29913:281::-;29996:27;30018:4;29996:27;:::i;:::-;29988:6;29984:40;30126:6;30114:10;30111:22;30090:18;30078:10;30075:34;30072:62;30069:88;;;30137:18;;:::i;:::-;30069:88;30177:10;30173:2;30166:22;29956:238;29913:281;;:::o;30200:233::-;30239:3;30262:24;30280:5;30262:24;:::i;:::-;30253:33;;30308:66;30301:5;30298:77;30295:103;;;30378:18;;:::i;:::-;30295:103;30425:1;30418:5;30414:13;30407:20;;30200:233;;;:::o;30439:100::-;30478:7;30507:26;30527:5;30507:26;:::i;:::-;30496:37;;30439:100;;;:::o;30545:94::-;30584:7;30613:20;30627:5;30613:20;:::i;:::-;30602:31;;30545:94;;;:::o;30645:176::-;30677:1;30694:20;30712:1;30694:20;:::i;:::-;30689:25;;30728:20;30746:1;30728:20;:::i;:::-;30723:25;;30767:1;30757:35;;30772:18;;:::i;:::-;30757:35;30813:1;30810;30806:9;30801:14;;30645:176;;;;:::o;30827:180::-;30875:77;30872:1;30865:88;30972:4;30969:1;30962:15;30996:4;30993:1;30986:15;31013:180;31061:77;31058:1;31051:88;31158:4;31155:1;31148:15;31182:4;31179:1;31172:15;31199:180;31247:77;31244:1;31237:88;31344:4;31341:1;31334:15;31368:4;31365:1;31358:15;31385:180;31433:77;31430:1;31423:88;31530:4;31527:1;31520:15;31554:4;31551:1;31544:15;31571:180;31619:77;31616:1;31609:88;31716:4;31713:1;31706:15;31740:4;31737:1;31730:15;31757:117;31866:1;31863;31856:12;31880:117;31989:1;31986;31979:12;32003:117;32112:1;32109;32102:12;32126:117;32235:1;32232;32225:12;32249:117;32358:1;32355;32348:12;32372:117;32481:1;32478;32471:12;32495:102;32536:6;32587:2;32583:7;32578:2;32571:5;32567:14;32563:28;32553:38;;32495:102;;;:::o;32603:94::-;32636:8;32684:5;32680:2;32676:14;32655:35;;32603:94;;;:::o;32703:225::-;32843:34;32839:1;32831:6;32827:14;32820:58;32912:8;32907:2;32899:6;32895:15;32888:33;32703:225;:::o;32934:223::-;33074:34;33070:1;33062:6;33058:14;33051:58;33143:6;33138:2;33130:6;33126:15;33119:31;32934:223;:::o;33163:172::-;33303:24;33299:1;33291:6;33287:14;33280:48;33163:172;:::o;33341:170::-;33481:22;33477:1;33469:6;33465:14;33458:46;33341:170;:::o;33517:162::-;33657:14;33653:1;33645:6;33641:14;33634:38;33517:162;:::o;33685:179::-;33825:31;33821:1;33813:6;33809:14;33802:55;33685:179;:::o;33870:176::-;34010:28;34006:1;33998:6;33994:14;33987:52;33870:176;:::o;34052:168::-;34192:20;34188:1;34180:6;34176:14;34169:44;34052:168;:::o;34226:174::-;34366:26;34362:1;34354:6;34350:14;34343:50;34226:174;:::o;34406:182::-;34546:34;34542:1;34534:6;34530:14;34523:58;34406:182;:::o;34594:220::-;34734:34;34730:1;34722:6;34718:14;34711:58;34803:3;34798:2;34790:6;34786:15;34779:28;34594:220;:::o;34820:221::-;34960:34;34956:1;34948:6;34944:14;34937:58;35029:4;35024:2;35016:6;35012:15;35005:29;34820:221;:::o;35047:122::-;35120:24;35138:5;35120:24;:::i;:::-;35113:5;35110:35;35100:63;;35159:1;35156;35149:12;35100:63;35047:122;:::o;35175:116::-;35245:21;35260:5;35245:21;:::i;:::-;35238:5;35235:32;35225:60;;35281:1;35278;35271:12;35225:60;35175:116;:::o;35297:122::-;35370:24;35388:5;35370:24;:::i;:::-;35363:5;35360:35;35350:63;;35409:1;35406;35399:12;35350:63;35297:122;:::o;35425:120::-;35497:23;35514:5;35497:23;:::i;:::-;35490:5;35487:34;35477:62;;35535:1;35532;35525:12;35477:62;35425:120;:::o;35551:122::-;35624:24;35642:5;35624:24;:::i;:::-;35617:5;35614:35;35604:63;;35663:1;35660;35653:12;35604:63;35551:122;:::o

Swarm Source

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