ETH Price: $3,393.81 (-1.39%)
Gas: 2 Gwei

Token

KURENAI (KRNI)
 

Overview

Max Total Supply

9,071 KRNI

Holders

1,961

Market

Volume (24H)

0.0555 ETH

Min Price (24H)

$19.68 @ 0.005800 ETH

Max Price (24H)

$26.81 @ 0.007900 ETH
Filtered by Token Holder
gaoshoudemingzidouhenchang.eth
Balance
1 KRNI
0xb342e8a3cf83eb2b4ec6d31a547e76c39dd0eb11
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:
KURENAI

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: UNLICENSED

pragma solidity ^0.8.13;

library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @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 Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account. See {ERC721A-_approve}.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     */
    function approve(address to, uint256 tokenId) public payable virtual override {
        _approve(to, tokenId, true);
    }

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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


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

    /**
     * @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:
     *
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId, bool approvalCheck) internal virtual {
        address owner = ownerOf(tokenId);

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

abstract contract Ownable {
    address public owner; 
    constructor() { owner = msg.sender; }
    modifier onlyOwner { require(owner == msg.sender, "Not Owner!"); _; }
    function transferOwnership(address new_) external onlyOwner { owner = new_; }
}

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 unregister(address addr) 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);
}

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

abstract contract MerkleProof {
    bytes32 internal _merkleRoot;
    function _setMerkleRoot(bytes32 merkleRoot_) internal virtual {
        _merkleRoot = merkleRoot_;
    }
    function isWhitelisted(address address_, bytes32[] memory proof_) public view returns (bool) {
        bytes32 _leaf = keccak256(abi.encodePacked(address_));
        for (uint256 i = 0; i < proof_.length; i++) {
            _leaf = _leaf < proof_[i] ? keccak256(abi.encodePacked(_leaf, proof_[i])) : keccak256(abi.encodePacked(proof_[i], _leaf));
        }
        return _leaf == _merkleRoot;
    }
}

/*
******************************************************************************************
******************************************************************************************
******************************************************************************************
***********************@@@@@@@@@@@********************************************************
*******************@@@@@@@@@@@@@@@********************************************************
****************@@@@@@@@@@@@@@@@@@********************************************************
**************@@@@@@@@@@@@@@@@@@**********************************************************
************@@@@@@@@@@@@@@@@@@************************************************************
**********@@@@@@@@@@@@@@@@@@@@************************************************************
**********@@@@@@@@@@@@@@@@@@@@@@**********@@@@@@@@@@@@@@@*********************************
**************@@@@@@@@@@@@@@@@@@@*****@@@@@@@@@@@@@@@@@@@@@@@@@@@@**@@@@@@@@@@@@@@********
********************@@@@@@@@@@@@@@@**@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*********
************************@@@@@@@@@@@@*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@***********************
********************@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@**************************
****************@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@**************************
************@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@**@@@@@@@@@@@@@@@@@@**************************
**********@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@****@@@@@@@@@@@@@@*****************************
**********@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@******@@@@@@@@@@@@******************************
***********@@@@@@@@@@@@@@@@@@@@@@@@@@@***********@@@@@@@@@@*******************************
****************@@@@@@@@@@@@@**@@@@@@@@@@@********@@@@@@@@@*******************************
****************@@@@@@@@@@@@@*@@@@@@@@@@@@@****@@@@@@@@@@@@@@@@@@*************************
*************@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*********
*************@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*********
*************@@@@@@@@@@*@@@@@*@@@@@@@@@@@@@@**@@@@@@@@@@@@@@@@@@@@@@@@@*******************
*************@@@@@@@@@@*@@@@@**@@@@@@@@@@@@*****@@@@@@@@@@@*******************************
**************@@@@@@@@***@@@@*****@@@@@@@*************************************************
****************@@@@@****@@@@*************************************************************
*****************@@@@*****@@@@************************************************************
******************************************************************************************
******************************************************************************************
******************************************************************************************
*/

contract KURENAI is ERC721A, Ownable, OperatorFilterer, MerkleProof {

    uint256 public constant maxToken = 9071;
    uint256 public pbMintMax = 5; //1 higher than the actual

    uint8 public saleState = 0; //1-wl1 2-wl2 3-pub 4-close

    uint256 public constant wl1mintPrice = 0.026 ether;
    uint256 public constant wl2mintPrice = 0.026 ether;
    uint256 public pbmintPrice = 0.036 ether;

    bool public revealed;

    string private revealURI;
    string private baseTokenURI;
    string private baseTokenURI_EXT;

    mapping(address => uint256) private wl1Minted;
    mapping(address => uint256) private wl2Minted;
    mapping(address => uint256) private pbMinted;

    constructor() ERC721A("KURENAI", "KRNI") OperatorFilterer(address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6), true) {
        sethiddenBaseURI("ipfs://QmaXJZvJqrcvMowt4mbBA6jjg91hYtmN1oxixar8dx7hRT");
    }

    //mint function

    function ownerMint(uint256 _amount, address _address) public onlyOwner { 
        require(_amount + totalSupply() <= maxToken, "No more NFTs");

        _safeMint(_address, _amount);
    }

    function wl1Mint(uint256 _amount, bytes32[] memory proof_) public payable onlySender { 
        require(saleState == 1, "Sale inactive");
        require(_amount + totalSupply() <= maxToken, "No more NFTs");
        require(5 > _amount, "4 max per tx");
        require(5 > wl1Minted[msg.sender] + _amount, "4 max per address");
        require(isWhitelisted(msg.sender, proof_), "You are not whitelisted!");
        require(msg.value == wl1mintPrice * _amount, "Value sent is not correct");

        wl1Minted[msg.sender] += _amount;
        _safeMint(msg.sender, _amount);
    }

    function wl2Mint(uint256 _amount, bytes32[] memory proof_) public payable onlySender { 
        require(saleState == 2, "Sale inactive");
        require(_amount + totalSupply() <= maxToken, "No more NFTs");
        require(3 > _amount, "2 max per tx");
        require(3 > wl2Minted[msg.sender] + _amount, "2 max per address");
        require(isWhitelisted(msg.sender, proof_), "You are not whitelisted!");
        require(msg.value == wl2mintPrice * _amount, "Value sent is not correct");

        wl2Minted[msg.sender] += _amount;
        _safeMint(msg.sender, _amount);
    }

    function pbMint(uint256 _amount) public payable onlySender { 
        require(saleState == 3, "Sale inactive");
        require(_amount + totalSupply() <= maxToken, "No more NFTs");
        require(pbMintMax > _amount, "Exceed max per tx");
        require(pbMintMax > pbMinted[msg.sender] + _amount, "Exceed max per address");
        require(msg.value == pbmintPrice * _amount, "Value sent is not correct");

        pbMinted[msg.sender] += _amount;
        _safeMint(msg.sender, _amount);
    }

    //owner function

    function flipSaleState(uint8 _state) external onlyOwner {
        saleState = _state;
    }

    function setMaxMint(uint256 newMax) external onlyOwner {
        pbMintMax = newMax;
    }

    function setPbPrice(uint256 newPrice) external onlyOwner {
        pbmintPrice = newPrice;
    }

    function setMerkleRoot(bytes32 merkleRoot_) external onlyOwner {
        _setMerkleRoot(merkleRoot_);
    }

    function setReveal() public onlyOwner {
        revealed = !revealed;
    }

    function sethiddenBaseURI(string memory uri_) public onlyOwner {
        revealURI = uri_;
    }

    function setBaseURI(string memory uri_) public onlyOwner {
        baseTokenURI = uri_;
    }

    function setBaseTokenURI_EXT(string memory ext_) public onlyOwner {
        baseTokenURI_EXT = ext_;
    }

    function withdraw() public onlyOwner {
        uint256 sendAmount = address(this).balance;

        address aa = payable(0x063B630879ceD8940842C4949af7C7C34580943b);
        address bb = payable(0x646a431394EFDA5bB0601882a978695Be402B295);
        address cc = payable(0x615a9ccB16C5abe3253bd600F382F206C03Dc3ba);

        bool success;

        (success, ) = aa.call{value: (sendAmount * 500/1000)}("");
        require(success, "Failed to withdraw Ether");

        (success, ) = bb.call{value: (sendAmount * 250/1000)}("");
        require(success, "Failed to withdraw Ether");

        (success, ) = cc.call{value: (sendAmount * 250/1000)}("");
        require(success, "Failed to withdraw Ether");
    }

    //view function

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

    function currentBaseURI() private view returns (string memory){
        return baseTokenURI;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        if(revealed == false) {
        return revealURI;
        }
        return string(abi.encodePacked(currentBaseURI(), Strings.toString(tokenId), baseTokenURI_EXT));
    }

    //modifier

    modifier onlySender() {
        require(msg.sender == tx.origin, "No smart contract");
        _;
    }

    //filterer

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

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

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        payable
        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":"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_state","type":"uint8"}],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"pbMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"pbMintMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pbmintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"saleState","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"ext_","type":"string"}],"name":"setBaseTokenURI_EXT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPbPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"sethiddenBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"new_","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"wl1Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"wl1mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"wl2Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"wl2mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60806040526005600a55600b805460ff19169055667fe5cf2bea0000600c553480156200002b57600080fd5b5060408051808201825260078152664b5552454e414960c81b6020808301918252835180850190945260048452634b524e4960e01b908401528151733cc6cdda760b79bafa08df41ecfa224f810dceb693600193929091620000909160029162000296565b508051620000a690600390602084019062000296565b5060016000555050600880546001600160a01b031916331790556daaeb6d7670e522a718067333cd4e3b15620002055780156200015357604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200013457600080fd5b505af115801562000149573d6000803e3d6000fd5b5050505062000205565b6001600160a01b03821615620001a45760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000119565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b158015620001eb57600080fd5b505af115801562000200573d6000803e3d6000fd5b505050505b50506200022b60405180606001604052806035815260200162002b546035913962000231565b62000378565b6008546001600160a01b031633146200027d5760405162461bcd60e51b815260206004820152600a6024820152694e6f74204f776e65722160b01b604482015260640160405180910390fd5b80516200029290600e90602084019062000296565b5050565b828054620002a4906200033c565b90600052602060002090601f016020900481019282620002c8576000855562000313565b82601f10620002e357805160ff191683800117855562000313565b8280016001018555821562000313579182015b8281111562000313578251825591602001919060010190620002f6565b506200032192915062000325565b5090565b5b8082111562000321576000815560010162000326565b600181811c908216806200035157607f821691505b6020821081036200037257634e487b7160e01b600052602260045260246000fd5b50919050565b6127cc80620003886000396000f3fe60806040526004361061021a5760003560e01c80637664531511610123578063be0469a9116100ab578063e985e9c51161006f578063e985e9c5146105d1578063f07f11071461061a578063f0e4ab7a14610630578063f2fde38b14610643578063f64533751461054d57600080fd5b8063be0469a91461054d578063c87b56dd14610568578063ca69e32314610588578063d22b78d61461059e578063d52c57e0146105b157600080fd5b8063a08c008b116100f2578063a08c008b146104c4578063a22cb465146104e4578063a9e0d03914610504578063b88d4fde1461051a578063bc9817f41461052d57600080fd5b8063766453151461045a5780637cb647591461046f5780638da5cb5b1461048f57806395d89b41146104af57600080fd5b80633ccfd60b116101a657806355f804b31161017557806355f804b3146103ae5780635a23dd99146103ce578063603f4d52146103ee5780636352211e1461041a57806370a082311461043a57600080fd5b80633ccfd60b1461034c57806342842e0e146103615780635183022714610374578063547520fe1461038e57600080fd5b8063095ea7b3116101ed578063095ea7b3146102d057806310b778de146102e357806312e7a1bf146102f657806318160ddd1461031657806323b872dd1461033957600080fd5b806301ffc9a71461021f57806302ffaed11461025457806306fdde0314610276578063081812fc14610298575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611fe8565b610663565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061027461026f3660046120a4565b6106b5565b005b34801561028257600080fd5b5061028b6106ff565b60405161024b9190612145565b3480156102a457600080fd5b506102b86102b3366004612158565b610791565b6040516001600160a01b03909116815260200161024b565b6102746102de36600461218d565b6107d5565b6102746102f1366004612237565b6107e1565b34801561030257600080fd5b5061027461031136600461227e565b6109a4565b34801561032257600080fd5b5061032b6109e4565b60405190815260200161024b565b6102746103473660046122a1565b6109f2565b34801561035857600080fd5b50610274610b4e565b61027461036f3660046122a1565b610d4b565b34801561038057600080fd5b50600d5461023f9060ff1681565b34801561039a57600080fd5b506102746103a9366004612158565b610e9c565b3480156103ba57600080fd5b506102746103c93660046120a4565b610ecb565b3480156103da57600080fd5b5061023f6103e93660046122dd565b610f08565b3480156103fa57600080fd5b50600b546104089060ff1681565b60405160ff909116815260200161024b565b34801561042657600080fd5b506102b8610435366004612158565b61102c565b34801561044657600080fd5b5061032b610455366004612315565b611037565b34801561046657600080fd5b50610274611086565b34801561047b57600080fd5b5061027461048a366004612158565b6110c4565b34801561049b57600080fd5b506008546102b8906001600160a01b031681565b3480156104bb57600080fd5b5061028b6110fa565b3480156104d057600080fd5b506102746104df3660046120a4565b611109565b3480156104f057600080fd5b506102746104ff36600461233e565b611146565b34801561051057600080fd5b5061032b600c5481565b610274610528366004612375565b6111b2565b34801561053957600080fd5b50610274610548366004612158565b61130a565b34801561055957600080fd5b5061032b665c5edcbc29000081565b34801561057457600080fd5b5061028b610583366004612158565b611339565b34801561059457600080fd5b5061032b61236f81565b6102746105ac366004612158565b611484565b3480156105bd57600080fd5b506102746105cc3660046123f1565b6115ff565b3480156105dd57600080fd5b5061023f6105ec36600461241d565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561062657600080fd5b5061032b600a5481565b61027461063e366004612237565b611666565b34801561064f57600080fd5b5061027461065e366004612315565b611819565b60006301ffc9a760e01b6001600160e01b03198316148061069457506380ac58cd60e01b6001600160e01b03198316145b806106af5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146106e85760405162461bcd60e51b81526004016106df90612447565b60405180910390fd5b80516106fb906010906020840190611f39565b5050565b60606002805461070e9061246b565b80601f016020809104026020016040519081016040528092919081815260200182805461073a9061246b565b80156107875780601f1061075c57610100808354040283529160200191610787565b820191906000526020600020905b81548152906001019060200180831161076a57829003601f168201915b5050505050905090565b600061079c82611865565b6107b9576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6106fb8282600161189a565b3332146108005760405162461bcd60e51b81526004016106df906124a5565b600b5460ff166002146108255760405162461bcd60e51b81526004016106df906124d0565b61236f6108306109e4565b61083a908461250d565b11156108585760405162461bcd60e51b81526004016106df90612525565b816003116108975760405162461bcd60e51b815260206004820152600c60248201526b06440dac2f040e0cae440e8f60a31b60448201526064016106df565b336000908152601260205260409020546108b290839061250d565b6003116108f55760405162461bcd60e51b815260206004820152601160248201527032206d617820706572206164647265737360781b60448201526064016106df565b6108ff3382610f08565b6109465760405162461bcd60e51b8152602060048201526018602482015277596f7520617265206e6f742077686974656c69737465642160401b60448201526064016106df565b61095782665c5edcbc29000061254b565b34146109755760405162461bcd60e51b81526004016106df9061256a565b336000908152601260205260408120805484929061099490849061250d565b909155506106fb90503383611946565b6008546001600160a01b031633146109ce5760405162461bcd60e51b81526004016106df90612447565b600b805460ff191660ff92909216919091179055565b600154600054036000190190565b826daaeb6d7670e522a718067333cd4e3b15610b3d57336001600160a01b03821603610a2857610a23848484611960565b610b48565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610a77573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a9b91906125a1565b8015610b1e5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610afa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b1e91906125a1565b610b3d57604051633b79c77360e21b81523360048201526024016106df565b610b48848484611960565b50505050565b6008546001600160a01b03163314610b785760405162461bcd60e51b81526004016106df90612447565b4773063b630879ced8940842c4949af7c7c34580943b73646a431394efda5bb0601882a978695be402b29573615a9ccb16c5abe3253bd600f382f206c03dc3ba6000836103e8610bca876101f461254b565b610bd491906125d4565b604051600081818185875af1925050503d8060008114610c10576040519150601f19603f3d011682016040523d82523d6000602084013e610c15565b606091505b50508091505080610c385760405162461bcd60e51b81526004016106df906125e8565b6001600160a01b0383166103e8610c508760fa61254b565b610c5a91906125d4565b604051600081818185875af1925050503d8060008114610c96576040519150601f19603f3d011682016040523d82523d6000602084013e610c9b565b606091505b50508091505080610cbe5760405162461bcd60e51b81526004016106df906125e8565b6001600160a01b0382166103e8610cd68760fa61254b565b610ce091906125d4565b604051600081818185875af1925050503d8060008114610d1c576040519150601f19603f3d011682016040523d82523d6000602084013e610d21565b606091505b50508091505080610d445760405162461bcd60e51b81526004016106df906125e8565b5050505050565b826daaeb6d7670e522a718067333cd4e3b15610e9157336001600160a01b03821603610d7c57610a23848484611af8565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610dcb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610def91906125a1565b8015610e725750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610e4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e7291906125a1565b610e9157604051633b79c77360e21b81523360048201526024016106df565b610b48848484611af8565b6008546001600160a01b03163314610ec65760405162461bcd60e51b81526004016106df90612447565b600a55565b6008546001600160a01b03163314610ef55760405162461bcd60e51b81526004016106df90612447565b80516106fb90600f906020840190611f39565b6040516bffffffffffffffffffffffff19606084901b166020820152600090819060340160405160208183030381529060405280519060200120905060005b835181101561102057838181518110610f6257610f6261261f565b60200260200101518210610fc057838181518110610f8257610f8261261f565b602002602001015182604051602001610fa5929190918252602082015260400190565b6040516020818303038152906040528051906020012061100c565b81848281518110610fd357610fd361261f565b6020026020010151604051602001610ff5929190918252602082015260400190565b604051602081830303815290604052805190602001205b91508061101881612635565b915050610f47565b50600954149392505050565b60006106af82611b18565b60006001600160a01b038216611060576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146110b05760405162461bcd60e51b81526004016106df90612447565b600d805460ff19811660ff90911615179055565b6008546001600160a01b031633146110ee5760405162461bcd60e51b81526004016106df90612447565b6110f781600955565b50565b60606003805461070e9061246b565b6008546001600160a01b031633146111335760405162461bcd60e51b81526004016106df90612447565b80516106fb90600e906020840190611f39565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b836daaeb6d7670e522a718067333cd4e3b156112fe57336001600160a01b038216036111e9576111e485858585611b8e565b610d44565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611238573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061125c91906125a1565b80156112df5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156112bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112df91906125a1565b6112fe57604051633b79c77360e21b81523360048201526024016106df565b610d4485858585611b8e565b6008546001600160a01b031633146113345760405162461bcd60e51b81526004016106df90612447565b600c55565b606061134482611865565b6113a85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106df565b600d5460ff16151560000361144957600e80546113c49061246b565b80601f01602080910402602001604051908101604052809291908181526020018280546113f09061246b565b801561143d5780601f106114125761010080835404028352916020019161143d565b820191906000526020600020905b81548152906001019060200180831161142057829003601f168201915b50505050509050919050565b611451611bd2565b61145a83611be1565b601060405160200161146e9392919061264e565b6040516020818303038152906040529050919050565b3332146114a35760405162461bcd60e51b81526004016106df906124a5565b600b5460ff166003146114c85760405162461bcd60e51b81526004016106df906124d0565b61236f6114d36109e4565b6114dd908361250d565b11156114fb5760405162461bcd60e51b81526004016106df90612525565b80600a54116115405760405162461bcd60e51b815260206004820152601160248201527008af0c6cacac840dac2f040e0cae440e8f607b1b60448201526064016106df565b3360009081526013602052604090205461155b90829061250d565b600a54116115a45760405162461bcd60e51b8152602060048201526016602482015275457863656564206d617820706572206164647265737360501b60448201526064016106df565b80600c546115b2919061254b565b34146115d05760405162461bcd60e51b81526004016106df9061256a565b33600090815260136020526040812080548392906115ef90849061250d565b909155506110f790503382611946565b6008546001600160a01b031633146116295760405162461bcd60e51b81526004016106df90612447565b61236f6116346109e4565b61163e908461250d565b111561165c5760405162461bcd60e51b81526004016106df90612525565b6106fb8183611946565b3332146116855760405162461bcd60e51b81526004016106df906124a5565b600b5460ff166001146116aa5760405162461bcd60e51b81526004016106df906124d0565b61236f6116b56109e4565b6116bf908461250d565b11156116dd5760405162461bcd60e51b81526004016106df90612525565b8160051161171c5760405162461bcd60e51b815260206004820152600c60248201526b06840dac2f040e0cae440e8f60a31b60448201526064016106df565b3360009081526011602052604090205461173790839061250d565b60051161177a5760405162461bcd60e51b815260206004820152601160248201527034206d617820706572206164647265737360781b60448201526064016106df565b6117843382610f08565b6117cb5760405162461bcd60e51b8152602060048201526018602482015277596f7520617265206e6f742077686974656c69737465642160401b60448201526064016106df565b6117dc82665c5edcbc29000061254b565b34146117fa5760405162461bcd60e51b81526004016106df9061256a565b336000908152601160205260408120805484929061099490849061250d565b6008546001600160a01b031633146118435760405162461bcd60e51b81526004016106df90612447565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b600081600111158015611879575060005482105b80156106af575050600090815260046020526040902054600160e01b161590565b60006118a58361102c565b90508180156118bd5750336001600160a01b03821614155b156118e9576118cc81336105ec565b6118e9576040516367d9dca160e11b815260040160405180910390fd5b60008381526006602052604080822080546001600160a01b0319166001600160a01b0388811691821790925591518693918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a450505050565b6106fb828260405180602001604052806000815250611cea565b600061196b82611b18565b9050836001600160a01b0316816001600160a01b03161461199e5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176119eb576119ce86336105ec565b6119eb57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516611a1257604051633a954ecd60e21b815260040160405180910390fd5b8015611a1d57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003611aaf57600184016000818152600460205260408120549003611aad576000548114611aad5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b611b13838383604051806020016040528060008152506111b2565b505050565b60008180600111611b7557600054811015611b755760008181526004602052604081205490600160e01b82169003611b73575b80600003611b6c575060001901600081815260046020526040902054611b4b565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b611b998484846109f2565b6001600160a01b0383163b15610b4857611bb584848484611d50565b610b48576040516368d2bf6b60e11b815260040160405180910390fd5b6060600f805461070e9061246b565b606081600003611c085750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c325780611c1c81612635565b9150611c2b9050600a836125d4565b9150611c0c565b60008167ffffffffffffffff811115611c4d57611c4d612005565b6040519080825280601f01601f191660200182016040528015611c77576020820181803683370190505b5090505b8415611ce257611c8c600183612711565b9150611c99600a86612728565b611ca490603061250d565b60f81b818381518110611cb957611cb961261f565b60200101906001600160f81b031916908160001a905350611cdb600a866125d4565b9450611c7b565b949350505050565b611cf48383611e3b565b6001600160a01b0383163b15611b13576000548281035b611d1e6000868380600101945086611d50565b611d3b576040516368d2bf6b60e11b815260040160405180910390fd5b818110611d0b578160005414610d4457600080fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611d8590339089908890889060040161273c565b6020604051808303816000875af1925050508015611dc0575060408051601f3d908101601f19168201909252611dbd91810190612779565b60015b611e1e573d808015611dee576040519150601f19603f3d011682016040523d82523d6000602084013e611df3565b606091505b508051600003611e16576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000805490829003611e605760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611f0f57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611ed7565b5081600003611f3057604051622e076360e81b815260040160405180910390fd5b60005550505050565b828054611f459061246b565b90600052602060002090601f016020900481019282611f675760008555611fad565b82601f10611f8057805160ff1916838001178555611fad565b82800160010185558215611fad579182015b82811115611fad578251825591602001919060010190611f92565b50611fb9929150611fbd565b5090565b5b80821115611fb95760008155600101611fbe565b6001600160e01b0319811681146110f757600080fd5b600060208284031215611ffa57600080fd5b8135611b6c81611fd2565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561204457612044612005565b604052919050565b600067ffffffffffffffff83111561206657612066612005565b612079601f8401601f191660200161201b565b905082815283838301111561208d57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156120b657600080fd5b813567ffffffffffffffff8111156120cd57600080fd5b8201601f810184136120de57600080fd5b611ce28482356020840161204c565b60005b838110156121085781810151838201526020016120f0565b83811115610b485750506000910152565b600081518084526121318160208601602086016120ed565b601f01601f19169290920160200192915050565b602081526000611b6c6020830184612119565b60006020828403121561216a57600080fd5b5035919050565b80356001600160a01b038116811461218857600080fd5b919050565b600080604083850312156121a057600080fd5b6121a983612171565b946020939093013593505050565b600082601f8301126121c857600080fd5b8135602067ffffffffffffffff8211156121e4576121e4612005565b8160051b6121f382820161201b565b928352848101820192828101908785111561220d57600080fd5b83870192505b8483101561222c57823582529183019190830190612213565b979650505050505050565b6000806040838503121561224a57600080fd5b82359150602083013567ffffffffffffffff81111561226857600080fd5b612274858286016121b7565b9150509250929050565b60006020828403121561229057600080fd5b813560ff81168114611b6c57600080fd5b6000806000606084860312156122b657600080fd5b6122bf84612171565b92506122cd60208501612171565b9150604084013590509250925092565b600080604083850312156122f057600080fd5b6122f983612171565b9150602083013567ffffffffffffffff81111561226857600080fd5b60006020828403121561232757600080fd5b611b6c82612171565b80151581146110f757600080fd5b6000806040838503121561235157600080fd5b61235a83612171565b9150602083013561236a81612330565b809150509250929050565b6000806000806080858703121561238b57600080fd5b61239485612171565b93506123a260208601612171565b925060408501359150606085013567ffffffffffffffff8111156123c557600080fd5b8501601f810187136123d657600080fd5b6123e58782356020840161204c565b91505092959194509250565b6000806040838503121561240457600080fd5b8235915061241460208401612171565b90509250929050565b6000806040838503121561243057600080fd5b61243983612171565b915061241460208401612171565b6020808252600a90820152694e6f74204f776e65722160b01b604082015260600190565b600181811c9082168061247f57607f821691505b60208210810361249f57634e487b7160e01b600052602260045260246000fd5b50919050565b602080825260119082015270139bc81cdb585c9d0818dbdb9d1c9858dd607a1b604082015260600190565b6020808252600d908201526c53616c6520696e61637469766560981b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612520576125206124f7565b500190565b6020808252600c908201526b4e6f206d6f7265204e46547360a01b604082015260600190565b6000816000190483118215151615612565576125656124f7565b500290565b60208082526019908201527f56616c75652073656e74206973206e6f7420636f727265637400000000000000604082015260600190565b6000602082840312156125b357600080fd5b8151611b6c81612330565b634e487b7160e01b600052601260045260246000fd5b6000826125e3576125e36125be565b500490565b60208082526018908201527f4661696c656420746f2077697468647261772045746865720000000000000000604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600060018201612647576126476124f7565b5060010190565b6000845160206126618285838a016120ed565b8551918401916126748184848a016120ed565b8554920191600090600181811c908083168061269157607f831692505b85831081036126ae57634e487b7160e01b85526022600452602485fd5b8080156126c257600181146126d357612700565b60ff19851688528388019550612700565b60008b81526020902060005b858110156126f85781548a8201529084019088016126df565b505083880195505b50939b9a5050505050505050505050565b600082821015612723576127236124f7565b500390565b600082612737576127376125be565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061276f90830184612119565b9695505050505050565b60006020828403121561278b57600080fd5b8151611b6c81611fd256fea2646970667358221220e724f96f8c8779bf4f2338d5bb337d1541efbea51b0ee1ab1417216c8235265e64736f6c634300080d0033697066733a2f2f516d61584a5a764a717263764d6f7774346d624241366a6a6739316859746d4e316f786978617238647837685254

Deployed Bytecode

0x60806040526004361061021a5760003560e01c80637664531511610123578063be0469a9116100ab578063e985e9c51161006f578063e985e9c5146105d1578063f07f11071461061a578063f0e4ab7a14610630578063f2fde38b14610643578063f64533751461054d57600080fd5b8063be0469a91461054d578063c87b56dd14610568578063ca69e32314610588578063d22b78d61461059e578063d52c57e0146105b157600080fd5b8063a08c008b116100f2578063a08c008b146104c4578063a22cb465146104e4578063a9e0d03914610504578063b88d4fde1461051a578063bc9817f41461052d57600080fd5b8063766453151461045a5780637cb647591461046f5780638da5cb5b1461048f57806395d89b41146104af57600080fd5b80633ccfd60b116101a657806355f804b31161017557806355f804b3146103ae5780635a23dd99146103ce578063603f4d52146103ee5780636352211e1461041a57806370a082311461043a57600080fd5b80633ccfd60b1461034c57806342842e0e146103615780635183022714610374578063547520fe1461038e57600080fd5b8063095ea7b3116101ed578063095ea7b3146102d057806310b778de146102e357806312e7a1bf146102f657806318160ddd1461031657806323b872dd1461033957600080fd5b806301ffc9a71461021f57806302ffaed11461025457806306fdde0314610276578063081812fc14610298575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611fe8565b610663565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061027461026f3660046120a4565b6106b5565b005b34801561028257600080fd5b5061028b6106ff565b60405161024b9190612145565b3480156102a457600080fd5b506102b86102b3366004612158565b610791565b6040516001600160a01b03909116815260200161024b565b6102746102de36600461218d565b6107d5565b6102746102f1366004612237565b6107e1565b34801561030257600080fd5b5061027461031136600461227e565b6109a4565b34801561032257600080fd5b5061032b6109e4565b60405190815260200161024b565b6102746103473660046122a1565b6109f2565b34801561035857600080fd5b50610274610b4e565b61027461036f3660046122a1565b610d4b565b34801561038057600080fd5b50600d5461023f9060ff1681565b34801561039a57600080fd5b506102746103a9366004612158565b610e9c565b3480156103ba57600080fd5b506102746103c93660046120a4565b610ecb565b3480156103da57600080fd5b5061023f6103e93660046122dd565b610f08565b3480156103fa57600080fd5b50600b546104089060ff1681565b60405160ff909116815260200161024b565b34801561042657600080fd5b506102b8610435366004612158565b61102c565b34801561044657600080fd5b5061032b610455366004612315565b611037565b34801561046657600080fd5b50610274611086565b34801561047b57600080fd5b5061027461048a366004612158565b6110c4565b34801561049b57600080fd5b506008546102b8906001600160a01b031681565b3480156104bb57600080fd5b5061028b6110fa565b3480156104d057600080fd5b506102746104df3660046120a4565b611109565b3480156104f057600080fd5b506102746104ff36600461233e565b611146565b34801561051057600080fd5b5061032b600c5481565b610274610528366004612375565b6111b2565b34801561053957600080fd5b50610274610548366004612158565b61130a565b34801561055957600080fd5b5061032b665c5edcbc29000081565b34801561057457600080fd5b5061028b610583366004612158565b611339565b34801561059457600080fd5b5061032b61236f81565b6102746105ac366004612158565b611484565b3480156105bd57600080fd5b506102746105cc3660046123f1565b6115ff565b3480156105dd57600080fd5b5061023f6105ec36600461241d565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561062657600080fd5b5061032b600a5481565b61027461063e366004612237565b611666565b34801561064f57600080fd5b5061027461065e366004612315565b611819565b60006301ffc9a760e01b6001600160e01b03198316148061069457506380ac58cd60e01b6001600160e01b03198316145b806106af5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146106e85760405162461bcd60e51b81526004016106df90612447565b60405180910390fd5b80516106fb906010906020840190611f39565b5050565b60606002805461070e9061246b565b80601f016020809104026020016040519081016040528092919081815260200182805461073a9061246b565b80156107875780601f1061075c57610100808354040283529160200191610787565b820191906000526020600020905b81548152906001019060200180831161076a57829003601f168201915b5050505050905090565b600061079c82611865565b6107b9576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6106fb8282600161189a565b3332146108005760405162461bcd60e51b81526004016106df906124a5565b600b5460ff166002146108255760405162461bcd60e51b81526004016106df906124d0565b61236f6108306109e4565b61083a908461250d565b11156108585760405162461bcd60e51b81526004016106df90612525565b816003116108975760405162461bcd60e51b815260206004820152600c60248201526b06440dac2f040e0cae440e8f60a31b60448201526064016106df565b336000908152601260205260409020546108b290839061250d565b6003116108f55760405162461bcd60e51b815260206004820152601160248201527032206d617820706572206164647265737360781b60448201526064016106df565b6108ff3382610f08565b6109465760405162461bcd60e51b8152602060048201526018602482015277596f7520617265206e6f742077686974656c69737465642160401b60448201526064016106df565b61095782665c5edcbc29000061254b565b34146109755760405162461bcd60e51b81526004016106df9061256a565b336000908152601260205260408120805484929061099490849061250d565b909155506106fb90503383611946565b6008546001600160a01b031633146109ce5760405162461bcd60e51b81526004016106df90612447565b600b805460ff191660ff92909216919091179055565b600154600054036000190190565b826daaeb6d7670e522a718067333cd4e3b15610b3d57336001600160a01b03821603610a2857610a23848484611960565b610b48565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610a77573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a9b91906125a1565b8015610b1e5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610afa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b1e91906125a1565b610b3d57604051633b79c77360e21b81523360048201526024016106df565b610b48848484611960565b50505050565b6008546001600160a01b03163314610b785760405162461bcd60e51b81526004016106df90612447565b4773063b630879ced8940842c4949af7c7c34580943b73646a431394efda5bb0601882a978695be402b29573615a9ccb16c5abe3253bd600f382f206c03dc3ba6000836103e8610bca876101f461254b565b610bd491906125d4565b604051600081818185875af1925050503d8060008114610c10576040519150601f19603f3d011682016040523d82523d6000602084013e610c15565b606091505b50508091505080610c385760405162461bcd60e51b81526004016106df906125e8565b6001600160a01b0383166103e8610c508760fa61254b565b610c5a91906125d4565b604051600081818185875af1925050503d8060008114610c96576040519150601f19603f3d011682016040523d82523d6000602084013e610c9b565b606091505b50508091505080610cbe5760405162461bcd60e51b81526004016106df906125e8565b6001600160a01b0382166103e8610cd68760fa61254b565b610ce091906125d4565b604051600081818185875af1925050503d8060008114610d1c576040519150601f19603f3d011682016040523d82523d6000602084013e610d21565b606091505b50508091505080610d445760405162461bcd60e51b81526004016106df906125e8565b5050505050565b826daaeb6d7670e522a718067333cd4e3b15610e9157336001600160a01b03821603610d7c57610a23848484611af8565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610dcb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610def91906125a1565b8015610e725750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610e4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e7291906125a1565b610e9157604051633b79c77360e21b81523360048201526024016106df565b610b48848484611af8565b6008546001600160a01b03163314610ec65760405162461bcd60e51b81526004016106df90612447565b600a55565b6008546001600160a01b03163314610ef55760405162461bcd60e51b81526004016106df90612447565b80516106fb90600f906020840190611f39565b6040516bffffffffffffffffffffffff19606084901b166020820152600090819060340160405160208183030381529060405280519060200120905060005b835181101561102057838181518110610f6257610f6261261f565b60200260200101518210610fc057838181518110610f8257610f8261261f565b602002602001015182604051602001610fa5929190918252602082015260400190565b6040516020818303038152906040528051906020012061100c565b81848281518110610fd357610fd361261f565b6020026020010151604051602001610ff5929190918252602082015260400190565b604051602081830303815290604052805190602001205b91508061101881612635565b915050610f47565b50600954149392505050565b60006106af82611b18565b60006001600160a01b038216611060576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146110b05760405162461bcd60e51b81526004016106df90612447565b600d805460ff19811660ff90911615179055565b6008546001600160a01b031633146110ee5760405162461bcd60e51b81526004016106df90612447565b6110f781600955565b50565b60606003805461070e9061246b565b6008546001600160a01b031633146111335760405162461bcd60e51b81526004016106df90612447565b80516106fb90600e906020840190611f39565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b836daaeb6d7670e522a718067333cd4e3b156112fe57336001600160a01b038216036111e9576111e485858585611b8e565b610d44565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611238573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061125c91906125a1565b80156112df5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156112bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112df91906125a1565b6112fe57604051633b79c77360e21b81523360048201526024016106df565b610d4485858585611b8e565b6008546001600160a01b031633146113345760405162461bcd60e51b81526004016106df90612447565b600c55565b606061134482611865565b6113a85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106df565b600d5460ff16151560000361144957600e80546113c49061246b565b80601f01602080910402602001604051908101604052809291908181526020018280546113f09061246b565b801561143d5780601f106114125761010080835404028352916020019161143d565b820191906000526020600020905b81548152906001019060200180831161142057829003601f168201915b50505050509050919050565b611451611bd2565b61145a83611be1565b601060405160200161146e9392919061264e565b6040516020818303038152906040529050919050565b3332146114a35760405162461bcd60e51b81526004016106df906124a5565b600b5460ff166003146114c85760405162461bcd60e51b81526004016106df906124d0565b61236f6114d36109e4565b6114dd908361250d565b11156114fb5760405162461bcd60e51b81526004016106df90612525565b80600a54116115405760405162461bcd60e51b815260206004820152601160248201527008af0c6cacac840dac2f040e0cae440e8f607b1b60448201526064016106df565b3360009081526013602052604090205461155b90829061250d565b600a54116115a45760405162461bcd60e51b8152602060048201526016602482015275457863656564206d617820706572206164647265737360501b60448201526064016106df565b80600c546115b2919061254b565b34146115d05760405162461bcd60e51b81526004016106df9061256a565b33600090815260136020526040812080548392906115ef90849061250d565b909155506110f790503382611946565b6008546001600160a01b031633146116295760405162461bcd60e51b81526004016106df90612447565b61236f6116346109e4565b61163e908461250d565b111561165c5760405162461bcd60e51b81526004016106df90612525565b6106fb8183611946565b3332146116855760405162461bcd60e51b81526004016106df906124a5565b600b5460ff166001146116aa5760405162461bcd60e51b81526004016106df906124d0565b61236f6116b56109e4565b6116bf908461250d565b11156116dd5760405162461bcd60e51b81526004016106df90612525565b8160051161171c5760405162461bcd60e51b815260206004820152600c60248201526b06840dac2f040e0cae440e8f60a31b60448201526064016106df565b3360009081526011602052604090205461173790839061250d565b60051161177a5760405162461bcd60e51b815260206004820152601160248201527034206d617820706572206164647265737360781b60448201526064016106df565b6117843382610f08565b6117cb5760405162461bcd60e51b8152602060048201526018602482015277596f7520617265206e6f742077686974656c69737465642160401b60448201526064016106df565b6117dc82665c5edcbc29000061254b565b34146117fa5760405162461bcd60e51b81526004016106df9061256a565b336000908152601160205260408120805484929061099490849061250d565b6008546001600160a01b031633146118435760405162461bcd60e51b81526004016106df90612447565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b600081600111158015611879575060005482105b80156106af575050600090815260046020526040902054600160e01b161590565b60006118a58361102c565b90508180156118bd5750336001600160a01b03821614155b156118e9576118cc81336105ec565b6118e9576040516367d9dca160e11b815260040160405180910390fd5b60008381526006602052604080822080546001600160a01b0319166001600160a01b0388811691821790925591518693918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a450505050565b6106fb828260405180602001604052806000815250611cea565b600061196b82611b18565b9050836001600160a01b0316816001600160a01b03161461199e5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176119eb576119ce86336105ec565b6119eb57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516611a1257604051633a954ecd60e21b815260040160405180910390fd5b8015611a1d57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003611aaf57600184016000818152600460205260408120549003611aad576000548114611aad5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b611b13838383604051806020016040528060008152506111b2565b505050565b60008180600111611b7557600054811015611b755760008181526004602052604081205490600160e01b82169003611b73575b80600003611b6c575060001901600081815260046020526040902054611b4b565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b611b998484846109f2565b6001600160a01b0383163b15610b4857611bb584848484611d50565b610b48576040516368d2bf6b60e11b815260040160405180910390fd5b6060600f805461070e9061246b565b606081600003611c085750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c325780611c1c81612635565b9150611c2b9050600a836125d4565b9150611c0c565b60008167ffffffffffffffff811115611c4d57611c4d612005565b6040519080825280601f01601f191660200182016040528015611c77576020820181803683370190505b5090505b8415611ce257611c8c600183612711565b9150611c99600a86612728565b611ca490603061250d565b60f81b818381518110611cb957611cb961261f565b60200101906001600160f81b031916908160001a905350611cdb600a866125d4565b9450611c7b565b949350505050565b611cf48383611e3b565b6001600160a01b0383163b15611b13576000548281035b611d1e6000868380600101945086611d50565b611d3b576040516368d2bf6b60e11b815260040160405180910390fd5b818110611d0b578160005414610d4457600080fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611d8590339089908890889060040161273c565b6020604051808303816000875af1925050508015611dc0575060408051601f3d908101601f19168201909252611dbd91810190612779565b60015b611e1e573d808015611dee576040519150601f19603f3d011682016040523d82523d6000602084013e611df3565b606091505b508051600003611e16576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000805490829003611e605760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611f0f57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611ed7565b5081600003611f3057604051622e076360e81b815260040160405180910390fd5b60005550505050565b828054611f459061246b565b90600052602060002090601f016020900481019282611f675760008555611fad565b82601f10611f8057805160ff1916838001178555611fad565b82800160010185558215611fad579182015b82811115611fad578251825591602001919060010190611f92565b50611fb9929150611fbd565b5090565b5b80821115611fb95760008155600101611fbe565b6001600160e01b0319811681146110f757600080fd5b600060208284031215611ffa57600080fd5b8135611b6c81611fd2565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561204457612044612005565b604052919050565b600067ffffffffffffffff83111561206657612066612005565b612079601f8401601f191660200161201b565b905082815283838301111561208d57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156120b657600080fd5b813567ffffffffffffffff8111156120cd57600080fd5b8201601f810184136120de57600080fd5b611ce28482356020840161204c565b60005b838110156121085781810151838201526020016120f0565b83811115610b485750506000910152565b600081518084526121318160208601602086016120ed565b601f01601f19169290920160200192915050565b602081526000611b6c6020830184612119565b60006020828403121561216a57600080fd5b5035919050565b80356001600160a01b038116811461218857600080fd5b919050565b600080604083850312156121a057600080fd5b6121a983612171565b946020939093013593505050565b600082601f8301126121c857600080fd5b8135602067ffffffffffffffff8211156121e4576121e4612005565b8160051b6121f382820161201b565b928352848101820192828101908785111561220d57600080fd5b83870192505b8483101561222c57823582529183019190830190612213565b979650505050505050565b6000806040838503121561224a57600080fd5b82359150602083013567ffffffffffffffff81111561226857600080fd5b612274858286016121b7565b9150509250929050565b60006020828403121561229057600080fd5b813560ff81168114611b6c57600080fd5b6000806000606084860312156122b657600080fd5b6122bf84612171565b92506122cd60208501612171565b9150604084013590509250925092565b600080604083850312156122f057600080fd5b6122f983612171565b9150602083013567ffffffffffffffff81111561226857600080fd5b60006020828403121561232757600080fd5b611b6c82612171565b80151581146110f757600080fd5b6000806040838503121561235157600080fd5b61235a83612171565b9150602083013561236a81612330565b809150509250929050565b6000806000806080858703121561238b57600080fd5b61239485612171565b93506123a260208601612171565b925060408501359150606085013567ffffffffffffffff8111156123c557600080fd5b8501601f810187136123d657600080fd5b6123e58782356020840161204c565b91505092959194509250565b6000806040838503121561240457600080fd5b8235915061241460208401612171565b90509250929050565b6000806040838503121561243057600080fd5b61243983612171565b915061241460208401612171565b6020808252600a90820152694e6f74204f776e65722160b01b604082015260600190565b600181811c9082168061247f57607f821691505b60208210810361249f57634e487b7160e01b600052602260045260246000fd5b50919050565b602080825260119082015270139bc81cdb585c9d0818dbdb9d1c9858dd607a1b604082015260600190565b6020808252600d908201526c53616c6520696e61637469766560981b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612520576125206124f7565b500190565b6020808252600c908201526b4e6f206d6f7265204e46547360a01b604082015260600190565b6000816000190483118215151615612565576125656124f7565b500290565b60208082526019908201527f56616c75652073656e74206973206e6f7420636f727265637400000000000000604082015260600190565b6000602082840312156125b357600080fd5b8151611b6c81612330565b634e487b7160e01b600052601260045260246000fd5b6000826125e3576125e36125be565b500490565b60208082526018908201527f4661696c656420746f2077697468647261772045746865720000000000000000604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600060018201612647576126476124f7565b5060010190565b6000845160206126618285838a016120ed565b8551918401916126748184848a016120ed565b8554920191600090600181811c908083168061269157607f831692505b85831081036126ae57634e487b7160e01b85526022600452602485fd5b8080156126c257600181146126d357612700565b60ff19851688528388019550612700565b60008b81526020902060005b858110156126f85781548a8201529084019088016126df565b505083880195505b50939b9a5050505050505050505050565b600082821015612723576127236124f7565b500390565b600082612737576127376125be565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061276f90830184612119565b9695505050505050565b60006020828403121561278b57600080fd5b8151611b6c81611fd256fea2646970667358221220e724f96f8c8779bf4f2338d5bb337d1541efbea51b0ee1ab1417216c8235265e64736f6c634300080d0033

Deployed Bytecode Sourcemap

61817:5898:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20193:639;;;;;;;;;;-1:-1:-1;20193:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;20193:639:0;;;;;;;;65413:108;;;;;;;;;;-1:-1:-1;65413:108:0;;;;;:::i;:::-;;:::i;:::-;;21095:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27058:218::-;;;;;;;;;;-1:-1:-1;27058:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2972:32:1;;;2954:51;;2942:2;2927:18;27058:218:0;2808:203:1;26775:124:0;;;;;;:::i;:::-;;:::i;63559:590::-;;;;;;:::i;:::-;;:::i;64695:93::-;;;;;;;;;;-1:-1:-1;64695:93:0;;;;;:::i;:::-;;:::i;16846:323::-;;;;;;;;;;;;;:::i;:::-;;;5011:25:1;;;4999:2;4984:18;16846:323:0;4865:177:1;67019:212:0;;;;;;:::i;:::-;;:::i;65529:725::-;;;;;;;;;;;;;:::i;67239:220::-;;;;;;:::i;:::-;;:::i;62230:20::-;;;;;;;;;;-1:-1:-1;62230:20:0;;;;;;;;64796:92;;;;;;;;;;-1:-1:-1;64796:92:0;;;;;:::i;:::-;;:::i;65310:95::-;;;;;;;;;;-1:-1:-1;65310:95:0;;;;;:::i;:::-;;:::i;58543:405::-;;;;;;;;;;-1:-1:-1;58543:405:0;;;;;:::i;:::-;;:::i;62004:26::-;;;;;;;;;;-1:-1:-1;62004:26:0;;;;;;;;;;;5979:4:1;5967:17;;;5949:36;;5937:2;5922:18;62004:26:0;5807:184:1;22488:152:0;;;;;;;;;;-1:-1:-1;22488:152:0;;;;;:::i;:::-;;:::i;18030:233::-;;;;;;;;;;-1:-1:-1;18030:233:0;;;;;:::i;:::-;;:::i;65119:77::-;;;;;;;;;;;;;:::i;65002:109::-;;;;;;;;;;-1:-1:-1;65002:109:0;;;;;:::i;:::-;;:::i;53968:20::-;;;;;;;;;;-1:-1:-1;53968:20:0;;;;-1:-1:-1;;;;;53968:20:0;;;21271:104;;;;;;;;;;;;;:::i;65204:98::-;;;;;;;;;;-1:-1:-1;65204:98:0;;;;;:::i;:::-;;:::i;27616:234::-;;;;;;;;;;-1:-1:-1;27616:234:0;;;;;:::i;:::-;;:::i;62181:40::-;;;;;;;;;;;;;;;;67467:245;;;;;;:::i;:::-;;:::i;64896:98::-;;;;;;;;;;-1:-1:-1;64896:98:0;;;;;:::i;:::-;;:::i;62067:50::-;;;;;;;;;;;;62106:11;62067:50;;66502:359;;;;;;;;;;-1:-1:-1;66502:359:0;;;;;:::i;:::-;;:::i;61894:39::-;;;;;;;;;;;;61929:4;61894:39;;64157:506;;;;;;:::i;:::-;;:::i;62761:192::-;;;;;;;;;;-1:-1:-1;62761:192:0;;;;;:::i;:::-;;:::i;28007:164::-;;;;;;;;;;-1:-1:-1;28007:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28128:25:0;;;28104:4;28128:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28007:164;61940:28;;;;;;;;;;;;;;;;62961:590;;;;;;:::i;:::-;;:::i;54114:77::-;;;;;;;;;;-1:-1:-1;54114:77:0;;;;;:::i;:::-;;:::i;20193:639::-;20278:4;-1:-1:-1;;;;;;;;;20602:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;20679:25:0;;;20602:102;:179;;;-1:-1:-1;;;;;;;;;;20756:25:0;;;20602:179;20582:199;20193:639;-1:-1:-1;;20193:639:0:o;65413:108::-;54068:5;;-1:-1:-1;;;;;54068:5:0;54077:10;54068:19;54060:42;;;;-1:-1:-1;;;54060:42:0;;;;;;;:::i;:::-;;;;;;;;;65490:23;;::::1;::::0;:16:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;:::-;;65413:108:::0;:::o;21095:100::-;21149:13;21182:5;21175:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21095:100;:::o;27058:218::-;27134:7;27159:16;27167:7;27159;:16::i;:::-;27154:64;;27184:34;;-1:-1:-1;;;27184:34:0;;;;;;;;;;;27154:64;-1:-1:-1;27238:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;27238:30:0;;27058:218::o;26775:124::-;26864:27;26873:2;26877:7;26886:4;26864:8;:27::i;63559:590::-;66928:10;66942:9;66928:23;66920:53;;;;-1:-1:-1;;;66920:53:0;;;;;;;:::i;:::-;63664:9:::1;::::0;::::1;;63677:1;63664:14;63656:40;;;;-1:-1:-1::0;;;63656:40:0::1;;;;;;;:::i;:::-;61929:4;63725:13;:11;:13::i;:::-;63715:23;::::0;:7;:23:::1;:::i;:::-;:35;;63707:60;;;;-1:-1:-1::0;;;63707:60:0::1;;;;;;;:::i;:::-;63790:7;63786:1;:11;63778:36;;;::::0;-1:-1:-1;;;63778:36:0;;10231:2:1;63778:36:0::1;::::0;::::1;10213:21:1::0;10270:2;10250:18;;;10243:30;-1:-1:-1;;;10289:18:1;;;10282:42;10341:18;;63778:36:0::1;10029:336:1::0;63778:36:0::1;63847:10;63837:21;::::0;;;:9:::1;:21;::::0;;;;;:31:::1;::::0;63861:7;;63837:31:::1;:::i;:::-;63833:1;:35;63825:65;;;::::0;-1:-1:-1;;;63825:65:0;;10572:2:1;63825:65:0::1;::::0;::::1;10554:21:1::0;10611:2;10591:18;;;10584:30;-1:-1:-1;;;10630:18:1;;;10623:47;10687:18;;63825:65:0::1;10370:341:1::0;63825:65:0::1;63909:33;63923:10;63935:6;63909:13;:33::i;:::-;63901:70;;;::::0;-1:-1:-1;;;63901:70:0;;10918:2:1;63901:70:0::1;::::0;::::1;10900:21:1::0;10957:2;10937:18;;;10930:30;-1:-1:-1;;;10976:18:1;;;10969:54;11040:18;;63901:70:0::1;10716:348:1::0;63901:70:0::1;64003:22;64018:7:::0;62163:11:::1;64003:22;:::i;:::-;63990:9;:35;63982:73;;;;-1:-1:-1::0;;;63982:73:0::1;;;;;;;:::i;:::-;64078:10;64068:21;::::0;;;:9:::1;:21;::::0;;;;:32;;64093:7;;64068:21;:32:::1;::::0;64093:7;;64068:32:::1;:::i;:::-;::::0;;;-1:-1:-1;64111:30:0::1;::::0;-1:-1:-1;64121:10:0::1;64133:7:::0;64111:9:::1;:30::i;64695:93::-:0;54068:5;;-1:-1:-1;;;;;54068:5:0;54077:10;54068:19;54060:42;;;;-1:-1:-1;;;54060:42:0;;;;;;;:::i;:::-;64762:9:::1;:18:::0;;-1:-1:-1;;64762:18:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;64695:93::o;16846:323::-;66377:1;17120:12;16907:7;17104:13;:28;-1:-1:-1;;17104:46:0;;16846:323::o;67019:212::-;67164:4;56498:42;57638:43;:47;57634:699;;57925:10;-1:-1:-1;;;;;57917:18:0;;;57913:85;;67186:37:::1;67205:4;67211:2;67215:7;67186:18;:37::i;:::-;57976:7:::0;;57913:85;58058:67;;-1:-1:-1;;;58058:67:0;;58107:4;58058:67;;;11808:34:1;58114:10:0;11858:18:1;;;11851:43;56498:42:0;;58058:40;;11743:18:1;;58058:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;58154:61:0;;-1:-1:-1;;;58154:61:0;;58203:4;58154:61;;;11808:34:1;-1:-1:-1;;;;;11878:15:1;;11858:18;;;11851:43;56498:42:0;;58154:40;;11743:18:1;;58154:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58012:310;;58276:30;;-1:-1:-1;;;58276:30:0;;58295:10;58276:30;;;2954:51:1;2927:18;;58276:30:0;2808:203:1;58012:310:0;67186:37:::1;67205:4;67211:2;67215:7;67186:18;:37::i;:::-;67019:212:::0;;;;:::o;65529:725::-;54068:5;;-1:-1:-1;;;;;54068:5:0;54077:10;54068:19;54060:42;;;;-1:-1:-1;;;54060:42:0;;;;;;;:::i;:::-;65598:21:::1;65653:42;65728;65803;65577:18;65653:42:::0;65931:4:::1;65914:16;65598:21:::0;65927:3:::1;65914:16;:::i;:::-;:21;;;;:::i;:::-;65898:43;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65884:57;;;;;65960:7;65952:44;;;;-1:-1:-1::0;;;65952:44:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;66023:7:0;::::1;66056:4;66039:16;:10:::0;66052:3:::1;66039:16;:::i;:::-;:21;;;;:::i;:::-;66023:43;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66009:57;;;;;66085:7;66077:44;;;;-1:-1:-1::0;;;66077:44:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;66148:7:0;::::1;66181:4;66164:16;:10:::0;66177:3:::1;66164:16;:::i;:::-;:21;;;;:::i;:::-;66148:43;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66134:57;;;;;66210:7;66202:44;;;;-1:-1:-1::0;;;66202:44:0::1;;;;;;;:::i;:::-;65566:688;;;;;65529:725::o:0;67239:220::-;67388:4;56498:42;57638:43;:47;57634:699;;57925:10;-1:-1:-1;;;;;57917:18:0;;;57913:85;;67410:41:::1;67433:4;67439:2;67443:7;67410:22;:41::i;57913:85::-:0;58058:67;;-1:-1:-1;;;58058:67:0;;58107:4;58058:67;;;11808:34:1;58114:10:0;11858:18:1;;;11851:43;56498:42:0;;58058:40;;11743:18:1;;58058:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;58154:61:0;;-1:-1:-1;;;58154:61:0;;58203:4;58154:61;;;11808:34:1;-1:-1:-1;;;;;11878:15:1;;11858:18;;;11851:43;56498:42:0;;58154:40;;11743:18:1;;58154:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58012:310;;58276:30;;-1:-1:-1;;;58276:30:0;;58295:10;58276:30;;;2954:51:1;2927:18;;58276:30:0;2808:203:1;58012:310:0;67410:41:::1;67433:4;67439:2;67443:7;67410:22;:41::i;64796:92::-:0;54068:5;;-1:-1:-1;;;;;54068:5:0;54077:10;54068:19;54060:42;;;;-1:-1:-1;;;54060:42:0;;;;;;;:::i;:::-;64862:9:::1;:18:::0;64796:92::o;65310:95::-;54068:5;;-1:-1:-1;;;;;54068:5:0;54077:10;54068:19;54060:42;;;;-1:-1:-1;;;54060:42:0;;;;;;;:::i;:::-;65378:19;;::::1;::::0;:12:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;58543:405::-:0;58673:26;;-1:-1:-1;;13124:2:1;13120:15;;;13116:53;58673:26:0;;;13104:66:1;58630:4:0;;;;13186:12:1;;58673:26:0;;;;;;;;;;;;58663:37;;;;;;58647:53;;58716:9;58711:192;58735:6;:13;58731:1;:17;58711:192;;;58786:6;58793:1;58786:9;;;;;;;;:::i;:::-;;;;;;;58778:5;:17;:113;;58873:6;58880:1;58873:9;;;;;;;;:::i;:::-;;;;;;;58884:5;58856:34;;;;;;;;13498:19:1;;;13542:2;13533:12;;13526:28;13579:2;13570:12;;13341:247;58856:34:0;;;;;;;;;;;;;58846:45;;;;;;58778:113;;;58825:5;58832:6;58839:1;58832:9;;;;;;;;:::i;:::-;;;;;;;58808:34;;;;;;;;13498:19:1;;;13542:2;13533:12;;13526:28;13579:2;13570:12;;13341:247;58808:34:0;;;;;;;;;;;;;58798:45;;;;;;58778:113;58770:121;-1:-1:-1;58750:3:0;;;;:::i;:::-;;;;58711:192;;;-1:-1:-1;58929:11:0;;58920:20;;58543:405;-1:-1:-1;;;58543:405:0:o;22488:152::-;22560:7;22603:27;22622:7;22603:18;:27::i;18030:233::-;18102:7;-1:-1:-1;;;;;18126:19:0;;18122:60;;18154:28;;-1:-1:-1;;;18154:28:0;;;;;;;;;;;18122:60;-1:-1:-1;;;;;;18200:25:0;;;;;:18;:25;;;;;;12189:13;18200:55;;18030:233::o;65119:77::-;54068:5;;-1:-1:-1;;;;;54068:5:0;54077:10;54068:19;54060:42;;;;-1:-1:-1;;;54060:42:0;;;;;;;:::i;:::-;65180:8:::1;::::0;;-1:-1:-1;;65168:20:0;::::1;65180:8;::::0;;::::1;65179:9;65168:20;::::0;;65119:77::o;65002:109::-;54068:5;;-1:-1:-1;;;;;54068:5:0;54077:10;54068:19;54060:42;;;;-1:-1:-1;;;54060:42:0;;;;;;;:::i;:::-;65076:27:::1;65091:11;58504::::0;:25;58431:106;65076:27:::1;65002:109:::0;:::o;21271:104::-;21327:13;21360:7;21353:14;;;;;:::i;65204:98::-;54068:5;;-1:-1:-1;;;;;54068:5:0;54077:10;54068:19;54060:42;;;;-1:-1:-1;;;54060:42:0;;;;;;;:::i;:::-;65278:16;;::::1;::::0;:9:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;27616:234::-:0;52063:10;27711:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;27711:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;27711:60:0;;;;;;;;;;27787:55;;540:41:1;;;27711:49:0;;52063:10;27787:55;;513:18:1;27787:55:0;;;;;;;27616:234;;:::o;67467:245::-;67635:4;56498:42;57638:43;:47;57634:699;;57925:10;-1:-1:-1;;;;;57917:18:0;;;57913:85;;67657:47:::1;67680:4;67686:2;67690:7;67699:4;67657:22;:47::i;:::-;57976:7:::0;;57913:85;58058:67;;-1:-1:-1;;;58058:67:0;;58107:4;58058:67;;;11808:34:1;58114:10:0;11858:18:1;;;11851:43;56498:42:0;;58058:40;;11743:18:1;;58058:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;58154:61:0;;-1:-1:-1;;;58154:61:0;;58203:4;58154:61;;;11808:34:1;-1:-1:-1;;;;;11878:15:1;;11858:18;;;11851:43;56498:42:0;;58154:40;;11743:18:1;;58154:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58012:310;;58276:30;;-1:-1:-1;;;58276:30:0;;58295:10;58276:30;;;2954:51:1;2927:18;;58276:30:0;2808:203:1;58012:310:0;67657:47:::1;67680:4;67686:2;67690:7;67699:4;67657:22;:47::i;64896:98::-:0;54068:5;;-1:-1:-1;;;;;54068:5:0;54077:10;54068:19;54060:42;;;;-1:-1:-1;;;54060:42:0;;;;;;;:::i;:::-;64964:11:::1;:22:::0;64896:98::o;66502:359::-;66575:13;66609:16;66617:7;66609;:16::i;:::-;66601:76;;;;-1:-1:-1;;;66601:76:0;;13935:2:1;66601:76:0;;;13917:21:1;13974:2;13954:18;;;13947:30;14013:34;13993:18;;;13986:62;-1:-1:-1;;;14064:18:1;;;14057:45;14119:19;;66601:76:0;13733:411:1;66601:76:0;66691:8;;;;:17;;:8;:17;66688:61;;66728:9;66721:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66502:359;;;:::o;66688:61::-;66790:16;:14;:16::i;:::-;66808:25;66825:7;66808:16;:25::i;:::-;66835:16;66773:79;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;66759:94;;66502:359;;;:::o;64157:506::-;66928:10;66942:9;66928:23;66920:53;;;;-1:-1:-1;;;66920:53:0;;;;;;;:::i;:::-;64236:9:::1;::::0;::::1;;64249:1;64236:14;64228:40;;;;-1:-1:-1::0;;;64228:40:0::1;;;;;;;:::i;:::-;61929:4;64297:13;:11;:13::i;:::-;64287:23;::::0;:7;:23:::1;:::i;:::-;:35;;64279:60;;;;-1:-1:-1::0;;;64279:60:0::1;;;;;;;:::i;:::-;64370:7;64358:9;;:19;64350:49;;;::::0;-1:-1:-1;;;64350:49:0;;16009:2:1;64350:49:0::1;::::0;::::1;15991:21:1::0;16048:2;16028:18;;;16021:30;-1:-1:-1;;;16067:18:1;;;16060:47;16124:18;;64350:49:0::1;15807:341:1::0;64350:49:0::1;64439:10;64430:20;::::0;;;:8:::1;:20;::::0;;;;;:30:::1;::::0;64453:7;;64430:30:::1;:::i;:::-;64418:9;;:42;64410:77;;;::::0;-1:-1:-1;;;64410:77:0;;16355:2:1;64410:77:0::1;::::0;::::1;16337:21:1::0;16394:2;16374:18;;;16367:30;-1:-1:-1;;;16413:18:1;;;16406:52;16475:18;;64410:77:0::1;16153:346:1::0;64410:77:0::1;64533:7;64519:11;;:21;;;;:::i;:::-;64506:9;:34;64498:72;;;;-1:-1:-1::0;;;64498:72:0::1;;;;;;;:::i;:::-;64592:10;64583:20;::::0;;;:8:::1;:20;::::0;;;;:31;;64607:7;;64583:20;:31:::1;::::0;64607:7;;64583:31:::1;:::i;:::-;::::0;;;-1:-1:-1;64625:30:0::1;::::0;-1:-1:-1;64635:10:0::1;64647:7:::0;64625:9:::1;:30::i;62761:192::-:0;54068:5;;-1:-1:-1;;;;;54068:5:0;54077:10;54068:19;54060:42;;;;-1:-1:-1;;;54060:42:0;;;;;;;:::i;:::-;61929:4:::1;62862:13;:11;:13::i;:::-;62852:23;::::0;:7;:23:::1;:::i;:::-;:35;;62844:60;;;;-1:-1:-1::0;;;62844:60:0::1;;;;;;;:::i;:::-;62917:28;62927:8;62937:7;62917:9;:28::i;62961:590::-:0;66928:10;66942:9;66928:23;66920:53;;;;-1:-1:-1;;;66920:53:0;;;;;;;:::i;:::-;63066:9:::1;::::0;::::1;;::::0;:14:::1;63058:40;;;;-1:-1:-1::0;;;63058:40:0::1;;;;;;;:::i;:::-;61929:4;63127:13;:11;:13::i;:::-;63117:23;::::0;:7;:23:::1;:::i;:::-;:35;;63109:60;;;;-1:-1:-1::0;;;63109:60:0::1;;;;;;;:::i;:::-;63192:7;63188:1;:11;63180:36;;;::::0;-1:-1:-1;;;63180:36:0;;16706:2:1;63180:36:0::1;::::0;::::1;16688:21:1::0;16745:2;16725:18;;;16718:30;-1:-1:-1;;;16764:18:1;;;16757:42;16816:18;;63180:36:0::1;16504:336:1::0;63180:36:0::1;63249:10;63239:21;::::0;;;:9:::1;:21;::::0;;;;;:31:::1;::::0;63263:7;;63239:31:::1;:::i;:::-;63235:1;:35;63227:65;;;::::0;-1:-1:-1;;;63227:65:0;;17047:2:1;63227:65:0::1;::::0;::::1;17029:21:1::0;17086:2;17066:18;;;17059:30;-1:-1:-1;;;17105:18:1;;;17098:47;17162:18;;63227:65:0::1;16845:341:1::0;63227:65:0::1;63311:33;63325:10;63337:6;63311:13;:33::i;:::-;63303:70;;;::::0;-1:-1:-1;;;63303:70:0;;10918:2:1;63303:70:0::1;::::0;::::1;10900:21:1::0;10957:2;10937:18;;;10930:30;-1:-1:-1;;;10976:18:1;;;10969:54;11040:18;;63303:70:0::1;10716:348:1::0;63303:70:0::1;63405:22;63420:7:::0;62106:11:::1;63405:22;:::i;:::-;63392:9;:35;63384:73;;;;-1:-1:-1::0;;;63384:73:0::1;;;;;;;:::i;:::-;63480:10;63470:21;::::0;;;:9:::1;:21;::::0;;;;:32;;63495:7;;63470:21;:32:::1;::::0;63495:7;;63470:32:::1;:::i;54114:77::-:0;54068:5;;-1:-1:-1;;;;;54068:5:0;54077:10;54068:19;54060:42;;;;-1:-1:-1;;;54060:42:0;;;;;;;:::i;:::-;54176:5:::1;:12:::0;;-1:-1:-1;;;;;;54176:12:0::1;-1:-1:-1::0;;;;;54176:12:0;;;::::1;::::0;;;::::1;::::0;;54114:77::o;28429:282::-;28494:4;28550:7;66377:1;28531:26;;:66;;;;;28584:13;;28574:7;:23;28531:66;:153;;;;-1:-1:-1;;28635:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;28635:44:0;:49;;28429:282::o;45489:431::-;45584:13;45600:16;45608:7;45600;:16::i;:::-;45584:32;;45633:13;:45;;;;-1:-1:-1;52063:10:0;-1:-1:-1;;;;;45650:28:0;;;;45633:45;45629:192;;;45698:44;45715:5;52063:10;28007:164;:::i;45698:44::-;45693:128;;45770:35;;-1:-1:-1;;;45770:35:0;;;;;;;;;;;45693:128;45833:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;45833:35:0;-1:-1:-1;;;;;45833:35:0;;;;;;;;;45884:28;;45833:24;;45884:28;;;;;;;45573:347;45489:431;;;:::o;44569:112::-;44646:27;44656:2;44660:8;44646:27;;;;;;;;;;;;:9;:27::i;30697:2825::-;30839:27;30869;30888:7;30869:18;:27::i;:::-;30839:57;;30954:4;-1:-1:-1;;;;;30913:45:0;30929:19;-1:-1:-1;;;;;30913:45:0;;30909:86;;30967:28;;-1:-1:-1;;;30967:28:0;;;;;;;;;;;30909:86;31009:27;29805:24;;;:15;:24;;;;;30033:26;;52063:10;29430:30;;;-1:-1:-1;;;;;29123:28:0;;29408:20;;;29405:56;31195:180;;31288:43;31305:4;52063:10;28007:164;:::i;31288:43::-;31283:92;;31340:35;;-1:-1:-1;;;31340:35:0;;;;;;;;;;;31283:92;-1:-1:-1;;;;;31392:16:0;;31388:52;;31417:23;;-1:-1:-1;;;31417:23:0;;;;;;;;;;;31388:52;31589:15;31586:160;;;31729:1;31708:19;31701:30;31586:160;-1:-1:-1;;;;;32126:24:0;;;;;;;:18;:24;;;;;;32124:26;;-1:-1:-1;;32124:26:0;;;32195:22;;;;;;;;;32193:24;;-1:-1:-1;32193:24:0;;;25877:11;25852:23;25848:41;25835:63;-1:-1:-1;;;25835:63:0;32488:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;32783:47:0;;:52;;32779:627;;32888:1;32878:11;;32856:19;33011:30;;;:17;:30;;;;;;:35;;33007:384;;33149:13;;33134:11;:28;33130:242;;33296:30;;;;:17;:30;;;;;:52;;;33130:242;32837:569;32779:627;33453:7;33449:2;-1:-1:-1;;;;;33434:27:0;33443:4;-1:-1:-1;;;;;33434:27:0;;;;;;;;;;;30828:2694;;;30697:2825;;;:::o;33618:193::-;33764:39;33781:4;33787:2;33791:7;33764:39;;;;;;;;;;;;:16;:39::i;:::-;33618:193;;;:::o;23643:1275::-;23710:7;23745;;66377:1;23794:23;23790:1061;;23847:13;;23840:4;:20;23836:1015;;;23885:14;23902:23;;;:17;:23;;;;;;;-1:-1:-1;;;23991:24:0;;:29;;23987:845;;24656:113;24663:6;24673:1;24663:11;24656:113;;-1:-1:-1;;;24734:6:0;24716:25;;;;:17;:25;;;;;;24656:113;;;24802:6;23643:1275;-1:-1:-1;;;23643:1275:0:o;23987:845::-;23862:989;23836:1015;24879:31;;-1:-1:-1;;;24879:31:0;;;;;;;;;;;34409:407;34584:31;34597:4;34603:2;34607:7;34584:12;:31::i;:::-;-1:-1:-1;;;;;34630:14:0;;;:19;34626:183;;34669:56;34700:4;34706:2;34710:7;34719:5;34669:30;:56::i;:::-;34664:145;;34753:40;;-1:-1:-1;;;34753:40:0;;;;;;;;;;;66394:100;66442:13;66474:12;66467:19;;;;;:::i;258:723::-;314:13;535:5;544:1;535:10;531:53;;-1:-1:-1;;562:10:0;;;;;;;;;;;;-1:-1:-1;;;562:10:0;;;;;258:723::o;531:53::-;609:5;594:12;650:78;657:9;;650:78;;683:8;;;;:::i;:::-;;-1:-1:-1;706:10:0;;-1:-1:-1;714:2:0;706:10;;:::i;:::-;;;650:78;;;738:19;770:6;760:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;760:17:0;;738:39;;788:154;795:10;;788:154;;822:11;832:1;822:11;;:::i;:::-;;-1:-1:-1;891:10:0;899:2;891:5;:10;:::i;:::-;878:24;;:2;:24;:::i;:::-;865:39;;848:6;855;848:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;848:56:0;;;;;;;;-1:-1:-1;919:11:0;928:2;919:11;;:::i;:::-;;;788:154;;;966:6;258:723;-1:-1:-1;;;;258:723:0:o;43796:689::-;43927:19;43933:2;43937:8;43927:5;:19::i;:::-;-1:-1:-1;;;;;43988:14:0;;;:19;43984:483;;44028:11;44042:13;44090:14;;;44123:233;44154:62;44193:1;44197:2;44201:7;;;;;;44210:5;44154:30;:62::i;:::-;44149:167;;44252:40;;-1:-1:-1;;;44252:40:0;;;;;;;;;;;44149:167;44351:3;44343:5;:11;44123:233;;44438:3;44421:13;;:20;44417:34;;44443:8;;;36900:716;37084:88;;-1:-1:-1;;;37084:88:0;;37063:4;;-1:-1:-1;;;;;37084:45:0;;;;;:88;;52063:10;;37151:4;;37157:7;;37166:5;;37084:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37084:88:0;;;;;;;;-1:-1:-1;;37084:88:0;;;;;;;;;;;;:::i;:::-;;;37080:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37367:6;:13;37384:1;37367:18;37363:235;;37413:40;;-1:-1:-1;;;37413:40:0;;;;;;;;;;;37363:235;37556:6;37550:13;37541:6;37537:2;37533:15;37526:38;37080:529;-1:-1:-1;;;;;;37243:64:0;-1:-1:-1;;;37243:64:0;;-1:-1:-1;36900:716:0;;;;;;:::o;38078:2966::-;38151:20;38174:13;;;38202;;;38198:44;;38224:18;;-1:-1:-1;;;38224:18:0;;;;;;;;;;;38198:44;-1:-1:-1;;;;;38730:22:0;;;;;;:18;:22;;;;12327:2;38730:22;;;:71;;38768:32;38756:45;;38730:71;;;39044:31;;;:17;:31;;;;;-1:-1:-1;26308:15:0;;26282:24;26278:46;25877:11;25852:23;25848:41;25845:52;25835:63;;39044:173;;39279:23;;;;39044:31;;38730:22;;40044:25;38730:22;;39897:335;40558:1;40544:12;40540:20;40498:346;40599:3;40590:7;40587:16;40498:346;;40817:7;40807:8;40804:1;40777:25;40774:1;40771;40766:59;40652:1;40639:15;40498:346;;;40502:77;40877:8;40889:1;40877:13;40873:45;;40899:19;;-1:-1:-1;;;40899:19:0;;;;;;;;;;;40873:45;40935:13;:19;-1:-1:-1;33618:193:0;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:127::-;653:10;648:3;644:20;641:1;634:31;684:4;681:1;674:15;708:4;705:1;698:15;724:275;795:2;789:9;860:2;841:13;;-1:-1:-1;;837:27:1;825:40;;895:18;880:34;;916:22;;;877:62;874:88;;;942:18;;:::i;:::-;978:2;971:22;724:275;;-1:-1:-1;724:275:1:o;1004:407::-;1069:5;1103:18;1095:6;1092:30;1089:56;;;1125:18;;:::i;:::-;1163:57;1208:2;1187:15;;-1:-1:-1;;1183:29:1;1214:4;1179:40;1163:57;:::i;:::-;1154:66;;1243:6;1236:5;1229:21;1283:3;1274:6;1269:3;1265:16;1262:25;1259:45;;;1300:1;1297;1290:12;1259:45;1349:6;1344:3;1337:4;1330:5;1326:16;1313:43;1403:1;1396:4;1387:6;1380:5;1376:18;1372:29;1365:40;1004:407;;;;;:::o;1416:451::-;1485:6;1538:2;1526:9;1517:7;1513:23;1509:32;1506:52;;;1554:1;1551;1544:12;1506:52;1594:9;1581:23;1627:18;1619:6;1616:30;1613:50;;;1659:1;1656;1649:12;1613:50;1682:22;;1735:4;1727:13;;1723:27;-1:-1:-1;1713:55:1;;1764:1;1761;1754:12;1713:55;1787:74;1853:7;1848:2;1835:16;1830:2;1826;1822:11;1787:74;:::i;1872:258::-;1944:1;1954:113;1968:6;1965:1;1962:13;1954:113;;;2044:11;;;2038:18;2025:11;;;2018:39;1990:2;1983:10;1954:113;;;2085:6;2082:1;2079:13;2076:48;;;-1:-1:-1;;2120:1:1;2102:16;;2095:27;1872:258::o;2135:::-;2177:3;2215:5;2209:12;2242:6;2237:3;2230:19;2258:63;2314:6;2307:4;2302:3;2298:14;2291:4;2284:5;2280:16;2258:63;:::i;:::-;2375:2;2354:15;-1:-1:-1;;2350:29:1;2341:39;;;;2382:4;2337:50;;2135:258;-1:-1:-1;;2135:258:1:o;2398:220::-;2547:2;2536:9;2529:21;2510:4;2567:45;2608:2;2597:9;2593:18;2585:6;2567:45;:::i;2623:180::-;2682:6;2735:2;2723:9;2714:7;2710:23;2706:32;2703:52;;;2751:1;2748;2741:12;2703:52;-1:-1:-1;2774:23:1;;2623:180;-1:-1:-1;2623:180:1:o;3016:173::-;3084:20;;-1:-1:-1;;;;;3133:31:1;;3123:42;;3113:70;;3179:1;3176;3169:12;3113:70;3016:173;;;:::o;3194:254::-;3262:6;3270;3323:2;3311:9;3302:7;3298:23;3294:32;3291:52;;;3339:1;3336;3329:12;3291:52;3362:29;3381:9;3362:29;:::i;:::-;3352:39;3438:2;3423:18;;;;3410:32;;-1:-1:-1;;;3194:254:1:o;3453:712::-;3507:5;3560:3;3553:4;3545:6;3541:17;3537:27;3527:55;;3578:1;3575;3568:12;3527:55;3614:6;3601:20;3640:4;3663:18;3659:2;3656:26;3653:52;;;3685:18;;:::i;:::-;3731:2;3728:1;3724:10;3754:28;3778:2;3774;3770:11;3754:28;:::i;:::-;3816:15;;;3886;;;3882:24;;;3847:12;;;;3918:15;;;3915:35;;;3946:1;3943;3936:12;3915:35;3982:2;3974:6;3970:15;3959:26;;3994:142;4010:6;4005:3;4002:15;3994:142;;;4076:17;;4064:30;;4027:12;;;;4114;;;;3994:142;;;4154:5;3453:712;-1:-1:-1;;;;;;;3453:712:1:o;4170:416::-;4263:6;4271;4324:2;4312:9;4303:7;4299:23;4295:32;4292:52;;;4340:1;4337;4330:12;4292:52;4376:9;4363:23;4353:33;;4437:2;4426:9;4422:18;4409:32;4464:18;4456:6;4453:30;4450:50;;;4496:1;4493;4486:12;4450:50;4519:61;4572:7;4563:6;4552:9;4548:22;4519:61;:::i;:::-;4509:71;;;4170:416;;;;;:::o;4591:269::-;4648:6;4701:2;4689:9;4680:7;4676:23;4672:32;4669:52;;;4717:1;4714;4707:12;4669:52;4756:9;4743:23;4806:4;4799:5;4795:16;4788:5;4785:27;4775:55;;4826:1;4823;4816:12;5047:328;5124:6;5132;5140;5193:2;5181:9;5172:7;5168:23;5164:32;5161:52;;;5209:1;5206;5199:12;5161:52;5232:29;5251:9;5232:29;:::i;:::-;5222:39;;5280:38;5314:2;5303:9;5299:18;5280:38;:::i;:::-;5270:48;;5365:2;5354:9;5350:18;5337:32;5327:42;;5047:328;;;;;:::o;5380:422::-;5473:6;5481;5534:2;5522:9;5513:7;5509:23;5505:32;5502:52;;;5550:1;5547;5540:12;5502:52;5573:29;5592:9;5573:29;:::i;:::-;5563:39;;5653:2;5642:9;5638:18;5625:32;5680:18;5672:6;5669:30;5666:50;;;5712:1;5709;5702:12;5996:186;6055:6;6108:2;6096:9;6087:7;6083:23;6079:32;6076:52;;;6124:1;6121;6114:12;6076:52;6147:29;6166:9;6147:29;:::i;6372:118::-;6458:5;6451:13;6444:21;6437:5;6434:32;6424:60;;6480:1;6477;6470:12;6495:315;6560:6;6568;6621:2;6609:9;6600:7;6596:23;6592:32;6589:52;;;6637:1;6634;6627:12;6589:52;6660:29;6679:9;6660:29;:::i;:::-;6650:39;;6739:2;6728:9;6724:18;6711:32;6752:28;6774:5;6752:28;:::i;:::-;6799:5;6789:15;;;6495:315;;;;;:::o;6815:667::-;6910:6;6918;6926;6934;6987:3;6975:9;6966:7;6962:23;6958:33;6955:53;;;7004:1;7001;6994:12;6955:53;7027:29;7046:9;7027:29;:::i;:::-;7017:39;;7075:38;7109:2;7098:9;7094:18;7075:38;:::i;:::-;7065:48;;7160:2;7149:9;7145:18;7132:32;7122:42;;7215:2;7204:9;7200:18;7187:32;7242:18;7234:6;7231:30;7228:50;;;7274:1;7271;7264:12;7228:50;7297:22;;7350:4;7342:13;;7338:27;-1:-1:-1;7328:55:1;;7379:1;7376;7369:12;7328:55;7402:74;7468:7;7463:2;7450:16;7445:2;7441;7437:11;7402:74;:::i;:::-;7392:84;;;6815:667;;;;;;;:::o;7487:254::-;7555:6;7563;7616:2;7604:9;7595:7;7591:23;7587:32;7584:52;;;7632:1;7629;7622:12;7584:52;7668:9;7655:23;7645:33;;7697:38;7731:2;7720:9;7716:18;7697:38;:::i;:::-;7687:48;;7487:254;;;;;:::o;7746:260::-;7814:6;7822;7875:2;7863:9;7854:7;7850:23;7846:32;7843:52;;;7891:1;7888;7881:12;7843:52;7914:29;7933:9;7914:29;:::i;:::-;7904:39;;7962:38;7996:2;7985:9;7981:18;7962:38;:::i;8011:334::-;8213:2;8195:21;;;8252:2;8232:18;;;8225:30;-1:-1:-1;;;8286:2:1;8271:18;;8264:40;8336:2;8321:18;;8011:334::o;8350:380::-;8429:1;8425:12;;;;8472;;;8493:61;;8547:4;8539:6;8535:17;8525:27;;8493:61;8600:2;8592:6;8589:14;8569:18;8566:38;8563:161;;8646:10;8641:3;8637:20;8634:1;8627:31;8681:4;8678:1;8671:15;8709:4;8706:1;8699:15;8563:161;;8350:380;;;:::o;8735:341::-;8937:2;8919:21;;;8976:2;8956:18;;;8949:30;-1:-1:-1;;;9010:2:1;8995:18;;8988:47;9067:2;9052:18;;8735:341::o;9081:337::-;9283:2;9265:21;;;9322:2;9302:18;;;9295:30;-1:-1:-1;;;9356:2:1;9341:18;;9334:43;9409:2;9394:18;;9081:337::o;9423:127::-;9484:10;9479:3;9475:20;9472:1;9465:31;9515:4;9512:1;9505:15;9539:4;9536:1;9529:15;9555:128;9595:3;9626:1;9622:6;9619:1;9616:13;9613:39;;;9632:18;;:::i;:::-;-1:-1:-1;9668:9:1;;9555:128::o;9688:336::-;9890:2;9872:21;;;9929:2;9909:18;;;9902:30;-1:-1:-1;;;9963:2:1;9948:18;;9941:42;10015:2;10000:18;;9688:336::o;11069:168::-;11109:7;11175:1;11171;11167:6;11163:14;11160:1;11157:21;11152:1;11145:9;11138:17;11134:45;11131:71;;;11182:18;;:::i;:::-;-1:-1:-1;11222:9:1;;11069:168::o;11242:349::-;11444:2;11426:21;;;11483:2;11463:18;;;11456:30;11522:27;11517:2;11502:18;;11495:55;11582:2;11567:18;;11242:349::o;11905:245::-;11972:6;12025:2;12013:9;12004:7;12000:23;11996:32;11993:52;;;12041:1;12038;12031:12;11993:52;12073:9;12067:16;12092:28;12114:5;12092:28;:::i;12155:127::-;12216:10;12211:3;12207:20;12204:1;12197:31;12247:4;12244:1;12237:15;12271:4;12268:1;12261:15;12287:120;12327:1;12353;12343:35;;12358:18;;:::i;:::-;-1:-1:-1;12392:9:1;;12287:120::o;12622:348::-;12824:2;12806:21;;;12863:2;12843:18;;;12836:30;12902:26;12897:2;12882:18;;12875:54;12961:2;12946:18;;12622:348::o;13209:127::-;13270:10;13265:3;13261:20;13258:1;13251:31;13301:4;13298:1;13291:15;13325:4;13322:1;13315:15;13593:135;13632:3;13653:17;;;13650:43;;13673:18;;:::i;:::-;-1:-1:-1;13720:1:1;13709:13;;13593:135::o;14275:1527::-;14499:3;14537:6;14531:13;14563:4;14576:51;14620:6;14615:3;14610:2;14602:6;14598:15;14576:51;:::i;:::-;14690:13;;14649:16;;;;14712:55;14690:13;14649:16;14734:15;;;14712:55;:::i;:::-;14856:13;;14789:20;;;14829:1;;14916;14938:18;;;;14991;;;;15018:93;;15096:4;15086:8;15082:19;15070:31;;15018:93;15159:2;15149:8;15146:16;15126:18;15123:40;15120:167;;-1:-1:-1;;;15186:33:1;;15242:4;15239:1;15232:15;15272:4;15193:3;15260:17;15120:167;15303:18;15330:110;;;;15454:1;15449:328;;;;15296:481;;15330:110;-1:-1:-1;;15365:24:1;;15351:39;;15410:20;;;;-1:-1:-1;15330:110:1;;15449:328;14222:1;14215:14;;;14259:4;14246:18;;15544:1;15558:169;15572:8;15569:1;15566:15;15558:169;;;15654:14;;15639:13;;;15632:37;15697:16;;;;15589:10;;15558:169;;;15562:3;;15758:8;15751:5;15747:20;15740:27;;15296:481;-1:-1:-1;15793:3:1;;14275:1527;-1:-1:-1;;;;;;;;;;;14275:1527:1:o;17191:125::-;17231:4;17259:1;17256;17253:8;17250:34;;;17264:18;;:::i;:::-;-1:-1:-1;17301:9:1;;17191:125::o;17321:112::-;17353:1;17379;17369:35;;17384:18;;:::i;:::-;-1:-1:-1;17418:9:1;;17321:112::o;17438:489::-;-1:-1:-1;;;;;17707:15:1;;;17689:34;;17759:15;;17754:2;17739:18;;17732:43;17806:2;17791:18;;17784:34;;;17854:3;17849:2;17834:18;;17827:31;;;17632:4;;17875:46;;17901:19;;17893:6;17875:46;:::i;:::-;17867:54;17438:489;-1:-1:-1;;;;;;17438:489:1:o;17932:249::-;18001:6;18054:2;18042:9;18033:7;18029:23;18025:32;18022:52;;;18070:1;18067;18060:12;18022:52;18102:9;18096:16;18121:30;18145:5;18121:30;:::i

Swarm Source

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