ETH Price: $3,460.22 (-1.74%)
Gas: 3 Gwei

Token

Meme Captainz (MCZ)
 

Overview

Max Total Supply

103 MCZ

Holders

59

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 MCZ
0xdecef4a552833e1077395a3039659a8259908fbe
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:
MemeCaptainz

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-07
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 0x80 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: contracts/DigiDaigakuMan.sol





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

        return account.code.length > 0;
    }

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

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

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

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

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

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

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

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

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

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

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}
pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}
pragma solidity ^0.8.13;

abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (subscribe) {
                operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    operatorFilterRegistry.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (
                !(
                    operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
                        && operatorFilterRegistry.isOperatorAllowed(address(this), from)
                )
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}


pragma solidity ^0.8.13;

abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}




pragma solidity >=0.8.9 <0.9.0;

contract MemeCaptainz is ERC721A, DefaultOperatorFilterer, Ownable, ReentrancyGuard {
    using Address for address;
    using Strings for uint;
    
    string  public baseTokenURI = "ipfs://bafybeifn5b6qbzlk6ohl3dyflbl4ujuue7qz4ar5p5iqn3xhddt65g76cq/";
    uint256 public MAX_CAPTAINZ = 6969;
    uint256 public MAX_FREE_SUPPLY = 6969;
    uint256 public MAX_PER_TX = 25;
    uint256 public PRICE = 0.0035 ether;
    uint256 public MAX_FREE_PER_WALLET = 1;
    bool public status = false;

    mapping(address => uint256) public alreadyFreeMinted;

    constructor() ERC721A("Meme Captainz", "MCZ") {}

    function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner {
        require(totalSupply() + _mintAmount <= MAX_CAPTAINZ, "Max supply exceeded!");
        _safeMint(_receiver, _mintAmount);
    }


    function mint(uint256 amount) external payable
    {
		require(amount <= MAX_PER_TX,"Maximum of 25 MemeCaptainzs per txn!");
		require(_totalMinted() + amount <= MAX_CAPTAINZ,"No MemeCaptainz lefts!");
        require(status, "Not start yet.");
        uint payForCount = amount;
        uint minted = alreadyFreeMinted[msg.sender];
        if(minted < MAX_FREE_PER_WALLET && _totalMinted() < MAX_FREE_SUPPLY) {
            uint remainingFreeMints = MAX_FREE_PER_WALLET - minted;
            if(amount > remainingFreeMints) {
                payForCount = amount - remainingFreeMints;
            }
            else {
                payForCount = 0;
            }
        }
		require(
			msg.value >= payForCount * PRICE,
			'Ether value sent is not sufficient'
		);
    	alreadyFreeMinted[msg.sender] += amount;
        _safeMint(msg.sender, amount);
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }
    
    function setBaseURI(string memory baseURI) public onlyOwner
    {
        baseTokenURI = baseURI;
    }

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

    function withdraw() public onlyOwner nonReentrant {
        (bool os, ) = payable(owner()).call{value: address(this).balance}('');
        require(os);
    }

    function tokenURI(uint tokenId)
		public
		view
		override
		returns (string memory)
	{
        require(_exists(tokenId), "ERC721Metadata");

        return bytes(_baseURI()).length > 0 
            ? string(abi.encodePacked(_baseURI(), tokenId.toString(), ".json"))
            : baseTokenURI;
	}

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


    function setPublicMint(bool _status) external onlyOwner
    {
        status = _status;
    }

    function setPrice(uint256 _price) external onlyOwner
    {
        PRICE = _price;
    }

    function setMaxLimitPerTransaction(uint256 _limit) external onlyOwner
    {
        MAX_PER_TX = _limit;
    }

    function setLimitFreeMintPerWallet(uint256 _limit) external onlyOwner
    {
        MAX_FREE_PER_WALLET = _limit;
    }

    function setMaxFreeAmount(uint256 _amount) external onlyOwner
    {
        MAX_FREE_SUPPLY = _amount;
    }

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

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

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_CAPTAINZ","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"alreadyFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setLimitFreeMintPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxLimitPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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"}]

60806040526040518060800160405280604381526020016200435160439139600a90816200002e9190620006aa565b50611b39600b55611b39600c556019600d55660c6f3b40b6c000600e556001600f556000601060006101000a81548160ff0219169083151502179055503480156200007857600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600d81526020017f4d656d65204361707461696e7a000000000000000000000000000000000000008152506040518060400160405280600381526020017f4d435a000000000000000000000000000000000000000000000000000000000081525081600290816200010d9190620006aa565b5080600390816200011f9190620006aa565b50620001306200035d60201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200032d578015620001f3576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001b9929190620007d6565b600060405180830381600087803b158015620001d457600080fd5b505af1158015620001e9573d6000803e3d6000fd5b505050506200032c565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002ad576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b815260040162000273929190620007d6565b600060405180830381600087803b1580156200028e57600080fd5b505af1158015620002a3573d6000803e3d6000fd5b505050506200032b565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002f6919062000803565b600060405180830381600087803b1580156200031157600080fd5b505af115801562000326573d6000803e3d6000fd5b505050505b5b5b50506200034f620003436200036260201b60201c565b6200036a60201b60201c565b600160098190555062000820565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004b257607f821691505b602082108103620004c857620004c76200046a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005327fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004f3565b6200053e8683620004f3565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200058b620005856200057f8462000556565b62000560565b62000556565b9050919050565b6000819050919050565b620005a7836200056a565b620005bf620005b68262000592565b84845462000500565b825550505050565b600090565b620005d6620005c7565b620005e38184846200059c565b505050565b5b818110156200060b57620005ff600082620005cc565b600181019050620005e9565b5050565b601f8211156200065a576200062481620004ce565b6200062f84620004e3565b810160208510156200063f578190505b620006576200064e85620004e3565b830182620005e8565b50505b505050565b600082821c905092915050565b60006200067f600019846008026200065f565b1980831691505092915050565b60006200069a83836200066c565b9150826002028217905092915050565b620006b58262000430565b67ffffffffffffffff811115620006d157620006d06200043b565b5b620006dd825462000499565b620006ea8282856200060f565b600060209050601f8311600181146200072257600084156200070d578287015190505b6200071985826200068c565b86555062000789565b601f1984166200073286620004ce565b60005b828110156200075c5784890151825560018201915060208501945060208101905062000735565b868310156200077c578489015162000778601f8916826200066c565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007be8262000791565b9050919050565b620007d081620007b1565b82525050565b6000604082019050620007ed6000830185620007c5565b620007fc6020830184620007c5565b9392505050565b60006020820190506200081a6000830184620007c5565b92915050565b613b2180620008306000396000f3fe6080604052600436106102045760003560e01c8063715018a611610118578063b88d4fde116100a0578063e19979f51161006f578063e19979f514610746578063e985e9c51461076f578063efbd73f4146107ac578063f2fde38b146107d5578063f43a22dc146107fe57610204565b8063b88d4fde14610678578063c87b56dd146106a1578063d547cfb7146106de578063dc33e6811461070957610204565b806395d89b41116100e757806395d89b41146105b457806398710d1e146105df5780639e9fcffc1461060a578063a0712d6814610633578063a22cb4651461064f57610204565b8063715018a61461051e5780638d859f3e146105355780638da5cb5b1461056057806391b7f5ed1461058b57610204565b80631175567f1161019b5780633ccfd60b1161016a5780633ccfd60b1461043b57806342842e0e1461045257806355f804b31461047b5780636352211e146104a457806370a08231146104e157610204565b80631175567f1461039157806318160ddd146103bc578063200d2ed2146103e757806323b872dd1461041257610204565b8063095ea7b3116101d7578063095ea7b3146102d95780630c23bb3f146103025780630cabd4f31461032b5780630e2d56cf1461036857610204565b806301ffc9a71461020957806302ddb65b1461024657806306fdde0314610271578063081812fc1461029c575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906128bb565b610829565b60405161023d9190612903565b60405180910390f35b34801561025257600080fd5b5061025b6108bb565b6040516102689190612937565b60405180910390f35b34801561027d57600080fd5b506102866108c1565b60405161029391906129eb565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be9190612a39565b610953565b6040516102d09190612aa7565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb9190612aee565b6109d2565b005b34801561030e57600080fd5b5061032960048036038101906103249190612a39565b610b16565b005b34801561033757600080fd5b50610352600480360381019061034d9190612b2e565b610b28565b60405161035f9190612937565b60405180910390f35b34801561037457600080fd5b5061038f600480360381019061038a9190612b87565b610b40565b005b34801561039d57600080fd5b506103a6610b65565b6040516103b39190612937565b60405180910390f35b3480156103c857600080fd5b506103d1610b6b565b6040516103de9190612937565b60405180910390f35b3480156103f357600080fd5b506103fc610b82565b6040516104099190612903565b60405180910390f35b34801561041e57600080fd5b5061043960048036038101906104349190612bb4565b610b95565b005b34801561044757600080fd5b50610450610d77565b005b34801561045e57600080fd5b5061047960048036038101906104749190612bb4565b610e54565b005b34801561048757600080fd5b506104a2600480360381019061049d9190612d3c565b611036565b005b3480156104b057600080fd5b506104cb60048036038101906104c69190612a39565b611051565b6040516104d89190612aa7565b60405180910390f35b3480156104ed57600080fd5b5061050860048036038101906105039190612b2e565b611063565b6040516105159190612937565b60405180910390f35b34801561052a57600080fd5b5061053361111b565b005b34801561054157600080fd5b5061054a61112f565b6040516105579190612937565b60405180910390f35b34801561056c57600080fd5b50610575611135565b6040516105829190612aa7565b60405180910390f35b34801561059757600080fd5b506105b260048036038101906105ad9190612a39565b61115f565b005b3480156105c057600080fd5b506105c9611171565b6040516105d691906129eb565b60405180910390f35b3480156105eb57600080fd5b506105f4611203565b6040516106019190612937565b60405180910390f35b34801561061657600080fd5b50610631600480360381019061062c9190612a39565b611209565b005b61064d60048036038101906106489190612a39565b61121b565b005b34801561065b57600080fd5b5061067660048036038101906106719190612d85565b611456565b005b34801561068457600080fd5b5061069f600480360381019061069a9190612e66565b6115cd565b005b3480156106ad57600080fd5b506106c860048036038101906106c39190612a39565b6117b2565b6040516106d591906129eb565b60405180910390f35b3480156106ea57600080fd5b506106f36118d5565b60405161070091906129eb565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b9190612b2e565b611963565b60405161073d9190612937565b60405180910390f35b34801561075257600080fd5b5061076d60048036038101906107689190612a39565b611975565b005b34801561077b57600080fd5b5061079660048036038101906107919190612ee9565b611987565b6040516107a39190612903565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce9190612f29565b611a1b565b005b3480156107e157600080fd5b506107fc60048036038101906107f79190612b2e565b611a88565b005b34801561080a57600080fd5b50610813611b0b565b6040516108209190612937565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108b45750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600c5481565b6060600280546108d090612f98565b80601f01602080910402602001604051908101604052809291908181526020018280546108fc90612f98565b80156109495780601f1061091e57610100808354040283529160200191610949565b820191906000526020600020905b81548152906001019060200180831161092c57829003601f168201915b5050505050905090565b600061095e82611b11565b610994576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109dd82611051565b90508073ffffffffffffffffffffffffffffffffffffffff166109fe611b70565b73ffffffffffffffffffffffffffffffffffffffff1614610a6157610a2a81610a25611b70565b611987565b610a60576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610b1e611b78565b80600c8190555050565b60116020528060005260406000206000915090505481565b610b48611b78565b80601060006101000a81548160ff02191690831515021790555050565b600b5481565b6000610b75611bf6565b6001546000540303905090565b601060009054906101000a900460ff1681565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610d65573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c0757610c02848484611bfb565b610d71565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610c50929190612fc9565b602060405180830381865afa158015610c6d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c919190613007565b8015610d2357506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610ce1929190612fc9565b602060405180830381865afa158015610cfe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d229190613007565b5b610d6457336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610d5b9190612aa7565b60405180910390fd5b5b610d70848484611bfb565b5b50505050565b610d7f611b78565b600260095403610dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbb90613080565b60405180910390fd5b60026009819055506000610dd6611135565b73ffffffffffffffffffffffffffffffffffffffff1647604051610df9906130d1565b60006040518083038185875af1925050503d8060008114610e36576040519150601f19603f3d011682016040523d82523d6000602084013e610e3b565b606091505b5050905080610e4957600080fd5b506001600981905550565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611024573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ec657610ec1848484611f1d565b611030565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610f0f929190612fc9565b602060405180830381865afa158015610f2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f509190613007565b8015610fe257506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610fa0929190612fc9565b602060405180830381865afa158015610fbd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe19190613007565b5b61102357336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161101a9190612aa7565b60405180910390fd5b5b61102f848484611f1d565b5b50505050565b61103e611b78565b80600a908161104d9190613292565b5050565b600061105c82611f3d565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110ca576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611123611b78565b61112d6000612009565b565b600e5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611167611b78565b80600e8190555050565b60606003805461118090612f98565b80601f01602080910402602001604051908101604052809291908181526020018280546111ac90612f98565b80156111f95780601f106111ce576101008083540402835291602001916111f9565b820191906000526020600020905b8154815290600101906020018083116111dc57829003601f168201915b5050505050905090565b600f5481565b611211611b78565b80600d8190555050565b600d54811115611260576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611257906133d6565b60405180910390fd5b600b548161126c6120cf565b6112769190613425565b11156112b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ae906134c7565b60405180910390fd5b601060009054906101000a900460ff16611306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fd90613533565b60405180910390fd5b60008190506000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600f54811080156113685750600c546113666120cf565b105b156113a157600081600f5461137d9190613553565b90508084111561139a5780846113939190613553565b925061139f565b600092505b505b600e54826113af9190613587565b3410156113f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e890613653565b60405180910390fd5b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114409190613425565b9250508190555061145133846120e2565b505050565b61145e611b70565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114c2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114cf611b70565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661157c611b70565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115c19190612903565b60405180910390a35050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561179e573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116405761163b85858585612100565b6117ab565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611689929190612fc9565b602060405180830381865afa1580156116a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116ca9190613007565b801561175c57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161171a929190612fc9565b602060405180830381865afa158015611737573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061175b9190613007565b5b61179d57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016117949190612aa7565b60405180910390fd5b5b6117aa85858585612100565b5b5050505050565b60606117bd82611b11565b6117fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f3906136bf565b60405180910390fd5b6000611806612173565b511161189c57600a805461181990612f98565b80601f016020809104026020016040519081016040528092919081815260200182805461184590612f98565b80156118925780601f1061186757610100808354040283529160200191611892565b820191906000526020600020905b81548152906001019060200180831161187557829003601f168201915b50505050506118ce565b6118a4612173565b6118ad83612205565b6040516020016118be929190613767565b6040516020818303038152906040525b9050919050565b600a80546118e290612f98565b80601f016020809104026020016040519081016040528092919081815260200182805461190e90612f98565b801561195b5780601f106119305761010080835404028352916020019161195b565b820191906000526020600020905b81548152906001019060200180831161193e57829003601f168201915b505050505081565b600061196e82612365565b9050919050565b61197d611b78565b80600f8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a23611b78565b600b5482611a2f610b6b565b611a399190613425565b1115611a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a71906137e2565b60405180910390fd5b611a8481836120e2565b5050565b611a90611b78565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af690613874565b60405180910390fd5b611b0881612009565b50565b600d5481565b600081611b1c611bf6565b11158015611b2b575060005482105b8015611b69575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611b806123bc565b73ffffffffffffffffffffffffffffffffffffffff16611b9e611135565b73ffffffffffffffffffffffffffffffffffffffff1614611bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611beb906138e0565b60405180910390fd5b565b600090565b6000611c0682611f3d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c6d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611c79846123c4565b91509150611c8f8187611c8a611b70565b6123eb565b611cdb57611ca486611c9f611b70565b611987565b611cda576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611d41576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d4e868686600161242f565b8015611d5957600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611e2785611e03888887612435565b7c02000000000000000000000000000000000000000000000000000000001761245d565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611ead5760006001850190506000600460008381526020019081526020016000205403611eab576000548114611eaa578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f158686866001612488565b505050505050565b611f38838383604051806020016040528060008152506115cd565b505050565b60008082905080611f4c611bf6565b11611fd257600054811015611fd15760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611fcf575b60008103611fc5576004600083600190039350838152602001908152602001600020549050611f9b565b8092505050612004565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006120d9611bf6565b60005403905090565b6120fc82826040518060200160405280600081525061248e565b5050565b61210b848484610b95565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461216d576121368484848461252b565b61216c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600a805461218290612f98565b80601f01602080910402602001604051908101604052809291908181526020018280546121ae90612f98565b80156121fb5780601f106121d0576101008083540402835291602001916121fb565b820191906000526020600020905b8154815290600101906020018083116121de57829003601f168201915b5050505050905090565b60606000820361224c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612360565b600082905060005b6000821461227e57808061226790613900565b915050600a826122779190613977565b9150612254565b60008167ffffffffffffffff81111561229a57612299612c11565b5b6040519080825280601f01601f1916602001820160405280156122cc5781602001600182028036833780820191505090505b5090505b60008514612359576001826122e59190613553565b9150600a856122f491906139a8565b60306123009190613425565b60f81b818381518110612316576123156139d9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123529190613977565b94506122d0565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861244c86868461267b565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6124988383612684565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461252657600080549050600083820390505b6124d8600086838060010194508661252b565b61250e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106124c557816000541461252357600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612551611b70565b8786866040518563ffffffff1660e01b81526004016125739493929190613a5d565b6020604051808303816000875af19250505080156125af57506040513d601f19601f820116820180604052508101906125ac9190613abe565b60015b612628573d80600081146125df576040519150601f19603f3d011682016040523d82523d6000602084013e6125e4565b606091505b506000815103612620576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b600080549050600082036126c4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126d1600084838561242f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612748836127396000866000612435565b6127428561283f565b1761245d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146127e957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506127ae565b5060008203612824576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061283a6000848385612488565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61289881612863565b81146128a357600080fd5b50565b6000813590506128b58161288f565b92915050565b6000602082840312156128d1576128d0612859565b5b60006128df848285016128a6565b91505092915050565b60008115159050919050565b6128fd816128e8565b82525050565b600060208201905061291860008301846128f4565b92915050565b6000819050919050565b6129318161291e565b82525050565b600060208201905061294c6000830184612928565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561298c578082015181840152602081019050612971565b8381111561299b576000848401525b50505050565b6000601f19601f8301169050919050565b60006129bd82612952565b6129c7818561295d565b93506129d781856020860161296e565b6129e0816129a1565b840191505092915050565b60006020820190508181036000830152612a0581846129b2565b905092915050565b612a168161291e565b8114612a2157600080fd5b50565b600081359050612a3381612a0d565b92915050565b600060208284031215612a4f57612a4e612859565b5b6000612a5d84828501612a24565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a9182612a66565b9050919050565b612aa181612a86565b82525050565b6000602082019050612abc6000830184612a98565b92915050565b612acb81612a86565b8114612ad657600080fd5b50565b600081359050612ae881612ac2565b92915050565b60008060408385031215612b0557612b04612859565b5b6000612b1385828601612ad9565b9250506020612b2485828601612a24565b9150509250929050565b600060208284031215612b4457612b43612859565b5b6000612b5284828501612ad9565b91505092915050565b612b64816128e8565b8114612b6f57600080fd5b50565b600081359050612b8181612b5b565b92915050565b600060208284031215612b9d57612b9c612859565b5b6000612bab84828501612b72565b91505092915050565b600080600060608486031215612bcd57612bcc612859565b5b6000612bdb86828701612ad9565b9350506020612bec86828701612ad9565b9250506040612bfd86828701612a24565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c49826129a1565b810181811067ffffffffffffffff82111715612c6857612c67612c11565b5b80604052505050565b6000612c7b61284f565b9050612c878282612c40565b919050565b600067ffffffffffffffff821115612ca757612ca6612c11565b5b612cb0826129a1565b9050602081019050919050565b82818337600083830152505050565b6000612cdf612cda84612c8c565b612c71565b905082815260208101848484011115612cfb57612cfa612c0c565b5b612d06848285612cbd565b509392505050565b600082601f830112612d2357612d22612c07565b5b8135612d33848260208601612ccc565b91505092915050565b600060208284031215612d5257612d51612859565b5b600082013567ffffffffffffffff811115612d7057612d6f61285e565b5b612d7c84828501612d0e565b91505092915050565b60008060408385031215612d9c57612d9b612859565b5b6000612daa85828601612ad9565b9250506020612dbb85828601612b72565b9150509250929050565b600067ffffffffffffffff821115612de057612ddf612c11565b5b612de9826129a1565b9050602081019050919050565b6000612e09612e0484612dc5565b612c71565b905082815260208101848484011115612e2557612e24612c0c565b5b612e30848285612cbd565b509392505050565b600082601f830112612e4d57612e4c612c07565b5b8135612e5d848260208601612df6565b91505092915050565b60008060008060808587031215612e8057612e7f612859565b5b6000612e8e87828801612ad9565b9450506020612e9f87828801612ad9565b9350506040612eb087828801612a24565b925050606085013567ffffffffffffffff811115612ed157612ed061285e565b5b612edd87828801612e38565b91505092959194509250565b60008060408385031215612f0057612eff612859565b5b6000612f0e85828601612ad9565b9250506020612f1f85828601612ad9565b9150509250929050565b60008060408385031215612f4057612f3f612859565b5b6000612f4e85828601612a24565b9250506020612f5f85828601612ad9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612fb057607f821691505b602082108103612fc357612fc2612f69565b5b50919050565b6000604082019050612fde6000830185612a98565b612feb6020830184612a98565b9392505050565b60008151905061300181612b5b565b92915050565b60006020828403121561301d5761301c612859565b5b600061302b84828501612ff2565b91505092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061306a601f8361295d565b915061307582613034565b602082019050919050565b600060208201905081810360008301526130998161305d565b9050919050565b600081905092915050565b50565b60006130bb6000836130a0565b91506130c6826130ab565b600082019050919050565b60006130dc826130ae565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026131487fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261310b565b613152868361310b565b95508019841693508086168417925050509392505050565b6000819050919050565b600061318f61318a6131858461291e565b61316a565b61291e565b9050919050565b6000819050919050565b6131a983613174565b6131bd6131b582613196565b848454613118565b825550505050565b600090565b6131d26131c5565b6131dd8184846131a0565b505050565b5b81811015613201576131f66000826131ca565b6001810190506131e3565b5050565b601f82111561324657613217816130e6565b613220846130fb565b8101602085101561322f578190505b61324361323b856130fb565b8301826131e2565b50505b505050565b600082821c905092915050565b60006132696000198460080261324b565b1980831691505092915050565b60006132828383613258565b9150826002028217905092915050565b61329b82612952565b67ffffffffffffffff8111156132b4576132b3612c11565b5b6132be8254612f98565b6132c9828285613205565b600060209050601f8311600181146132fc57600084156132ea578287015190505b6132f48582613276565b86555061335c565b601f19841661330a866130e6565b60005b828110156133325784890151825560018201915060208501945060208101905061330d565b8683101561334f578489015161334b601f891682613258565b8355505b6001600288020188555050505b505050505050565b7f4d6178696d756d206f66203235204d656d654361707461696e7a73207065722060008201527f74786e2100000000000000000000000000000000000000000000000000000000602082015250565b60006133c060248361295d565b91506133cb82613364565b604082019050919050565b600060208201905081810360008301526133ef816133b3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006134308261291e565b915061343b8361291e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134705761346f6133f6565b5b828201905092915050565b7f4e6f204d656d654361707461696e7a206c656674732100000000000000000000600082015250565b60006134b160168361295d565b91506134bc8261347b565b602082019050919050565b600060208201905081810360008301526134e0816134a4565b9050919050565b7f4e6f74207374617274207965742e000000000000000000000000000000000000600082015250565b600061351d600e8361295d565b9150613528826134e7565b602082019050919050565b6000602082019050818103600083015261354c81613510565b9050919050565b600061355e8261291e565b91506135698361291e565b92508282101561357c5761357b6133f6565b5b828203905092915050565b60006135928261291e565b915061359d8361291e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135d6576135d56133f6565b5b828202905092915050565b7f45746865722076616c75652073656e74206973206e6f7420737566666963696560008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b600061363d60228361295d565b9150613648826135e1565b604082019050919050565b6000602082019050818103600083015261366c81613630565b9050919050565b7f4552433732314d65746164617461000000000000000000000000000000000000600082015250565b60006136a9600e8361295d565b91506136b482613673565b602082019050919050565b600060208201905081810360008301526136d88161369c565b9050919050565b600081905092915050565b60006136f582612952565b6136ff81856136df565b935061370f81856020860161296e565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006137516005836136df565b915061375c8261371b565b600582019050919050565b600061377382856136ea565b915061377f82846136ea565b915061378a82613744565b91508190509392505050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006137cc60148361295d565b91506137d782613796565b602082019050919050565b600060208201905081810360008301526137fb816137bf565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061385e60268361295d565b915061386982613802565b604082019050919050565b6000602082019050818103600083015261388d81613851565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006138ca60208361295d565b91506138d582613894565b602082019050919050565b600060208201905081810360008301526138f9816138bd565b9050919050565b600061390b8261291e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361393d5761393c6133f6565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006139828261291e565b915061398d8361291e565b92508261399d5761399c613948565b5b828204905092915050565b60006139b38261291e565b91506139be8361291e565b9250826139ce576139cd613948565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000613a2f82613a08565b613a398185613a13565b9350613a4981856020860161296e565b613a52816129a1565b840191505092915050565b6000608082019050613a726000830187612a98565b613a7f6020830186612a98565b613a8c6040830185612928565b8181036060830152613a9e8184613a24565b905095945050505050565b600081519050613ab88161288f565b92915050565b600060208284031215613ad457613ad3612859565b5b6000613ae284828501613aa9565b9150509291505056fea2646970667358221220e20300698d07b33af4f7e0a906391b0474aad19265fc659b60d2e26f1e02ec0264736f6c634300080f0033697066733a2f2f62616679626569666e35623671627a6c6b366f686c336479666c626c34756a75756537717a34617235703569716e337868646474363567373663712f

Deployed Bytecode

0x6080604052600436106102045760003560e01c8063715018a611610118578063b88d4fde116100a0578063e19979f51161006f578063e19979f514610746578063e985e9c51461076f578063efbd73f4146107ac578063f2fde38b146107d5578063f43a22dc146107fe57610204565b8063b88d4fde14610678578063c87b56dd146106a1578063d547cfb7146106de578063dc33e6811461070957610204565b806395d89b41116100e757806395d89b41146105b457806398710d1e146105df5780639e9fcffc1461060a578063a0712d6814610633578063a22cb4651461064f57610204565b8063715018a61461051e5780638d859f3e146105355780638da5cb5b1461056057806391b7f5ed1461058b57610204565b80631175567f1161019b5780633ccfd60b1161016a5780633ccfd60b1461043b57806342842e0e1461045257806355f804b31461047b5780636352211e146104a457806370a08231146104e157610204565b80631175567f1461039157806318160ddd146103bc578063200d2ed2146103e757806323b872dd1461041257610204565b8063095ea7b3116101d7578063095ea7b3146102d95780630c23bb3f146103025780630cabd4f31461032b5780630e2d56cf1461036857610204565b806301ffc9a71461020957806302ddb65b1461024657806306fdde0314610271578063081812fc1461029c575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906128bb565b610829565b60405161023d9190612903565b60405180910390f35b34801561025257600080fd5b5061025b6108bb565b6040516102689190612937565b60405180910390f35b34801561027d57600080fd5b506102866108c1565b60405161029391906129eb565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be9190612a39565b610953565b6040516102d09190612aa7565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb9190612aee565b6109d2565b005b34801561030e57600080fd5b5061032960048036038101906103249190612a39565b610b16565b005b34801561033757600080fd5b50610352600480360381019061034d9190612b2e565b610b28565b60405161035f9190612937565b60405180910390f35b34801561037457600080fd5b5061038f600480360381019061038a9190612b87565b610b40565b005b34801561039d57600080fd5b506103a6610b65565b6040516103b39190612937565b60405180910390f35b3480156103c857600080fd5b506103d1610b6b565b6040516103de9190612937565b60405180910390f35b3480156103f357600080fd5b506103fc610b82565b6040516104099190612903565b60405180910390f35b34801561041e57600080fd5b5061043960048036038101906104349190612bb4565b610b95565b005b34801561044757600080fd5b50610450610d77565b005b34801561045e57600080fd5b5061047960048036038101906104749190612bb4565b610e54565b005b34801561048757600080fd5b506104a2600480360381019061049d9190612d3c565b611036565b005b3480156104b057600080fd5b506104cb60048036038101906104c69190612a39565b611051565b6040516104d89190612aa7565b60405180910390f35b3480156104ed57600080fd5b5061050860048036038101906105039190612b2e565b611063565b6040516105159190612937565b60405180910390f35b34801561052a57600080fd5b5061053361111b565b005b34801561054157600080fd5b5061054a61112f565b6040516105579190612937565b60405180910390f35b34801561056c57600080fd5b50610575611135565b6040516105829190612aa7565b60405180910390f35b34801561059757600080fd5b506105b260048036038101906105ad9190612a39565b61115f565b005b3480156105c057600080fd5b506105c9611171565b6040516105d691906129eb565b60405180910390f35b3480156105eb57600080fd5b506105f4611203565b6040516106019190612937565b60405180910390f35b34801561061657600080fd5b50610631600480360381019061062c9190612a39565b611209565b005b61064d60048036038101906106489190612a39565b61121b565b005b34801561065b57600080fd5b5061067660048036038101906106719190612d85565b611456565b005b34801561068457600080fd5b5061069f600480360381019061069a9190612e66565b6115cd565b005b3480156106ad57600080fd5b506106c860048036038101906106c39190612a39565b6117b2565b6040516106d591906129eb565b60405180910390f35b3480156106ea57600080fd5b506106f36118d5565b60405161070091906129eb565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b9190612b2e565b611963565b60405161073d9190612937565b60405180910390f35b34801561075257600080fd5b5061076d60048036038101906107689190612a39565b611975565b005b34801561077b57600080fd5b5061079660048036038101906107919190612ee9565b611987565b6040516107a39190612903565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce9190612f29565b611a1b565b005b3480156107e157600080fd5b506107fc60048036038101906107f79190612b2e565b611a88565b005b34801561080a57600080fd5b50610813611b0b565b6040516108209190612937565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108b45750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600c5481565b6060600280546108d090612f98565b80601f01602080910402602001604051908101604052809291908181526020018280546108fc90612f98565b80156109495780601f1061091e57610100808354040283529160200191610949565b820191906000526020600020905b81548152906001019060200180831161092c57829003601f168201915b5050505050905090565b600061095e82611b11565b610994576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109dd82611051565b90508073ffffffffffffffffffffffffffffffffffffffff166109fe611b70565b73ffffffffffffffffffffffffffffffffffffffff1614610a6157610a2a81610a25611b70565b611987565b610a60576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610b1e611b78565b80600c8190555050565b60116020528060005260406000206000915090505481565b610b48611b78565b80601060006101000a81548160ff02191690831515021790555050565b600b5481565b6000610b75611bf6565b6001546000540303905090565b601060009054906101000a900460ff1681565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610d65573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c0757610c02848484611bfb565b610d71565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610c50929190612fc9565b602060405180830381865afa158015610c6d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c919190613007565b8015610d2357506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610ce1929190612fc9565b602060405180830381865afa158015610cfe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d229190613007565b5b610d6457336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610d5b9190612aa7565b60405180910390fd5b5b610d70848484611bfb565b5b50505050565b610d7f611b78565b600260095403610dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbb90613080565b60405180910390fd5b60026009819055506000610dd6611135565b73ffffffffffffffffffffffffffffffffffffffff1647604051610df9906130d1565b60006040518083038185875af1925050503d8060008114610e36576040519150601f19603f3d011682016040523d82523d6000602084013e610e3b565b606091505b5050905080610e4957600080fd5b506001600981905550565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611024573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ec657610ec1848484611f1d565b611030565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610f0f929190612fc9565b602060405180830381865afa158015610f2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f509190613007565b8015610fe257506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610fa0929190612fc9565b602060405180830381865afa158015610fbd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe19190613007565b5b61102357336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161101a9190612aa7565b60405180910390fd5b5b61102f848484611f1d565b5b50505050565b61103e611b78565b80600a908161104d9190613292565b5050565b600061105c82611f3d565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110ca576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611123611b78565b61112d6000612009565b565b600e5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611167611b78565b80600e8190555050565b60606003805461118090612f98565b80601f01602080910402602001604051908101604052809291908181526020018280546111ac90612f98565b80156111f95780601f106111ce576101008083540402835291602001916111f9565b820191906000526020600020905b8154815290600101906020018083116111dc57829003601f168201915b5050505050905090565b600f5481565b611211611b78565b80600d8190555050565b600d54811115611260576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611257906133d6565b60405180910390fd5b600b548161126c6120cf565b6112769190613425565b11156112b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ae906134c7565b60405180910390fd5b601060009054906101000a900460ff16611306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fd90613533565b60405180910390fd5b60008190506000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600f54811080156113685750600c546113666120cf565b105b156113a157600081600f5461137d9190613553565b90508084111561139a5780846113939190613553565b925061139f565b600092505b505b600e54826113af9190613587565b3410156113f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e890613653565b60405180910390fd5b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114409190613425565b9250508190555061145133846120e2565b505050565b61145e611b70565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114c2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114cf611b70565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661157c611b70565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115c19190612903565b60405180910390a35050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561179e573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116405761163b85858585612100565b6117ab565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611689929190612fc9565b602060405180830381865afa1580156116a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116ca9190613007565b801561175c57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161171a929190612fc9565b602060405180830381865afa158015611737573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061175b9190613007565b5b61179d57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016117949190612aa7565b60405180910390fd5b5b6117aa85858585612100565b5b5050505050565b60606117bd82611b11565b6117fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f3906136bf565b60405180910390fd5b6000611806612173565b511161189c57600a805461181990612f98565b80601f016020809104026020016040519081016040528092919081815260200182805461184590612f98565b80156118925780601f1061186757610100808354040283529160200191611892565b820191906000526020600020905b81548152906001019060200180831161187557829003601f168201915b50505050506118ce565b6118a4612173565b6118ad83612205565b6040516020016118be929190613767565b6040516020818303038152906040525b9050919050565b600a80546118e290612f98565b80601f016020809104026020016040519081016040528092919081815260200182805461190e90612f98565b801561195b5780601f106119305761010080835404028352916020019161195b565b820191906000526020600020905b81548152906001019060200180831161193e57829003601f168201915b505050505081565b600061196e82612365565b9050919050565b61197d611b78565b80600f8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a23611b78565b600b5482611a2f610b6b565b611a399190613425565b1115611a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a71906137e2565b60405180910390fd5b611a8481836120e2565b5050565b611a90611b78565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af690613874565b60405180910390fd5b611b0881612009565b50565b600d5481565b600081611b1c611bf6565b11158015611b2b575060005482105b8015611b69575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611b806123bc565b73ffffffffffffffffffffffffffffffffffffffff16611b9e611135565b73ffffffffffffffffffffffffffffffffffffffff1614611bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611beb906138e0565b60405180910390fd5b565b600090565b6000611c0682611f3d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c6d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611c79846123c4565b91509150611c8f8187611c8a611b70565b6123eb565b611cdb57611ca486611c9f611b70565b611987565b611cda576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611d41576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d4e868686600161242f565b8015611d5957600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611e2785611e03888887612435565b7c02000000000000000000000000000000000000000000000000000000001761245d565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611ead5760006001850190506000600460008381526020019081526020016000205403611eab576000548114611eaa578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f158686866001612488565b505050505050565b611f38838383604051806020016040528060008152506115cd565b505050565b60008082905080611f4c611bf6565b11611fd257600054811015611fd15760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611fcf575b60008103611fc5576004600083600190039350838152602001908152602001600020549050611f9b565b8092505050612004565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006120d9611bf6565b60005403905090565b6120fc82826040518060200160405280600081525061248e565b5050565b61210b848484610b95565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461216d576121368484848461252b565b61216c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600a805461218290612f98565b80601f01602080910402602001604051908101604052809291908181526020018280546121ae90612f98565b80156121fb5780601f106121d0576101008083540402835291602001916121fb565b820191906000526020600020905b8154815290600101906020018083116121de57829003601f168201915b5050505050905090565b60606000820361224c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612360565b600082905060005b6000821461227e57808061226790613900565b915050600a826122779190613977565b9150612254565b60008167ffffffffffffffff81111561229a57612299612c11565b5b6040519080825280601f01601f1916602001820160405280156122cc5781602001600182028036833780820191505090505b5090505b60008514612359576001826122e59190613553565b9150600a856122f491906139a8565b60306123009190613425565b60f81b818381518110612316576123156139d9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123529190613977565b94506122d0565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861244c86868461267b565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6124988383612684565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461252657600080549050600083820390505b6124d8600086838060010194508661252b565b61250e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106124c557816000541461252357600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612551611b70565b8786866040518563ffffffff1660e01b81526004016125739493929190613a5d565b6020604051808303816000875af19250505080156125af57506040513d601f19601f820116820180604052508101906125ac9190613abe565b60015b612628573d80600081146125df576040519150601f19603f3d011682016040523d82523d6000602084013e6125e4565b606091505b506000815103612620576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b600080549050600082036126c4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126d1600084838561242f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612748836127396000866000612435565b6127428561283f565b1761245d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146127e957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506127ae565b5060008203612824576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061283a6000848385612488565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61289881612863565b81146128a357600080fd5b50565b6000813590506128b58161288f565b92915050565b6000602082840312156128d1576128d0612859565b5b60006128df848285016128a6565b91505092915050565b60008115159050919050565b6128fd816128e8565b82525050565b600060208201905061291860008301846128f4565b92915050565b6000819050919050565b6129318161291e565b82525050565b600060208201905061294c6000830184612928565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561298c578082015181840152602081019050612971565b8381111561299b576000848401525b50505050565b6000601f19601f8301169050919050565b60006129bd82612952565b6129c7818561295d565b93506129d781856020860161296e565b6129e0816129a1565b840191505092915050565b60006020820190508181036000830152612a0581846129b2565b905092915050565b612a168161291e565b8114612a2157600080fd5b50565b600081359050612a3381612a0d565b92915050565b600060208284031215612a4f57612a4e612859565b5b6000612a5d84828501612a24565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a9182612a66565b9050919050565b612aa181612a86565b82525050565b6000602082019050612abc6000830184612a98565b92915050565b612acb81612a86565b8114612ad657600080fd5b50565b600081359050612ae881612ac2565b92915050565b60008060408385031215612b0557612b04612859565b5b6000612b1385828601612ad9565b9250506020612b2485828601612a24565b9150509250929050565b600060208284031215612b4457612b43612859565b5b6000612b5284828501612ad9565b91505092915050565b612b64816128e8565b8114612b6f57600080fd5b50565b600081359050612b8181612b5b565b92915050565b600060208284031215612b9d57612b9c612859565b5b6000612bab84828501612b72565b91505092915050565b600080600060608486031215612bcd57612bcc612859565b5b6000612bdb86828701612ad9565b9350506020612bec86828701612ad9565b9250506040612bfd86828701612a24565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c49826129a1565b810181811067ffffffffffffffff82111715612c6857612c67612c11565b5b80604052505050565b6000612c7b61284f565b9050612c878282612c40565b919050565b600067ffffffffffffffff821115612ca757612ca6612c11565b5b612cb0826129a1565b9050602081019050919050565b82818337600083830152505050565b6000612cdf612cda84612c8c565b612c71565b905082815260208101848484011115612cfb57612cfa612c0c565b5b612d06848285612cbd565b509392505050565b600082601f830112612d2357612d22612c07565b5b8135612d33848260208601612ccc565b91505092915050565b600060208284031215612d5257612d51612859565b5b600082013567ffffffffffffffff811115612d7057612d6f61285e565b5b612d7c84828501612d0e565b91505092915050565b60008060408385031215612d9c57612d9b612859565b5b6000612daa85828601612ad9565b9250506020612dbb85828601612b72565b9150509250929050565b600067ffffffffffffffff821115612de057612ddf612c11565b5b612de9826129a1565b9050602081019050919050565b6000612e09612e0484612dc5565b612c71565b905082815260208101848484011115612e2557612e24612c0c565b5b612e30848285612cbd565b509392505050565b600082601f830112612e4d57612e4c612c07565b5b8135612e5d848260208601612df6565b91505092915050565b60008060008060808587031215612e8057612e7f612859565b5b6000612e8e87828801612ad9565b9450506020612e9f87828801612ad9565b9350506040612eb087828801612a24565b925050606085013567ffffffffffffffff811115612ed157612ed061285e565b5b612edd87828801612e38565b91505092959194509250565b60008060408385031215612f0057612eff612859565b5b6000612f0e85828601612ad9565b9250506020612f1f85828601612ad9565b9150509250929050565b60008060408385031215612f4057612f3f612859565b5b6000612f4e85828601612a24565b9250506020612f5f85828601612ad9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612fb057607f821691505b602082108103612fc357612fc2612f69565b5b50919050565b6000604082019050612fde6000830185612a98565b612feb6020830184612a98565b9392505050565b60008151905061300181612b5b565b92915050565b60006020828403121561301d5761301c612859565b5b600061302b84828501612ff2565b91505092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061306a601f8361295d565b915061307582613034565b602082019050919050565b600060208201905081810360008301526130998161305d565b9050919050565b600081905092915050565b50565b60006130bb6000836130a0565b91506130c6826130ab565b600082019050919050565b60006130dc826130ae565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026131487fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261310b565b613152868361310b565b95508019841693508086168417925050509392505050565b6000819050919050565b600061318f61318a6131858461291e565b61316a565b61291e565b9050919050565b6000819050919050565b6131a983613174565b6131bd6131b582613196565b848454613118565b825550505050565b600090565b6131d26131c5565b6131dd8184846131a0565b505050565b5b81811015613201576131f66000826131ca565b6001810190506131e3565b5050565b601f82111561324657613217816130e6565b613220846130fb565b8101602085101561322f578190505b61324361323b856130fb565b8301826131e2565b50505b505050565b600082821c905092915050565b60006132696000198460080261324b565b1980831691505092915050565b60006132828383613258565b9150826002028217905092915050565b61329b82612952565b67ffffffffffffffff8111156132b4576132b3612c11565b5b6132be8254612f98565b6132c9828285613205565b600060209050601f8311600181146132fc57600084156132ea578287015190505b6132f48582613276565b86555061335c565b601f19841661330a866130e6565b60005b828110156133325784890151825560018201915060208501945060208101905061330d565b8683101561334f578489015161334b601f891682613258565b8355505b6001600288020188555050505b505050505050565b7f4d6178696d756d206f66203235204d656d654361707461696e7a73207065722060008201527f74786e2100000000000000000000000000000000000000000000000000000000602082015250565b60006133c060248361295d565b91506133cb82613364565b604082019050919050565b600060208201905081810360008301526133ef816133b3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006134308261291e565b915061343b8361291e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134705761346f6133f6565b5b828201905092915050565b7f4e6f204d656d654361707461696e7a206c656674732100000000000000000000600082015250565b60006134b160168361295d565b91506134bc8261347b565b602082019050919050565b600060208201905081810360008301526134e0816134a4565b9050919050565b7f4e6f74207374617274207965742e000000000000000000000000000000000000600082015250565b600061351d600e8361295d565b9150613528826134e7565b602082019050919050565b6000602082019050818103600083015261354c81613510565b9050919050565b600061355e8261291e565b91506135698361291e565b92508282101561357c5761357b6133f6565b5b828203905092915050565b60006135928261291e565b915061359d8361291e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135d6576135d56133f6565b5b828202905092915050565b7f45746865722076616c75652073656e74206973206e6f7420737566666963696560008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b600061363d60228361295d565b9150613648826135e1565b604082019050919050565b6000602082019050818103600083015261366c81613630565b9050919050565b7f4552433732314d65746164617461000000000000000000000000000000000000600082015250565b60006136a9600e8361295d565b91506136b482613673565b602082019050919050565b600060208201905081810360008301526136d88161369c565b9050919050565b600081905092915050565b60006136f582612952565b6136ff81856136df565b935061370f81856020860161296e565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006137516005836136df565b915061375c8261371b565b600582019050919050565b600061377382856136ea565b915061377f82846136ea565b915061378a82613744565b91508190509392505050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006137cc60148361295d565b91506137d782613796565b602082019050919050565b600060208201905081810360008301526137fb816137bf565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061385e60268361295d565b915061386982613802565b604082019050919050565b6000602082019050818103600083015261388d81613851565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006138ca60208361295d565b91506138d582613894565b602082019050919050565b600060208201905081810360008301526138f9816138bd565b9050919050565b600061390b8261291e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361393d5761393c6133f6565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006139828261291e565b915061398d8361291e565b92508261399d5761399c613948565b5b828204905092915050565b60006139b38261291e565b91506139be8361291e565b9250826139ce576139cd613948565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000613a2f82613a08565b613a398185613a13565b9350613a4981856020860161296e565b613a52816129a1565b840191505092915050565b6000608082019050613a726000830187612a98565b613a7f6020830186612a98565b613a8c6040830185612928565b8181036060830152613a9e8184613a24565b905095945050505050565b600081519050613ab88161288f565b92915050565b600060208284031215613ad457613ad3612859565b5b6000613ae284828501613aa9565b9150509291505056fea2646970667358221220e20300698d07b33af4f7e0a906391b0474aad19265fc659b60d2e26f1e02ec0264736f6c634300080f0033

Deployed Bytecode Sourcemap

72361:3859:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21225:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72666:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22127:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28610:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28051:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75518:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72869:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75064:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72625:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17878:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72834:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75637:163;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74452:160;;;;;;;;;;;;;:::i;:::-;;75808:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74229:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23520:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19062:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56392:103;;;;;;;;;;;;;:::i;:::-;;72747:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55744:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75168:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22303:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72789:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75267:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73216:880;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29168:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75987:228;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74620:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72519:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74104:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75388:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29633:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72986:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56650:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72710:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21225:639;21310:4;21649:10;21634:25;;:11;:25;;;;:102;;;;21726:10;21711:25;;:11;:25;;;;21634:102;:179;;;;21803:10;21788:25;;:11;:25;;;;21634:179;21614:199;;21225:639;;;:::o;72666:37::-;;;;:::o;22127:100::-;22181:13;22214:5;22207:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22127:100;:::o;28610:218::-;28686:7;28711:16;28719:7;28711;:16::i;:::-;28706:64;;28736:34;;;;;;;;;;;;;;28706:64;28790:15;:24;28806:7;28790:24;;;;;;;;;;;:30;;;;;;;;;;;;28783:37;;28610:218;;;:::o;28051:400::-;28132:13;28148:16;28156:7;28148;:16::i;:::-;28132:32;;28204:5;28181:28;;:19;:17;:19::i;:::-;:28;;;28177:175;;28229:44;28246:5;28253:19;:17;:19::i;:::-;28229:16;:44::i;:::-;28224:128;;28301:35;;;;;;;;;;;;;;28224:128;28177:175;28397:2;28364:15;:24;28380:7;28364:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;28435:7;28431:2;28415:28;;28424:5;28415:28;;;;;;;;;;;;28121:330;28051:400;;:::o;75518:111::-;55630:13;:11;:13::i;:::-;75614:7:::1;75596:15;:25;;;;75518:111:::0;:::o;72869:52::-;;;;;;;;;;;;;;;;;:::o;75064:96::-;55630:13;:11;:13::i;:::-;75145:7:::1;75136:6;;:16;;;;;;;;;;;;;;;;;;75064:96:::0;:::o;72625:34::-;;;;:::o;17878:323::-;17939:7;18167:15;:13;:15::i;:::-;18152:12;;18136:13;;:28;:46;18129:53;;17878:323;:::o;72834:26::-;;;;;;;;;;;;;:::o;75637:163::-;75738:4;71378:1;70192:42;71332:43;;;:47;71328:699;;;71619:10;71611:18;;:4;:18;;;71607:85;;75755:37:::1;75774:4;75780:2;75784:7;75755:18;:37::i;:::-;71670:7:::0;;71607:85;70192:42;71752:40;;;71801:4;71808:10;71752:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;70192:42;71848:40;;;71897:4;71904;71848:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;71752:157;71706:310;;71989:10;71970:30;;;;;;;;;;;:::i;:::-;;;;;;;;71706:310;71328:699;75755:37:::1;75774:4;75780:2;75784:7;75755:18;:37::i;:::-;75637:163:::0;;;;;:::o;74452:160::-;55630:13;:11;:13::i;:::-;1843:1:::1;2441:7;;:19:::0;2433:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1843:1;2574:7;:18;;;;74514:7:::2;74535;:5;:7::i;:::-;74527:21;;74556;74527:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74513:69;;;74601:2;74593:11;;;::::0;::::2;;74502:110;1799:1:::1;2753:7;:22;;;;74452:160::o:0;75808:171::-;75913:4;71378:1;70192:42;71332:43;;;:47;71328:699;;;71619:10;71611:18;;:4;:18;;;71607:85;;75930:41:::1;75953:4;75959:2;75963:7;75930:22;:41::i;:::-;71670:7:::0;;71607:85;70192:42;71752:40;;;71801:4;71808:10;71752:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;70192:42;71848:40;;;71897:4;71904;71848:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;71752:157;71706:310;;71989:10;71970:30;;;;;;;;;;;:::i;:::-;;;;;;;;71706:310;71328:699;75930:41:::1;75953:4;75959:2;75963:7;75930:22;:41::i;:::-;75808:171:::0;;;;;:::o;74229:106::-;55630:13;:11;:13::i;:::-;74320:7:::1;74305:12;:22;;;;;;:::i;:::-;;74229:106:::0;:::o;23520:152::-;23592:7;23635:27;23654:7;23635:18;:27::i;:::-;23612:52;;23520:152;;;:::o;19062:233::-;19134:7;19175:1;19158:19;;:5;:19;;;19154:60;;19186:28;;;;;;;;;;;;;;19154:60;13221:13;19232:18;:25;19251:5;19232:25;;;;;;;;;;;;;;;;:55;19225:62;;19062:233;;;:::o;56392:103::-;55630:13;:11;:13::i;:::-;56457:30:::1;56484:1;56457:18;:30::i;:::-;56392:103::o:0;72747:35::-;;;;:::o;55744:87::-;55790:7;55817:6;;;;;;;;;;;55810:13;;55744:87;:::o;75168:91::-;55630:13;:11;:13::i;:::-;75245:6:::1;75237:5;:14;;;;75168:91:::0;:::o;22303:104::-;22359:13;22392:7;22385:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22303:104;:::o;72789:38::-;;;;:::o;75267:113::-;55630:13;:11;:13::i;:::-;75366:6:::1;75353:10;:19;;;;75267:113:::0;:::o;73216:880::-;73291:10;;73281:6;:20;;73273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;73381:12;;73371:6;73354:14;:12;:14::i;:::-;:23;;;;:::i;:::-;:39;;73346:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;73438:6;;;;;;;;;;;73430:33;;;;;;;;;;;;:::i;:::-;;;;;;;;;73474:16;73493:6;73474:25;;73510:11;73524:17;:29;73542:10;73524:29;;;;;;;;;;;;;;;;73510:43;;73576:19;;73567:6;:28;:64;;;;;73616:15;;73599:14;:12;:14::i;:::-;:32;73567:64;73564:341;;;73648:23;73696:6;73674:19;;:28;;;;:::i;:::-;73648:54;;73729:18;73720:6;:27;73717:177;;;73791:18;73782:6;:27;;;;:::i;:::-;73768:41;;73717:177;;;73877:1;73863:15;;73717:177;73633:272;73564:341;73949:5;;73935:11;:19;;;;:::i;:::-;73922:9;:32;;73909:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;74042:6;74009:17;:29;74027:10;74009:29;;;;;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;;;;;74059:29;74069:10;74081:6;74059:9;:29::i;:::-;73268:828;;73216:880;:::o;29168:308::-;29279:19;:17;:19::i;:::-;29267:31;;:8;:31;;;29263:61;;29307:17;;;;;;;;;;;;;;29263:61;29389:8;29337:18;:39;29356:19;:17;:19::i;:::-;29337:39;;;;;;;;;;;;;;;:49;29377:8;29337:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;29449:8;29413:55;;29428:19;:17;:19::i;:::-;29413:55;;;29459:8;29413:55;;;;;;:::i;:::-;;;;;;;;29168:308;;:::o;75987:228::-;76138:4;71378:1;70192:42;71332:43;;;:47;71328:699;;;71619:10;71611:18;;:4;:18;;;71607:85;;76160:47:::1;76183:4;76189:2;76193:7;76202:4;76160:22;:47::i;:::-;71670:7:::0;;71607:85;70192:42;71752:40;;;71801:4;71808:10;71752:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;70192:42;71848:40;;;71897:4;71904;71848:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;71752:157;71706:310;;71989:10;71970:30;;;;;;;;;;;:::i;:::-;;;;;;;;71706:310;71328:699;76160:47:::1;76183:4;76189:2;76193:7;76202:4;76160:22;:47::i;:::-;75987:228:::0;;;;;;:::o;74620:308::-;74694:13;74730:16;74738:7;74730;:16::i;:::-;74722:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;74812:1;74791:10;:8;:10::i;:::-;74785:24;:28;:138;;74911:12;74785:138;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74854:10;:8;:10::i;:::-;74866:18;:7;:16;:18::i;:::-;74837:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;74785:138;74778:145;;74620:308;;;:::o;72519:99::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;74104:113::-;74162:7;74189:20;74203:5;74189:13;:20::i;:::-;74182:27;;74104:113;;;:::o;75388:122::-;55630:13;:11;:13::i;:::-;75496:6:::1;75474:19;:28;;;;75388:122:::0;:::o;29633:164::-;29730:4;29754:18;:25;29773:5;29754:25;;;;;;;;;;;;;;;:35;29780:8;29754:35;;;;;;;;;;;;;;;;;;;;;;;;;29747:42;;29633:164;;;;:::o;72986:220::-;55630:13;:11;:13::i;:::-;73117:12:::1;;73102:11;73086:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:43;;73078:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;73165:33;73175:9;73186:11;73165:9;:33::i;:::-;72986:220:::0;;:::o;56650:201::-;55630:13;:11;:13::i;:::-;56759:1:::1;56739:22;;:8;:22;;::::0;56731:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;56815:28;56834:8;56815:18;:28::i;:::-;56650:201:::0;:::o;72710:30::-;;;;:::o;30055:282::-;30120:4;30176:7;30157:15;:13;:15::i;:::-;:26;;:66;;;;;30210:13;;30200:7;:23;30157:66;:153;;;;;30309:1;13997:8;30261:17;:26;30279:7;30261:26;;;;;;;;;;;;:44;:49;30157:153;30137:173;;30055:282;;;:::o;51821:105::-;51881:7;51908:10;51901:17;;51821:105;:::o;55909:132::-;55984:12;:10;:12::i;:::-;55973:23;;:7;:5;:7::i;:::-;:23;;;55965:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55909:132::o;74343:101::-;74408:7;74343:101;:::o;32317:2817::-;32451:27;32481;32500:7;32481:18;:27::i;:::-;32451:57;;32566:4;32525:45;;32541:19;32525:45;;;32521:86;;32579:28;;;;;;;;;;;;;;32521:86;32621:27;32650:23;32677:35;32704:7;32677:26;:35::i;:::-;32620:92;;;;32812:68;32837:15;32854:4;32860:19;:17;:19::i;:::-;32812:24;:68::i;:::-;32807:180;;32900:43;32917:4;32923:19;:17;:19::i;:::-;32900:16;:43::i;:::-;32895:92;;32952:35;;;;;;;;;;;;;;32895:92;32807:180;33018:1;33004:16;;:2;:16;;;33000:52;;33029:23;;;;;;;;;;;;;;33000:52;33065:43;33087:4;33093:2;33097:7;33106:1;33065:21;:43::i;:::-;33201:15;33198:160;;;33341:1;33320:19;33313:30;33198:160;33738:18;:24;33757:4;33738:24;;;;;;;;;;;;;;;;33736:26;;;;;;;;;;;;33807:18;:22;33826:2;33807:22;;;;;;;;;;;;;;;;33805:24;;;;;;;;;;;34129:146;34166:2;34215:45;34230:4;34236:2;34240:19;34215:14;:45::i;:::-;14277:8;34187:73;34129:18;:146::i;:::-;34100:17;:26;34118:7;34100:26;;;;;;;;;;;:175;;;;34446:1;14277:8;34395:19;:47;:52;34391:627;;34468:19;34500:1;34490:7;:11;34468:33;;34657:1;34623:17;:30;34641:11;34623:30;;;;;;;;;;;;:35;34619:384;;34761:13;;34746:11;:28;34742:242;;34941:19;34908:17;:30;34926:11;34908:30;;;;;;;;;;;:52;;;;34742:242;34619:384;34449:569;34391:627;35065:7;35061:2;35046:27;;35055:4;35046:27;;;;;;;;;;;;35084:42;35105:4;35111:2;35115:7;35124:1;35084:20;:42::i;:::-;32440:2694;;;32317:2817;;;:::o;35230:185::-;35368:39;35385:4;35391:2;35395:7;35368:39;;;;;;;;;;;;:16;:39::i;:::-;35230:185;;;:::o;24675:1275::-;24742:7;24762:12;24777:7;24762:22;;24845:4;24826:15;:13;:15::i;:::-;:23;24822:1061;;24879:13;;24872:4;:20;24868:1015;;;24917:14;24934:17;:23;24952:4;24934:23;;;;;;;;;;;;24917:40;;25051:1;13997:8;25023:6;:24;:29;25019:845;;25688:113;25705:1;25695:6;:11;25688:113;;25748:17;:25;25766:6;;;;;;;25748:25;;;;;;;;;;;;25739:34;;25688:113;;;25834:6;25827:13;;;;;;25019:845;24894:989;24868:1015;24822:1061;25911:31;;;;;;;;;;;;;;24675:1275;;;;:::o;57011:191::-;57085:16;57104:6;;;;;;;;;;;57085:25;;57130:8;57121:6;;:17;;;;;;;;;;;;;;;;;;57185:8;57154:40;;57175:8;57154:40;;;;;;;;;;;;57074:128;57011:191;:::o;18299:296::-;18354:7;18561:15;:13;:15::i;:::-;18545:13;;:31;18538:38;;18299:296;:::o;45653:112::-;45730:27;45740:2;45744:8;45730:27;;;;;;;;;;;;:9;:27::i;:::-;45653:112;;:::o;36013:399::-;36180:31;36193:4;36199:2;36203:7;36180:12;:31::i;:::-;36244:1;36226:2;:14;;;:19;36222:183;;36265:56;36296:4;36302:2;36306:7;36315:5;36265:30;:56::i;:::-;36260:145;;36349:40;;;;;;;;;;;;;;36260:145;36222:183;36013:399;;;;:::o;74936:118::-;74996:13;75034:12;75027:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74936:118;:::o;57496:723::-;57552:13;57782:1;57773:5;:10;57769:53;;57800:10;;;;;;;;;;;;;;;;;;;;;57769:53;57832:12;57847:5;57832:20;;57863:14;57888:78;57903:1;57895:4;:9;57888:78;;57921:8;;;;;:::i;:::-;;;;57952:2;57944:10;;;;;:::i;:::-;;;57888:78;;;57976:19;58008:6;57998:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57976:39;;58026:154;58042:1;58033:5;:10;58026:154;;58070:1;58060:11;;;;;:::i;:::-;;;58137:2;58129:5;:10;;;;:::i;:::-;58116:2;:24;;;;:::i;:::-;58103:39;;58086:6;58093;58086:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;58166:2;58157:11;;;;;:::i;:::-;;;58026:154;;;58204:6;58190:21;;;;;57496:723;;;;:::o;19377:178::-;19438:7;13221:13;13359:2;19466:18;:25;19485:5;19466:25;;;;;;;;;;;;;;;;:50;;19465:82;19458:89;;19377:178;;;:::o;54295:98::-;54348:7;54375:10;54368:17;;54295:98;:::o;31218:479::-;31320:27;31349:23;31390:38;31431:15;:24;31447:7;31431:24;;;;;;;;;;;31390:65;;31602:18;31579:41;;31659:19;31653:26;31634:45;;31564:126;31218:479;;;:::o;30446:659::-;30595:11;30760:16;30753:5;30749:28;30740:37;;30920:16;30909:9;30905:32;30892:45;;31070:15;31059:9;31056:30;31048:5;31037:9;31034:20;31031:56;31021:66;;30446:659;;;;;:::o;37074:159::-;;;;;:::o;51130:311::-;51265:7;51285:16;14401:3;51311:19;:41;;51285:68;;14401:3;51379:31;51390:4;51396:2;51400:9;51379:10;:31::i;:::-;51371:40;;:62;;51364:69;;;51130:311;;;;;:::o;26498:450::-;26578:14;26746:16;26739:5;26735:28;26726:37;;26923:5;26909:11;26884:23;26880:41;26877:52;26870:5;26867:63;26857:73;;26498:450;;;;:::o;37898:158::-;;;;;:::o;44880:689::-;45011:19;45017:2;45021:8;45011:5;:19::i;:::-;45090:1;45072:2;:14;;;:19;45068:483;;45112:11;45126:13;;45112:27;;45158:13;45180:8;45174:3;:14;45158:30;;45207:233;45238:62;45277:1;45281:2;45285:7;;;;;;45294:5;45238:30;:62::i;:::-;45233:167;;45336:40;;;;;;;;;;;;;;45233:167;45435:3;45427:5;:11;45207:233;;45522:3;45505:13;;:20;45501:34;;45527:8;;;45501:34;45093:458;;45068:483;44880:689;;;:::o;38496:716::-;38659:4;38705:2;38680:45;;;38726:19;:17;:19::i;:::-;38747:4;38753:7;38762:5;38680:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38676:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38980:1;38963:6;:13;:18;38959:235;;39009:40;;;;;;;;;;;;;;38959:235;39152:6;39146:13;39137:6;39133:2;39129:15;39122:38;38676:529;38849:54;;;38839:64;;;:6;:64;;;;38832:71;;;38496:716;;;;;;:::o;50831:147::-;50968:6;50831:147;;;;;:::o;39674:2454::-;39747:20;39770:13;;39747:36;;39810:1;39798:8;:13;39794:44;;39820:18;;;;;;;;;;;;;;39794:44;39851:61;39881:1;39885:2;39889:12;39903:8;39851:21;:61::i;:::-;40395:1;13359:2;40365:1;:26;;40364:32;40352:8;:45;40326:18;:22;40345:2;40326:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;40674:139;40711:2;40765:33;40788:1;40792:2;40796:1;40765:14;:33::i;:::-;40732:30;40753:8;40732:20;:30::i;:::-;:66;40674:18;:139::i;:::-;40640:17;:31;40658:12;40640:31;;;;;;;;;;;:173;;;;40830:16;40861:11;40890:8;40875:12;:23;40861:37;;41145:16;41141:2;41137:25;41125:37;;41517:12;41477:8;41436:1;41374:25;41315:1;41254;41227:335;41642:1;41628:12;41624:20;41582:346;41683:3;41674:7;41671:16;41582:346;;41901:7;41891:8;41888:1;41861:25;41858:1;41855;41850:59;41736:1;41727:7;41723:15;41712:26;;41582:346;;;41586:77;41973:1;41961:8;:13;41957:45;;41983:19;;;;;;;;;;;;;;41957:45;42035:3;42019:13;:19;;;;40100:1950;;42060:60;42089:1;42093:2;42097:12;42111:8;42060:20;:60::i;:::-;39736:2392;39674:2454;;:::o;27050:324::-;27120:14;27353:1;27343:8;27340:15;27314:24;27310:46;27300:56;;27050:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:118::-;1688:24;1706:5;1688:24;:::i;:::-;1683:3;1676:37;1601:118;;:::o;1725:222::-;1818:4;1856:2;1845:9;1841:18;1833:26;;1869:71;1937:1;1926:9;1922:17;1913:6;1869:71;:::i;:::-;1725:222;;;;:::o;1953:99::-;2005:6;2039:5;2033:12;2023:22;;1953:99;;;:::o;2058:169::-;2142:11;2176:6;2171:3;2164:19;2216:4;2211:3;2207:14;2192:29;;2058:169;;;;:::o;2233:307::-;2301:1;2311:113;2325:6;2322:1;2319:13;2311:113;;;2410:1;2405:3;2401:11;2395:18;2391:1;2386:3;2382:11;2375:39;2347:2;2344:1;2340:10;2335:15;;2311:113;;;2442:6;2439:1;2436:13;2433:101;;;2522:1;2513:6;2508:3;2504:16;2497:27;2433:101;2282:258;2233:307;;;:::o;2546:102::-;2587:6;2638:2;2634:7;2629:2;2622:5;2618:14;2614:28;2604:38;;2546:102;;;:::o;2654:364::-;2742:3;2770:39;2803:5;2770:39;:::i;:::-;2825:71;2889:6;2884:3;2825:71;:::i;:::-;2818:78;;2905:52;2950:6;2945:3;2938:4;2931:5;2927:16;2905:52;:::i;:::-;2982:29;3004:6;2982:29;:::i;:::-;2977:3;2973:39;2966:46;;2746:272;2654:364;;;;:::o;3024:313::-;3137:4;3175:2;3164:9;3160:18;3152:26;;3224:9;3218:4;3214:20;3210:1;3199:9;3195:17;3188:47;3252:78;3325:4;3316:6;3252:78;:::i;:::-;3244:86;;3024:313;;;;:::o;3343:122::-;3416:24;3434:5;3416:24;:::i;:::-;3409:5;3406:35;3396:63;;3455:1;3452;3445:12;3396:63;3343:122;:::o;3471:139::-;3517:5;3555:6;3542:20;3533:29;;3571:33;3598:5;3571:33;:::i;:::-;3471:139;;;;:::o;3616:329::-;3675:6;3724:2;3712:9;3703:7;3699:23;3695:32;3692:119;;;3730:79;;:::i;:::-;3692:119;3850:1;3875:53;3920:7;3911:6;3900:9;3896:22;3875:53;:::i;:::-;3865:63;;3821:117;3616:329;;;;:::o;3951:126::-;3988:7;4028:42;4021:5;4017:54;4006:65;;3951:126;;;:::o;4083:96::-;4120:7;4149:24;4167:5;4149:24;:::i;:::-;4138:35;;4083:96;;;:::o;4185:118::-;4272:24;4290:5;4272:24;:::i;:::-;4267:3;4260:37;4185:118;;:::o;4309:222::-;4402:4;4440:2;4429:9;4425:18;4417:26;;4453:71;4521:1;4510:9;4506:17;4497:6;4453:71;:::i;:::-;4309:222;;;;:::o;4537:122::-;4610:24;4628:5;4610:24;:::i;:::-;4603:5;4600:35;4590:63;;4649:1;4646;4639:12;4590:63;4537:122;:::o;4665:139::-;4711:5;4749:6;4736:20;4727:29;;4765:33;4792:5;4765:33;:::i;:::-;4665:139;;;;:::o;4810:474::-;4878:6;4886;4935:2;4923:9;4914:7;4910:23;4906:32;4903:119;;;4941:79;;:::i;:::-;4903:119;5061:1;5086:53;5131:7;5122:6;5111:9;5107:22;5086:53;:::i;:::-;5076:63;;5032:117;5188:2;5214:53;5259:7;5250:6;5239:9;5235:22;5214:53;:::i;:::-;5204:63;;5159:118;4810:474;;;;;:::o;5290:329::-;5349:6;5398:2;5386:9;5377:7;5373:23;5369:32;5366:119;;;5404:79;;:::i;:::-;5366:119;5524:1;5549:53;5594:7;5585:6;5574:9;5570:22;5549:53;:::i;:::-;5539:63;;5495:117;5290:329;;;;:::o;5625:116::-;5695:21;5710:5;5695:21;:::i;:::-;5688:5;5685:32;5675:60;;5731:1;5728;5721:12;5675:60;5625:116;:::o;5747:133::-;5790:5;5828:6;5815:20;5806:29;;5844:30;5868:5;5844:30;:::i;:::-;5747:133;;;;:::o;5886:323::-;5942:6;5991:2;5979:9;5970:7;5966:23;5962:32;5959:119;;;5997:79;;:::i;:::-;5959:119;6117:1;6142:50;6184:7;6175:6;6164:9;6160:22;6142:50;:::i;:::-;6132:60;;6088:114;5886:323;;;;:::o;6215:619::-;6292:6;6300;6308;6357:2;6345:9;6336:7;6332:23;6328:32;6325:119;;;6363:79;;:::i;:::-;6325:119;6483:1;6508:53;6553:7;6544:6;6533:9;6529:22;6508:53;:::i;:::-;6498:63;;6454:117;6610:2;6636:53;6681:7;6672:6;6661:9;6657:22;6636:53;:::i;:::-;6626:63;;6581:118;6738:2;6764:53;6809:7;6800:6;6789:9;6785:22;6764:53;:::i;:::-;6754:63;;6709:118;6215:619;;;;;:::o;6840:117::-;6949:1;6946;6939:12;6963:117;7072:1;7069;7062:12;7086:180;7134:77;7131:1;7124:88;7231:4;7228:1;7221:15;7255:4;7252:1;7245:15;7272:281;7355:27;7377:4;7355:27;:::i;:::-;7347:6;7343:40;7485:6;7473:10;7470:22;7449:18;7437:10;7434:34;7431:62;7428:88;;;7496:18;;:::i;:::-;7428:88;7536:10;7532:2;7525:22;7315:238;7272:281;;:::o;7559:129::-;7593:6;7620:20;;:::i;:::-;7610:30;;7649:33;7677:4;7669:6;7649:33;:::i;:::-;7559:129;;;:::o;7694:308::-;7756:4;7846:18;7838:6;7835:30;7832:56;;;7868:18;;:::i;:::-;7832:56;7906:29;7928:6;7906:29;:::i;:::-;7898:37;;7990:4;7984;7980:15;7972:23;;7694:308;;;:::o;8008:154::-;8092:6;8087:3;8082;8069:30;8154:1;8145:6;8140:3;8136:16;8129:27;8008:154;;;:::o;8168:412::-;8246:5;8271:66;8287:49;8329:6;8287:49;:::i;:::-;8271:66;:::i;:::-;8262:75;;8360:6;8353:5;8346:21;8398:4;8391:5;8387:16;8436:3;8427:6;8422:3;8418:16;8415:25;8412:112;;;8443:79;;:::i;:::-;8412:112;8533:41;8567:6;8562:3;8557;8533:41;:::i;:::-;8252:328;8168:412;;;;;:::o;8600:340::-;8656:5;8705:3;8698:4;8690:6;8686:17;8682:27;8672:122;;8713:79;;:::i;:::-;8672:122;8830:6;8817:20;8855:79;8930:3;8922:6;8915:4;8907:6;8903:17;8855:79;:::i;:::-;8846:88;;8662:278;8600:340;;;;:::o;8946:509::-;9015:6;9064:2;9052:9;9043:7;9039:23;9035:32;9032:119;;;9070:79;;:::i;:::-;9032:119;9218:1;9207:9;9203:17;9190:31;9248:18;9240:6;9237:30;9234:117;;;9270:79;;:::i;:::-;9234:117;9375:63;9430:7;9421:6;9410:9;9406:22;9375:63;:::i;:::-;9365:73;;9161:287;8946:509;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:307::-;9996:4;10086:18;10078:6;10075:30;10072:56;;;10108:18;;:::i;:::-;10072:56;10146:29;10168:6;10146:29;:::i;:::-;10138:37;;10230:4;10224;10220:15;10212:23;;9935:307;;;:::o;10248:410::-;10325:5;10350:65;10366:48;10407:6;10366:48;:::i;:::-;10350:65;:::i;:::-;10341:74;;10438:6;10431:5;10424:21;10476:4;10469:5;10465:16;10514:3;10505:6;10500:3;10496:16;10493:25;10490:112;;;10521:79;;:::i;:::-;10490:112;10611:41;10645:6;10640:3;10635;10611:41;:::i;:::-;10331:327;10248:410;;;;;:::o;10677:338::-;10732:5;10781:3;10774:4;10766:6;10762:17;10758:27;10748:122;;10789:79;;:::i;:::-;10748:122;10906:6;10893:20;10931:78;11005:3;10997:6;10990:4;10982:6;10978:17;10931:78;:::i;:::-;10922:87;;10738:277;10677:338;;;;:::o;11021:943::-;11116:6;11124;11132;11140;11189:3;11177:9;11168:7;11164:23;11160:33;11157:120;;;11196:79;;:::i;:::-;11157:120;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11727:2;11716:9;11712:18;11699:32;11758:18;11750:6;11747:30;11744:117;;;11780:79;;:::i;:::-;11744:117;11885:62;11939:7;11930:6;11919:9;11915:22;11885:62;:::i;:::-;11875:72;;11670:287;11021:943;;;;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:::-;12518:6;12526;12575:2;12563:9;12554:7;12550:23;12546:32;12543:119;;;12581:79;;:::i;:::-;12543:119;12701:1;12726:53;12771:7;12762:6;12751:9;12747:22;12726:53;:::i;:::-;12716:63;;12672:117;12828:2;12854:53;12899:7;12890:6;12879:9;12875:22;12854:53;:::i;:::-;12844:63;;12799:118;12450:474;;;;;:::o;12930:180::-;12978:77;12975:1;12968:88;13075:4;13072:1;13065:15;13099:4;13096:1;13089:15;13116:320;13160:6;13197:1;13191:4;13187:12;13177:22;;13244:1;13238:4;13234:12;13265:18;13255:81;;13321:4;13313:6;13309:17;13299:27;;13255:81;13383:2;13375:6;13372:14;13352:18;13349:38;13346:84;;13402:18;;:::i;:::-;13346:84;13167:269;13116:320;;;:::o;13442:332::-;13563:4;13601:2;13590:9;13586:18;13578:26;;13614:71;13682:1;13671:9;13667:17;13658:6;13614:71;:::i;:::-;13695:72;13763:2;13752:9;13748:18;13739:6;13695:72;:::i;:::-;13442:332;;;;;:::o;13780:137::-;13834:5;13865:6;13859:13;13850:22;;13881:30;13905:5;13881:30;:::i;:::-;13780:137;;;;:::o;13923:345::-;13990:6;14039:2;14027:9;14018:7;14014:23;14010:32;14007:119;;;14045:79;;:::i;:::-;14007:119;14165:1;14190:61;14243:7;14234:6;14223:9;14219:22;14190:61;:::i;:::-;14180:71;;14136:125;13923:345;;;;:::o;14274:181::-;14414:33;14410:1;14402:6;14398:14;14391:57;14274:181;:::o;14461:366::-;14603:3;14624:67;14688:2;14683:3;14624:67;:::i;:::-;14617:74;;14700:93;14789:3;14700:93;:::i;:::-;14818:2;14813:3;14809:12;14802:19;;14461:366;;;:::o;14833:419::-;14999:4;15037:2;15026:9;15022:18;15014:26;;15086:9;15080:4;15076:20;15072:1;15061:9;15057:17;15050:47;15114:131;15240:4;15114:131;:::i;:::-;15106:139;;14833:419;;;:::o;15258:147::-;15359:11;15396:3;15381:18;;15258:147;;;;:::o;15411:114::-;;:::o;15531:398::-;15690:3;15711:83;15792:1;15787:3;15711:83;:::i;:::-;15704:90;;15803:93;15892:3;15803:93;:::i;:::-;15921:1;15916:3;15912:11;15905:18;;15531:398;;;:::o;15935:379::-;16119:3;16141:147;16284:3;16141:147;:::i;:::-;16134:154;;16305:3;16298:10;;15935:379;;;:::o;16320:141::-;16369:4;16392:3;16384:11;;16415:3;16412:1;16405:14;16449:4;16446:1;16436:18;16428:26;;16320:141;;;:::o;16467:93::-;16504:6;16551:2;16546;16539:5;16535:14;16531:23;16521:33;;16467:93;;;:::o;16566:107::-;16610:8;16660:5;16654:4;16650:16;16629:37;;16566:107;;;;:::o;16679:393::-;16748:6;16798:1;16786:10;16782:18;16821:97;16851:66;16840:9;16821:97;:::i;:::-;16939:39;16969:8;16958:9;16939:39;:::i;:::-;16927:51;;17011:4;17007:9;17000:5;16996:21;16987:30;;17060:4;17050:8;17046:19;17039:5;17036:30;17026:40;;16755:317;;16679:393;;;;;:::o;17078:60::-;17106:3;17127:5;17120:12;;17078:60;;;:::o;17144:142::-;17194:9;17227:53;17245:34;17254:24;17272:5;17254:24;:::i;:::-;17245:34;:::i;:::-;17227:53;:::i;:::-;17214:66;;17144:142;;;:::o;17292:75::-;17335:3;17356:5;17349:12;;17292:75;;;:::o;17373:269::-;17483:39;17514:7;17483:39;:::i;:::-;17544:91;17593:41;17617:16;17593:41;:::i;:::-;17585:6;17578:4;17572:11;17544:91;:::i;:::-;17538:4;17531:105;17449:193;17373:269;;;:::o;17648:73::-;17693:3;17648:73;:::o;17727:189::-;17804:32;;:::i;:::-;17845:65;17903:6;17895;17889:4;17845:65;:::i;:::-;17780:136;17727:189;;:::o;17922:186::-;17982:120;17999:3;17992:5;17989:14;17982:120;;;18053:39;18090:1;18083:5;18053:39;:::i;:::-;18026:1;18019:5;18015:13;18006:22;;17982:120;;;17922:186;;:::o;18114:543::-;18215:2;18210:3;18207:11;18204:446;;;18249:38;18281:5;18249:38;:::i;:::-;18333:29;18351:10;18333:29;:::i;:::-;18323:8;18319:44;18516:2;18504:10;18501:18;18498:49;;;18537:8;18522:23;;18498:49;18560:80;18616:22;18634:3;18616:22;:::i;:::-;18606:8;18602:37;18589:11;18560:80;:::i;:::-;18219:431;;18204:446;18114:543;;;:::o;18663:117::-;18717:8;18767:5;18761:4;18757:16;18736:37;;18663:117;;;;:::o;18786:169::-;18830:6;18863:51;18911:1;18907:6;18899:5;18896:1;18892:13;18863:51;:::i;:::-;18859:56;18944:4;18938;18934:15;18924:25;;18837:118;18786:169;;;;:::o;18960:295::-;19036:4;19182:29;19207:3;19201:4;19182:29;:::i;:::-;19174:37;;19244:3;19241:1;19237:11;19231:4;19228:21;19220:29;;18960:295;;;;:::o;19260:1395::-;19377:37;19410:3;19377:37;:::i;:::-;19479:18;19471:6;19468:30;19465:56;;;19501:18;;:::i;:::-;19465:56;19545:38;19577:4;19571:11;19545:38;:::i;:::-;19630:67;19690:6;19682;19676:4;19630:67;:::i;:::-;19724:1;19748:4;19735:17;;19780:2;19772:6;19769:14;19797:1;19792:618;;;;20454:1;20471:6;20468:77;;;20520:9;20515:3;20511:19;20505:26;20496:35;;20468:77;20571:67;20631:6;20624:5;20571:67;:::i;:::-;20565:4;20558:81;20427:222;19762:887;;19792:618;19844:4;19840:9;19832:6;19828:22;19878:37;19910:4;19878:37;:::i;:::-;19937:1;19951:208;19965:7;19962:1;19959:14;19951:208;;;20044:9;20039:3;20035:19;20029:26;20021:6;20014:42;20095:1;20087:6;20083:14;20073:24;;20142:2;20131:9;20127:18;20114:31;;19988:4;19985:1;19981:12;19976:17;;19951:208;;;20187:6;20178:7;20175:19;20172:179;;;20245:9;20240:3;20236:19;20230:26;20288:48;20330:4;20322:6;20318:17;20307:9;20288:48;:::i;:::-;20280:6;20273:64;20195:156;20172:179;20397:1;20393;20385:6;20381:14;20377:22;20371:4;20364:36;19799:611;;;19762:887;;19352:1303;;;19260:1395;;:::o;20661:223::-;20801:34;20797:1;20789:6;20785:14;20778:58;20870:6;20865:2;20857:6;20853:15;20846:31;20661:223;:::o;20890:366::-;21032:3;21053:67;21117:2;21112:3;21053:67;:::i;:::-;21046:74;;21129:93;21218:3;21129:93;:::i;:::-;21247:2;21242:3;21238:12;21231:19;;20890:366;;;:::o;21262:419::-;21428:4;21466:2;21455:9;21451:18;21443:26;;21515:9;21509:4;21505:20;21501:1;21490:9;21486:17;21479:47;21543:131;21669:4;21543:131;:::i;:::-;21535:139;;21262:419;;;:::o;21687:180::-;21735:77;21732:1;21725:88;21832:4;21829:1;21822:15;21856:4;21853:1;21846:15;21873:305;21913:3;21932:20;21950:1;21932:20;:::i;:::-;21927:25;;21966:20;21984:1;21966:20;:::i;:::-;21961:25;;22120:1;22052:66;22048:74;22045:1;22042:81;22039:107;;;22126:18;;:::i;:::-;22039:107;22170:1;22167;22163:9;22156:16;;21873:305;;;;:::o;22184:172::-;22324:24;22320:1;22312:6;22308:14;22301:48;22184:172;:::o;22362:366::-;22504:3;22525:67;22589:2;22584:3;22525:67;:::i;:::-;22518:74;;22601:93;22690:3;22601:93;:::i;:::-;22719:2;22714:3;22710:12;22703:19;;22362:366;;;:::o;22734:419::-;22900:4;22938:2;22927:9;22923:18;22915:26;;22987:9;22981:4;22977:20;22973:1;22962:9;22958:17;22951:47;23015:131;23141:4;23015:131;:::i;:::-;23007:139;;22734:419;;;:::o;23159:164::-;23299:16;23295:1;23287:6;23283:14;23276:40;23159:164;:::o;23329:366::-;23471:3;23492:67;23556:2;23551:3;23492:67;:::i;:::-;23485:74;;23568:93;23657:3;23568:93;:::i;:::-;23686:2;23681:3;23677:12;23670:19;;23329:366;;;:::o;23701:419::-;23867:4;23905:2;23894:9;23890:18;23882:26;;23954:9;23948:4;23944:20;23940:1;23929:9;23925:17;23918:47;23982:131;24108:4;23982:131;:::i;:::-;23974:139;;23701:419;;;:::o;24126:191::-;24166:4;24186:20;24204:1;24186:20;:::i;:::-;24181:25;;24220:20;24238:1;24220:20;:::i;:::-;24215:25;;24259:1;24256;24253:8;24250:34;;;24264:18;;:::i;:::-;24250:34;24309:1;24306;24302:9;24294:17;;24126:191;;;;:::o;24323:348::-;24363:7;24386:20;24404:1;24386:20;:::i;:::-;24381:25;;24420:20;24438:1;24420:20;:::i;:::-;24415:25;;24608:1;24540:66;24536:74;24533:1;24530:81;24525:1;24518:9;24511:17;24507:105;24504:131;;;24615:18;;:::i;:::-;24504:131;24663:1;24660;24656:9;24645:20;;24323:348;;;;:::o;24677:221::-;24817:34;24813:1;24805:6;24801:14;24794:58;24886:4;24881:2;24873:6;24869:15;24862:29;24677:221;:::o;24904:366::-;25046:3;25067:67;25131:2;25126:3;25067:67;:::i;:::-;25060:74;;25143:93;25232:3;25143:93;:::i;:::-;25261:2;25256:3;25252:12;25245:19;;24904:366;;;:::o;25276:419::-;25442:4;25480:2;25469:9;25465:18;25457:26;;25529:9;25523:4;25519:20;25515:1;25504:9;25500:17;25493:47;25557:131;25683:4;25557:131;:::i;:::-;25549:139;;25276:419;;;:::o;25701:164::-;25841:16;25837:1;25829:6;25825:14;25818:40;25701:164;:::o;25871:366::-;26013:3;26034:67;26098:2;26093:3;26034:67;:::i;:::-;26027:74;;26110:93;26199:3;26110:93;:::i;:::-;26228:2;26223:3;26219:12;26212:19;;25871:366;;;:::o;26243:419::-;26409:4;26447:2;26436:9;26432:18;26424:26;;26496:9;26490:4;26486:20;26482:1;26471:9;26467:17;26460:47;26524:131;26650:4;26524:131;:::i;:::-;26516:139;;26243:419;;;:::o;26668:148::-;26770:11;26807:3;26792:18;;26668:148;;;;:::o;26822:377::-;26928:3;26956:39;26989:5;26956:39;:::i;:::-;27011:89;27093:6;27088:3;27011:89;:::i;:::-;27004:96;;27109:52;27154:6;27149:3;27142:4;27135:5;27131:16;27109:52;:::i;:::-;27186:6;27181:3;27177:16;27170:23;;26932:267;26822:377;;;;:::o;27205:155::-;27345:7;27341:1;27333:6;27329:14;27322:31;27205:155;:::o;27366:400::-;27526:3;27547:84;27629:1;27624:3;27547:84;:::i;:::-;27540:91;;27640:93;27729:3;27640:93;:::i;:::-;27758:1;27753:3;27749:11;27742:18;;27366:400;;;:::o;27772:701::-;28053:3;28075:95;28166:3;28157:6;28075:95;:::i;:::-;28068:102;;28187:95;28278:3;28269:6;28187:95;:::i;:::-;28180:102;;28299:148;28443:3;28299:148;:::i;:::-;28292:155;;28464:3;28457:10;;27772:701;;;;;:::o;28479:170::-;28619:22;28615:1;28607:6;28603:14;28596:46;28479:170;:::o;28655:366::-;28797:3;28818:67;28882:2;28877:3;28818:67;:::i;:::-;28811:74;;28894:93;28983:3;28894:93;:::i;:::-;29012:2;29007:3;29003:12;28996:19;;28655:366;;;:::o;29027:419::-;29193:4;29231:2;29220:9;29216:18;29208:26;;29280:9;29274:4;29270:20;29266:1;29255:9;29251:17;29244:47;29308:131;29434:4;29308:131;:::i;:::-;29300:139;;29027:419;;;:::o;29452:225::-;29592:34;29588:1;29580:6;29576:14;29569:58;29661:8;29656:2;29648:6;29644:15;29637:33;29452:225;:::o;29683:366::-;29825:3;29846:67;29910:2;29905:3;29846:67;:::i;:::-;29839:74;;29922:93;30011:3;29922:93;:::i;:::-;30040:2;30035:3;30031:12;30024:19;;29683:366;;;:::o;30055:419::-;30221:4;30259:2;30248:9;30244:18;30236:26;;30308:9;30302:4;30298:20;30294:1;30283:9;30279:17;30272:47;30336:131;30462:4;30336:131;:::i;:::-;30328:139;;30055:419;;;:::o;30480:182::-;30620:34;30616:1;30608:6;30604:14;30597:58;30480:182;:::o;30668:366::-;30810:3;30831:67;30895:2;30890:3;30831:67;:::i;:::-;30824:74;;30907:93;30996:3;30907:93;:::i;:::-;31025:2;31020:3;31016:12;31009:19;;30668:366;;;:::o;31040:419::-;31206:4;31244:2;31233:9;31229:18;31221:26;;31293:9;31287:4;31283:20;31279:1;31268:9;31264:17;31257:47;31321:131;31447:4;31321:131;:::i;:::-;31313:139;;31040:419;;;:::o;31465:233::-;31504:3;31527:24;31545:5;31527:24;:::i;:::-;31518:33;;31573:66;31566:5;31563:77;31560:103;;31643:18;;:::i;:::-;31560:103;31690:1;31683:5;31679:13;31672:20;;31465:233;;;:::o;31704:180::-;31752:77;31749:1;31742:88;31849:4;31846:1;31839:15;31873:4;31870:1;31863:15;31890:185;31930:1;31947:20;31965:1;31947:20;:::i;:::-;31942:25;;31981:20;31999:1;31981:20;:::i;:::-;31976:25;;32020:1;32010:35;;32025:18;;:::i;:::-;32010:35;32067:1;32064;32060:9;32055:14;;31890:185;;;;:::o;32081:176::-;32113:1;32130:20;32148:1;32130:20;:::i;:::-;32125:25;;32164:20;32182:1;32164:20;:::i;:::-;32159:25;;32203:1;32193:35;;32208:18;;:::i;:::-;32193:35;32249:1;32246;32242:9;32237:14;;32081:176;;;;:::o;32263:180::-;32311:77;32308:1;32301:88;32408:4;32405:1;32398:15;32432:4;32429:1;32422:15;32449:98;32500:6;32534:5;32528:12;32518:22;;32449:98;;;:::o;32553:168::-;32636:11;32670:6;32665:3;32658:19;32710:4;32705:3;32701:14;32686:29;;32553:168;;;;:::o;32727:360::-;32813:3;32841:38;32873:5;32841:38;:::i;:::-;32895:70;32958:6;32953:3;32895:70;:::i;:::-;32888:77;;32974:52;33019:6;33014:3;33007:4;33000:5;32996:16;32974:52;:::i;:::-;33051:29;33073:6;33051:29;:::i;:::-;33046:3;33042:39;33035:46;;32817:270;32727:360;;;;:::o;33093:640::-;33288:4;33326:3;33315:9;33311:19;33303:27;;33340:71;33408:1;33397:9;33393:17;33384:6;33340:71;:::i;:::-;33421:72;33489:2;33478:9;33474:18;33465:6;33421:72;:::i;:::-;33503;33571:2;33560:9;33556:18;33547:6;33503:72;:::i;:::-;33622:9;33616:4;33612:20;33607:2;33596:9;33592:18;33585:48;33650:76;33721:4;33712:6;33650:76;:::i;:::-;33642:84;;33093:640;;;;;;;:::o;33739:141::-;33795:5;33826:6;33820:13;33811:22;;33842:32;33868:5;33842:32;:::i;:::-;33739:141;;;;:::o;33886:349::-;33955:6;34004:2;33992:9;33983:7;33979:23;33975:32;33972:119;;;34010:79;;:::i;:::-;33972:119;34130:1;34155:63;34210:7;34201:6;34190:9;34186:22;34155:63;:::i;:::-;34145:73;;34101:127;33886:349;;;;:::o

Swarm Source

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