ETH Price: $2,282.65 (-3.80%)
Gas: 1.53 Gwei

Token

Kek (KEK)
 

Overview

Max Total Supply

1,498 KEK

Holders

404

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 KEK
0x15484cdf42c7a223eb7d7f4945121817ecc8bed3
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:
KekNFT

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-23
*/

// SPDX-License-Identifier: MIT

// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@https://kekeke.wtf/@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@https://twitter.com/Kekekofficial@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@,@@@@@@&/*(@@@@@@@@@#@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@&  %@@@@@@@@@@@@@@@@@@@@&.     (@@@@&  .*.   @@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@ @@ @@@@@@@@@ @@@@@ @@@@@@@@@@@@@.@@@@@@@@@@@@%(@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@ @@#&@@/@@@@@@@@@@@@@ @  /@@@@@ . @@@.  #@@@@ &@ @@ @,@@@@@@@@@@
// @@@@@@@@@@@@@@@@@ @&%@@,@@@@@@@@@@@@ @@ @ @@@ @@@@ @@@@ @  . @ @@@@%&%@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@ @@ @@@@ @@@@@@@# @@@ , ,@ @/@  @ @@@@@, @@  @@@@  @@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@,.@%@@@@@@@@@@@@(@@@@   /@@@@@@ @@@@@@@@@@@@@@@@@ @@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@ @#@@@@@@@@@@@@@@@@@@@@@.% #@@@@@@@ (@@@@@@@ @@@@(@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@(@@@@@@@@@@#@@ @@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@ @@@@(@@ @@@@@@@@@@@@@@@@@@@@.   @@@@@@@@@@@@@@ @@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@ @@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@ @@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&&@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@ @@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@#,@@@@@@@@@@@@@@@@@@@@@@& @& @@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@  @@@@@@@@@@@@@  @@@.@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@.@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ .*,*. (@@@@@@@@@@@*  @@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@.@@@@@@@@@@@@@@@* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@,.@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@%#(   #@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@. &@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@


pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
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);
    }
}


// File @openzeppelin/contracts/utils/[email protected]

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

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/access/[email protected]

// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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


// File erc721a/contracts/[email protected]

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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File erc721a/contracts/[email protected]

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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

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

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

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

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

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

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

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

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

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

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

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

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File contracts/kekeke.sol

pragma solidity ^0.8.4;



contract KekNFT is ERC721A, Ownable {
  string public constant coverCid = "bafybeicpdyakctbiump42xwy7sqiwyqlyvcghgul72lf4jjogbrrexeh64";
  bytes32 public constant revealedCidHash = 0x007be462004e8afdf0fbdfa0b8a4c915892da668b25ba34c07c719d5dd109eb1;
  string public revealedCid;
  bool public revealed;

  uint256 public constant maxSupply = 6969;
  uint256 public constant perWalletLimit = 6;
  uint256 public unitPrice = 0.0069 ether;
  bool public enabled;

  mapping(address => uint256) mintedCounter;

  constructor() ERC721A("Kek", "KEK") {
  }

  function mint(uint256 amount) public payable {
    require(totalSupply() + amount <= maxSupply, "Not enough token left to mint");
    require(msg.value == amount * unitPrice, "Insufficient value");
    require(mintedCounter[msg.sender] + amount <= perWalletLimit, "Reached the per wallet limit");
    require(enabled, "Minting is disabled");

    mintedCounter[msg.sender] += amount;
    _safeMint(msg.sender, amount);
  }

  function devMint(uint256 amount) public onlyOwner {
    require(totalSupply() + amount <= maxSupply, "Not enough token left to mint");
    _safeMint(msg.sender, amount);
  }

  function startMinting() public onlyOwner {
    enabled = true;
  }

  function stopMinting() public onlyOwner {
    enabled = false;
  }

  function remainingLimit(address account) public view returns (uint256) {
    return perWalletLimit - mintedCounter[account];
  }

  function reveal(string memory _revealedCid) public onlyOwner {
    require(!revealed, "Already revealed");
    require(
      keccak256(bytes(_revealedCid)) == revealedCidHash,
      "Revealed CID not matched"
    );

    revealed = true;
    revealedCid = _revealedCid;
  }

  function tokenURI(uint256 tokenId)
    public
    view
    override(ERC721A)
    returns (string memory)
  {
    if (revealed) {
      return string(abi.encodePacked("ipfs://", revealedCid, "/", Strings.toString(tokenId), ".json"));
    } else {
      return string(abi.encodePacked("ipfs://", coverCid, "/cover.json"));
    }
  }

  function collectFee() onlyOwner public {
    payable(address(owner())).transfer(address(this).balance);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"coverCid","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"perWalletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"remainingLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_revealedCid","type":"string"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealedCid","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealedCidHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopMinting","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unitPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60806040526618838370f34000600b553480156200001c57600080fd5b506040518060400160405280600381526020017f4b656b00000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4b454b00000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000a1929190620001cc565b508060039080519060200190620000ba929190620001cc565b50620000cb620000f960201b60201c565b6000819055505050620000f3620000e7620000fe60201b60201c565b6200010660201b60201c565b620002e1565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001da906200027c565b90600052602060002090601f016020900481019282620001fe57600085556200024a565b82601f106200021957805160ff19168380011785556200024a565b828001600101855582156200024a579182015b82811115620002495782518255916020019190600101906200022c565b5b5090506200025991906200025d565b5090565b5b80821115620002785760008160009055506001016200025e565b5090565b600060028204905060018216806200029557607f821691505b60208210811415620002ac57620002ab620002b2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61347b80620002f16000396000f3fe6080604052600436106101e35760003560e01c80638461c1a211610102578063c87b56dd11610095578063e73faa2d11610064578063e73faa2d1461069b578063e985e9c5146106c6578063f2fde38b14610703578063f55eb2be1461072c576101e3565b8063c87b56dd146105f1578063d4d5d32a1461062e578063d5abeb0114610645578063de42c69e14610670576101e3565b8063a0712d68116100d1578063a0712d6814610546578063a22cb46514610562578063b88d4fde1461058b578063ba8b5cbb146105b4576101e3565b80638461c1a2146104ae5780638da5cb5b146104d957806395d89b41146105045780639a65ea261461052f576101e3565b80633cec19941161017a578063518302271161014957806351830227146103f25780636352211e1461041d57806370a082311461045a578063715018a614610497576101e3565b80633cec19941461035e5780633e3e0b121461038957806342842e0e146103a05780634c261247146103c9576101e3565b806318160ddd116101b657806318160ddd146102b6578063238dafe0146102e157806323b872dd1461030c578063375a069a14610335576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612734565b610757565b60405161021c9190612bcb565b60405180910390f35b34801561023157600080fd5b5061023a6107e9565b6040516102479190612c01565b60405180910390f35b34801561025c57600080fd5b50610277600480360381019061027291906127c7565b61087b565b6040516102849190612b64565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af91906126f8565b6108f7565b005b3480156102c257600080fd5b506102cb610a38565b6040516102d89190612d23565b60405180910390f35b3480156102ed57600080fd5b506102f6610a4f565b6040516103039190612bcb565b60405180910390f35b34801561031857600080fd5b50610333600480360381019061032e91906125f2565b610a62565b005b34801561034157600080fd5b5061035c600480360381019061035791906127c7565b610d87565b005b34801561036a57600080fd5b50610373610e67565b6040516103809190612c01565b60405180910390f35b34801561039557600080fd5b5061039e610ef5565b005b3480156103ac57600080fd5b506103c760048036038101906103c291906125f2565b610f8e565b005b3480156103d557600080fd5b506103f060048036038101906103eb9190612786565b610fae565b005b3480156103fe57600080fd5b5061040761111a565b6040516104149190612bcb565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f91906127c7565b61112d565b6040516104519190612b64565b60405180910390f35b34801561046657600080fd5b50610481600480360381019061047c919061258d565b61113f565b60405161048e9190612d23565b60405180910390f35b3480156104a357600080fd5b506104ac6111f8565b005b3480156104ba57600080fd5b506104c3611280565b6040516104d09190612be6565b60405180910390f35b3480156104e557600080fd5b506104ee6112a6565b6040516104fb9190612b64565b60405180910390f35b34801561051057600080fd5b506105196112d0565b6040516105269190612c01565b60405180910390f35b34801561053b57600080fd5b50610544611362565b005b610560600480360381019061055b91906127c7565b6113fb565b005b34801561056e57600080fd5b50610589600480360381019061058491906126bc565b6115e1565b005b34801561059757600080fd5b506105b260048036038101906105ad9190612641565b611759565b005b3480156105c057600080fd5b506105db60048036038101906105d6919061258d565b6117cc565b6040516105e89190612d23565b60405180910390f35b3480156105fd57600080fd5b50610618600480360381019061061391906127c7565b611821565b6040516106259190612c01565b60405180910390f35b34801561063a57600080fd5b506106436118aa565b005b34801561065157600080fd5b5061065a611976565b6040516106679190612d23565b60405180910390f35b34801561067c57600080fd5b5061068561197c565b6040516106929190612d23565b60405180910390f35b3480156106a757600080fd5b506106b0611981565b6040516106bd9190612d23565b60405180910390f35b3480156106d257600080fd5b506106ed60048036038101906106e891906125b6565b611987565b6040516106fa9190612bcb565b60405180910390f35b34801561070f57600080fd5b5061072a6004803603810190610725919061258d565b611a1b565b005b34801561073857600080fd5b50610741611b13565b60405161074e9190612c01565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107b257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107e25750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107f890612ff2565b80601f016020809104026020016040519081016040528092919081815260200182805461082490612ff2565b80156108715780601f1061084657610100808354040283529160200191610871565b820191906000526020600020905b81548152906001019060200180831161085457829003601f168201915b5050505050905090565b600061088682611b2f565b6108bc576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109028261112d565b90508073ffffffffffffffffffffffffffffffffffffffff16610923611b8e565b73ffffffffffffffffffffffffffffffffffffffff16146109865761094f8161094a611b8e565b611987565b610985576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a42611b96565b6001546000540303905090565b600c60009054906101000a900460ff1681565b6000610a6d82611b9b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ad4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ae084611c69565b91509150610af68187610af1611b8e565b611c8b565b610b4257610b0b86610b06611b8e565b611987565b610b41576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ba9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bb68686866001611ccf565b8015610bc157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c8f85610c6b888887611cd5565b7c020000000000000000000000000000000000000000000000000000000017611cfd565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d17576000600185019050600060046000838152602001908152602001600020541415610d15576000548114610d14578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d7f8686866001611d28565b505050505050565b610d8f611d2e565b73ffffffffffffffffffffffffffffffffffffffff16610dad6112a6565b73ffffffffffffffffffffffffffffffffffffffff1614610e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfa90612cc3565b60405180910390fd5b611b3981610e0f610a38565b610e199190612e1d565b1115610e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5190612c63565b60405180910390fd5b610e643382611d36565b50565b60098054610e7490612ff2565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea090612ff2565b8015610eed5780601f10610ec257610100808354040283529160200191610eed565b820191906000526020600020905b815481529060010190602001808311610ed057829003601f168201915b505050505081565b610efd611d2e565b73ffffffffffffffffffffffffffffffffffffffff16610f1b6112a6565b73ffffffffffffffffffffffffffffffffffffffff1614610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6890612cc3565b60405180910390fd5b6000600c60006101000a81548160ff021916908315150217905550565b610fa983838360405180602001604052806000815250611759565b505050565b610fb6611d2e565b73ffffffffffffffffffffffffffffffffffffffff16610fd46112a6565b73ffffffffffffffffffffffffffffffffffffffff161461102a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102190612cc3565b60405180910390fd5b600a60009054906101000a900460ff161561107a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107190612c83565b60405180910390fd5b7e7be462004e8afdf0fbdfa0b8a4c915892da668b25ba34c07c719d5dd109eb160001b8180519060200120146110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc90612c23565b60405180910390fd5b6001600a60006101000a81548160ff02191690831515021790555080600990805190602001906111169291906123b1565b5050565b600a60009054906101000a900460ff1681565b600061113882611b9b565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111a7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611200611d2e565b73ffffffffffffffffffffffffffffffffffffffff1661121e6112a6565b73ffffffffffffffffffffffffffffffffffffffff1614611274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126b90612cc3565b60405180910390fd5b61127e6000611d54565b565b7e7be462004e8afdf0fbdfa0b8a4c915892da668b25ba34c07c719d5dd109eb160001b81565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546112df90612ff2565b80601f016020809104026020016040519081016040528092919081815260200182805461130b90612ff2565b80156113585780601f1061132d57610100808354040283529160200191611358565b820191906000526020600020905b81548152906001019060200180831161133b57829003601f168201915b5050505050905090565b61136a611d2e565b73ffffffffffffffffffffffffffffffffffffffff166113886112a6565b73ffffffffffffffffffffffffffffffffffffffff16146113de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d590612cc3565b60405180910390fd5b6001600c60006101000a81548160ff021916908315150217905550565b611b3981611407610a38565b6114119190612e1d565b1115611452576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144990612c63565b60405180910390fd5b600b54816114609190612ea4565b34146114a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149890612d03565b60405180910390fd5b600681600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114ee9190612e1d565b111561152f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152690612ca3565b60405180910390fd5b600c60009054906101000a900460ff1661157e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157590612ce3565b60405180910390fd5b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115cd9190612e1d565b925050819055506115de3382611d36565b50565b6115e9611b8e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561164e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061165b611b8e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611708611b8e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161174d9190612bcb565b60405180910390a35050565b611764848484610a62565b60008373ffffffffffffffffffffffffffffffffffffffff163b146117c65761178f84848484611e1a565b6117c5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600661181a9190612efe565b9050919050565b6060600a60009054906101000a900460ff161561186a57600961184383611f7a565b604051602001611854929190612b1f565b60405160208183030381529060405290506118a5565b6040518060600160405280603b815260200161340b603b91396040516020016118939190612af2565b60405160208183030381529060405290505b919050565b6118b2611d2e565b73ffffffffffffffffffffffffffffffffffffffff166118d06112a6565b73ffffffffffffffffffffffffffffffffffffffff1614611926576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191d90612cc3565b60405180910390fd5b61192e6112a6565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611973573d6000803e3d6000fd5b50565b611b3981565b600681565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a23611d2e565b73ffffffffffffffffffffffffffffffffffffffff16611a416112a6565b73ffffffffffffffffffffffffffffffffffffffff1614611a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8e90612cc3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afe90612c43565b60405180910390fd5b611b1081611d54565b50565b6040518060600160405280603b815260200161340b603b913981565b600081611b3a611b96565b11158015611b49575060005482105b8015611b87575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611baa611b96565b11611c3257600054811015611c315760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611c2f575b6000811415611c25576004600083600190039350838152602001908152602001600020549050611bfa565b8092505050611c64565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611cec868684612127565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b611d50828260405180602001604052806000815250612130565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e40611b8e565b8786866040518563ffffffff1660e01b8152600401611e629493929190612b7f565b602060405180830381600087803b158015611e7c57600080fd5b505af1925050508015611ead57506040513d601f19601f82011682018060405250810190611eaa919061275d565b60015b611f27573d8060008114611edd576040519150601f19603f3d011682016040523d82523d6000602084013e611ee2565b606091505b50600081511415611f1f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611fc2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612122565b600082905060005b60008214611ff4578080611fdd90613055565b915050600a82611fed9190612e73565b9150611fca565b60008167ffffffffffffffff811115612036577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120685781602001600182028036833780820191505090505b5090505b6000851461211b576001826120819190612efe565b9150600a85612090919061309e565b603061209c9190612e1d565b60f81b8183815181106120d8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121149190612e73565b945061206c565b8093505050505b919050565b60009392505050565b61213a83836121cd565b60008373ffffffffffffffffffffffffffffffffffffffff163b146121c857600080549050600083820390505b61217a6000868380600101945086611e1a565b6121b0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106121675781600054146121c557600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561223a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612275576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122826000848385611ccf565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506122f9836122ea6000866000611cd5565b6122f3856123a1565b17611cfd565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061231d5780600081905550505061239c6000848385611d28565b505050565b60006001821460e11b9050919050565b8280546123bd90612ff2565b90600052602060002090601f0160209004810192826123df5760008555612426565b82601f106123f857805160ff1916838001178555612426565b82800160010185558215612426579182015b8281111561242557825182559160200191906001019061240a565b5b5090506124339190612437565b5090565b5b80821115612450576000816000905550600101612438565b5090565b600061246761246284612d63565b612d3e565b90508281526020810184848401111561247f57600080fd5b61248a848285612fb0565b509392505050565b60006124a56124a084612d94565b612d3e565b9050828152602081018484840111156124bd57600080fd5b6124c8848285612fb0565b509392505050565b6000813590506124df816133ae565b92915050565b6000813590506124f4816133c5565b92915050565b600081359050612509816133dc565b92915050565b60008151905061251e816133dc565b92915050565b600082601f83011261253557600080fd5b8135612545848260208601612454565b91505092915050565b600082601f83011261255f57600080fd5b813561256f848260208601612492565b91505092915050565b600081359050612587816133f3565b92915050565b60006020828403121561259f57600080fd5b60006125ad848285016124d0565b91505092915050565b600080604083850312156125c957600080fd5b60006125d7858286016124d0565b92505060206125e8858286016124d0565b9150509250929050565b60008060006060848603121561260757600080fd5b6000612615868287016124d0565b9350506020612626868287016124d0565b925050604061263786828701612578565b9150509250925092565b6000806000806080858703121561265757600080fd5b6000612665878288016124d0565b9450506020612676878288016124d0565b935050604061268787828801612578565b925050606085013567ffffffffffffffff8111156126a457600080fd5b6126b087828801612524565b91505092959194509250565b600080604083850312156126cf57600080fd5b60006126dd858286016124d0565b92505060206126ee858286016124e5565b9150509250929050565b6000806040838503121561270b57600080fd5b6000612719858286016124d0565b925050602061272a85828601612578565b9150509250929050565b60006020828403121561274657600080fd5b6000612754848285016124fa565b91505092915050565b60006020828403121561276f57600080fd5b600061277d8482850161250f565b91505092915050565b60006020828403121561279857600080fd5b600082013567ffffffffffffffff8111156127b257600080fd5b6127be8482850161254e565b91505092915050565b6000602082840312156127d957600080fd5b60006127e784828501612578565b91505092915050565b6127f981612f32565b82525050565b61280881612f44565b82525050565b61281781612f50565b82525050565b600061282882612dda565b6128328185612df0565b9350612842818560208601612fbf565b61284b8161318b565b840191505092915050565b600061286182612de5565b61286b8185612e01565b935061287b818560208601612fbf565b6128848161318b565b840191505092915050565b600061289a82612de5565b6128a48185612e12565b93506128b4818560208601612fbf565b80840191505092915050565b600081546128cd81612ff2565b6128d78186612e12565b945060018216600081146128f2576001811461290357612936565b60ff19831686528186019350612936565b61290c85612dc5565b60005b8381101561292e5781548189015260018201915060208101905061290f565b838801955050505b50505092915050565b600061294c601883612e01565b91506129578261319c565b602082019050919050565b600061296f602683612e01565b915061297a826131c5565b604082019050919050565b6000612992600783612e12565b915061299d82613214565b600782019050919050565b60006129b5601d83612e01565b91506129c08261323d565b602082019050919050565b60006129d8601083612e01565b91506129e382613266565b602082019050919050565b60006129fb600583612e12565b9150612a068261328f565b600582019050919050565b6000612a1e601c83612e01565b9150612a29826132b8565b602082019050919050565b6000612a41602083612e01565b9150612a4c826132e1565b602082019050919050565b6000612a64601383612e01565b9150612a6f8261330a565b602082019050919050565b6000612a87600b83612e12565b9150612a9282613333565b600b82019050919050565b6000612aaa601283612e01565b9150612ab58261335c565b602082019050919050565b6000612acd600183612e12565b9150612ad882613385565b600182019050919050565b612aec81612fa6565b82525050565b6000612afd82612985565b9150612b09828461288f565b9150612b1482612a7a565b915081905092915050565b6000612b2a82612985565b9150612b3682856128c0565b9150612b4182612ac0565b9150612b4d828461288f565b9150612b58826129ee565b91508190509392505050565b6000602082019050612b7960008301846127f0565b92915050565b6000608082019050612b9460008301876127f0565b612ba160208301866127f0565b612bae6040830185612ae3565b8181036060830152612bc0818461281d565b905095945050505050565b6000602082019050612be060008301846127ff565b92915050565b6000602082019050612bfb600083018461280e565b92915050565b60006020820190508181036000830152612c1b8184612856565b905092915050565b60006020820190508181036000830152612c3c8161293f565b9050919050565b60006020820190508181036000830152612c5c81612962565b9050919050565b60006020820190508181036000830152612c7c816129a8565b9050919050565b60006020820190508181036000830152612c9c816129cb565b9050919050565b60006020820190508181036000830152612cbc81612a11565b9050919050565b60006020820190508181036000830152612cdc81612a34565b9050919050565b60006020820190508181036000830152612cfc81612a57565b9050919050565b60006020820190508181036000830152612d1c81612a9d565b9050919050565b6000602082019050612d386000830184612ae3565b92915050565b6000612d48612d59565b9050612d548282613024565b919050565b6000604051905090565b600067ffffffffffffffff821115612d7e57612d7d61315c565b5b612d878261318b565b9050602081019050919050565b600067ffffffffffffffff821115612daf57612dae61315c565b5b612db88261318b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612e2882612fa6565b9150612e3383612fa6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e6857612e676130cf565b5b828201905092915050565b6000612e7e82612fa6565b9150612e8983612fa6565b925082612e9957612e986130fe565b5b828204905092915050565b6000612eaf82612fa6565b9150612eba83612fa6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ef357612ef26130cf565b5b828202905092915050565b6000612f0982612fa6565b9150612f1483612fa6565b925082821015612f2757612f266130cf565b5b828203905092915050565b6000612f3d82612f86565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612fdd578082015181840152602081019050612fc2565b83811115612fec576000848401525b50505050565b6000600282049050600182168061300a57607f821691505b6020821081141561301e5761301d61312d565b5b50919050565b61302d8261318b565b810181811067ffffffffffffffff8211171561304c5761304b61315c565b5b80604052505050565b600061306082612fa6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613093576130926130cf565b5b600182019050919050565b60006130a982612fa6565b91506130b483612fa6565b9250826130c4576130c36130fe565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f52657665616c656420434944206e6f74206d6174636865640000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f697066733a2f2f00000000000000000000000000000000000000000000000000600082015250565b7f4e6f7420656e6f75676820746f6b656e206c65667420746f206d696e74000000600082015250565b7f416c72656164792072657665616c656400000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f5265616368656420746865207065722077616c6c6574206c696d697400000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e74696e672069732064697361626c656400000000000000000000000000600082015250565b7f2f636f7665722e6a736f6e000000000000000000000000000000000000000000600082015250565b7f496e73756666696369656e742076616c75650000000000000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6133b781612f32565b81146133c257600080fd5b50565b6133ce81612f44565b81146133d957600080fd5b50565b6133e581612f5a565b81146133f057600080fd5b50565b6133fc81612fa6565b811461340757600080fd5b5056fe6261667962656963706479616b63746269756d703432787779377371697779716c797663676867756c37326c66346a6a6f67627272657865683634a2646970667358221220d8f0cfc41839abeeb5123b78e33c83f5697ea18df33bcce188238b26b58233fc64736f6c63430008040033

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80638461c1a211610102578063c87b56dd11610095578063e73faa2d11610064578063e73faa2d1461069b578063e985e9c5146106c6578063f2fde38b14610703578063f55eb2be1461072c576101e3565b8063c87b56dd146105f1578063d4d5d32a1461062e578063d5abeb0114610645578063de42c69e14610670576101e3565b8063a0712d68116100d1578063a0712d6814610546578063a22cb46514610562578063b88d4fde1461058b578063ba8b5cbb146105b4576101e3565b80638461c1a2146104ae5780638da5cb5b146104d957806395d89b41146105045780639a65ea261461052f576101e3565b80633cec19941161017a578063518302271161014957806351830227146103f25780636352211e1461041d57806370a082311461045a578063715018a614610497576101e3565b80633cec19941461035e5780633e3e0b121461038957806342842e0e146103a05780634c261247146103c9576101e3565b806318160ddd116101b657806318160ddd146102b6578063238dafe0146102e157806323b872dd1461030c578063375a069a14610335576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612734565b610757565b60405161021c9190612bcb565b60405180910390f35b34801561023157600080fd5b5061023a6107e9565b6040516102479190612c01565b60405180910390f35b34801561025c57600080fd5b50610277600480360381019061027291906127c7565b61087b565b6040516102849190612b64565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af91906126f8565b6108f7565b005b3480156102c257600080fd5b506102cb610a38565b6040516102d89190612d23565b60405180910390f35b3480156102ed57600080fd5b506102f6610a4f565b6040516103039190612bcb565b60405180910390f35b34801561031857600080fd5b50610333600480360381019061032e91906125f2565b610a62565b005b34801561034157600080fd5b5061035c600480360381019061035791906127c7565b610d87565b005b34801561036a57600080fd5b50610373610e67565b6040516103809190612c01565b60405180910390f35b34801561039557600080fd5b5061039e610ef5565b005b3480156103ac57600080fd5b506103c760048036038101906103c291906125f2565b610f8e565b005b3480156103d557600080fd5b506103f060048036038101906103eb9190612786565b610fae565b005b3480156103fe57600080fd5b5061040761111a565b6040516104149190612bcb565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f91906127c7565b61112d565b6040516104519190612b64565b60405180910390f35b34801561046657600080fd5b50610481600480360381019061047c919061258d565b61113f565b60405161048e9190612d23565b60405180910390f35b3480156104a357600080fd5b506104ac6111f8565b005b3480156104ba57600080fd5b506104c3611280565b6040516104d09190612be6565b60405180910390f35b3480156104e557600080fd5b506104ee6112a6565b6040516104fb9190612b64565b60405180910390f35b34801561051057600080fd5b506105196112d0565b6040516105269190612c01565b60405180910390f35b34801561053b57600080fd5b50610544611362565b005b610560600480360381019061055b91906127c7565b6113fb565b005b34801561056e57600080fd5b50610589600480360381019061058491906126bc565b6115e1565b005b34801561059757600080fd5b506105b260048036038101906105ad9190612641565b611759565b005b3480156105c057600080fd5b506105db60048036038101906105d6919061258d565b6117cc565b6040516105e89190612d23565b60405180910390f35b3480156105fd57600080fd5b50610618600480360381019061061391906127c7565b611821565b6040516106259190612c01565b60405180910390f35b34801561063a57600080fd5b506106436118aa565b005b34801561065157600080fd5b5061065a611976565b6040516106679190612d23565b60405180910390f35b34801561067c57600080fd5b5061068561197c565b6040516106929190612d23565b60405180910390f35b3480156106a757600080fd5b506106b0611981565b6040516106bd9190612d23565b60405180910390f35b3480156106d257600080fd5b506106ed60048036038101906106e891906125b6565b611987565b6040516106fa9190612bcb565b60405180910390f35b34801561070f57600080fd5b5061072a6004803603810190610725919061258d565b611a1b565b005b34801561073857600080fd5b50610741611b13565b60405161074e9190612c01565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107b257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107e25750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107f890612ff2565b80601f016020809104026020016040519081016040528092919081815260200182805461082490612ff2565b80156108715780601f1061084657610100808354040283529160200191610871565b820191906000526020600020905b81548152906001019060200180831161085457829003601f168201915b5050505050905090565b600061088682611b2f565b6108bc576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109028261112d565b90508073ffffffffffffffffffffffffffffffffffffffff16610923611b8e565b73ffffffffffffffffffffffffffffffffffffffff16146109865761094f8161094a611b8e565b611987565b610985576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a42611b96565b6001546000540303905090565b600c60009054906101000a900460ff1681565b6000610a6d82611b9b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ad4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ae084611c69565b91509150610af68187610af1611b8e565b611c8b565b610b4257610b0b86610b06611b8e565b611987565b610b41576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ba9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bb68686866001611ccf565b8015610bc157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c8f85610c6b888887611cd5565b7c020000000000000000000000000000000000000000000000000000000017611cfd565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d17576000600185019050600060046000838152602001908152602001600020541415610d15576000548114610d14578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d7f8686866001611d28565b505050505050565b610d8f611d2e565b73ffffffffffffffffffffffffffffffffffffffff16610dad6112a6565b73ffffffffffffffffffffffffffffffffffffffff1614610e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfa90612cc3565b60405180910390fd5b611b3981610e0f610a38565b610e199190612e1d565b1115610e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5190612c63565b60405180910390fd5b610e643382611d36565b50565b60098054610e7490612ff2565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea090612ff2565b8015610eed5780601f10610ec257610100808354040283529160200191610eed565b820191906000526020600020905b815481529060010190602001808311610ed057829003601f168201915b505050505081565b610efd611d2e565b73ffffffffffffffffffffffffffffffffffffffff16610f1b6112a6565b73ffffffffffffffffffffffffffffffffffffffff1614610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6890612cc3565b60405180910390fd5b6000600c60006101000a81548160ff021916908315150217905550565b610fa983838360405180602001604052806000815250611759565b505050565b610fb6611d2e565b73ffffffffffffffffffffffffffffffffffffffff16610fd46112a6565b73ffffffffffffffffffffffffffffffffffffffff161461102a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102190612cc3565b60405180910390fd5b600a60009054906101000a900460ff161561107a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107190612c83565b60405180910390fd5b7e7be462004e8afdf0fbdfa0b8a4c915892da668b25ba34c07c719d5dd109eb160001b8180519060200120146110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc90612c23565b60405180910390fd5b6001600a60006101000a81548160ff02191690831515021790555080600990805190602001906111169291906123b1565b5050565b600a60009054906101000a900460ff1681565b600061113882611b9b565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111a7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611200611d2e565b73ffffffffffffffffffffffffffffffffffffffff1661121e6112a6565b73ffffffffffffffffffffffffffffffffffffffff1614611274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126b90612cc3565b60405180910390fd5b61127e6000611d54565b565b7e7be462004e8afdf0fbdfa0b8a4c915892da668b25ba34c07c719d5dd109eb160001b81565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546112df90612ff2565b80601f016020809104026020016040519081016040528092919081815260200182805461130b90612ff2565b80156113585780601f1061132d57610100808354040283529160200191611358565b820191906000526020600020905b81548152906001019060200180831161133b57829003601f168201915b5050505050905090565b61136a611d2e565b73ffffffffffffffffffffffffffffffffffffffff166113886112a6565b73ffffffffffffffffffffffffffffffffffffffff16146113de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d590612cc3565b60405180910390fd5b6001600c60006101000a81548160ff021916908315150217905550565b611b3981611407610a38565b6114119190612e1d565b1115611452576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144990612c63565b60405180910390fd5b600b54816114609190612ea4565b34146114a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149890612d03565b60405180910390fd5b600681600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114ee9190612e1d565b111561152f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152690612ca3565b60405180910390fd5b600c60009054906101000a900460ff1661157e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157590612ce3565b60405180910390fd5b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115cd9190612e1d565b925050819055506115de3382611d36565b50565b6115e9611b8e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561164e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061165b611b8e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611708611b8e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161174d9190612bcb565b60405180910390a35050565b611764848484610a62565b60008373ffffffffffffffffffffffffffffffffffffffff163b146117c65761178f84848484611e1a565b6117c5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600661181a9190612efe565b9050919050565b6060600a60009054906101000a900460ff161561186a57600961184383611f7a565b604051602001611854929190612b1f565b60405160208183030381529060405290506118a5565b6040518060600160405280603b815260200161340b603b91396040516020016118939190612af2565b60405160208183030381529060405290505b919050565b6118b2611d2e565b73ffffffffffffffffffffffffffffffffffffffff166118d06112a6565b73ffffffffffffffffffffffffffffffffffffffff1614611926576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191d90612cc3565b60405180910390fd5b61192e6112a6565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611973573d6000803e3d6000fd5b50565b611b3981565b600681565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a23611d2e565b73ffffffffffffffffffffffffffffffffffffffff16611a416112a6565b73ffffffffffffffffffffffffffffffffffffffff1614611a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8e90612cc3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afe90612c43565b60405180910390fd5b611b1081611d54565b50565b6040518060600160405280603b815260200161340b603b913981565b600081611b3a611b96565b11158015611b49575060005482105b8015611b87575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611baa611b96565b11611c3257600054811015611c315760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611c2f575b6000811415611c25576004600083600190039350838152602001908152602001600020549050611bfa565b8092505050611c64565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611cec868684612127565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b611d50828260405180602001604052806000815250612130565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e40611b8e565b8786866040518563ffffffff1660e01b8152600401611e629493929190612b7f565b602060405180830381600087803b158015611e7c57600080fd5b505af1925050508015611ead57506040513d601f19601f82011682018060405250810190611eaa919061275d565b60015b611f27573d8060008114611edd576040519150601f19603f3d011682016040523d82523d6000602084013e611ee2565b606091505b50600081511415611f1f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611fc2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612122565b600082905060005b60008214611ff4578080611fdd90613055565b915050600a82611fed9190612e73565b9150611fca565b60008167ffffffffffffffff811115612036577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120685781602001600182028036833780820191505090505b5090505b6000851461211b576001826120819190612efe565b9150600a85612090919061309e565b603061209c9190612e1d565b60f81b8183815181106120d8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121149190612e73565b945061206c565b8093505050505b919050565b60009392505050565b61213a83836121cd565b60008373ffffffffffffffffffffffffffffffffffffffff163b146121c857600080549050600083820390505b61217a6000868380600101945086611e1a565b6121b0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106121675781600054146121c557600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561223a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612275576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122826000848385611ccf565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506122f9836122ea6000866000611cd5565b6122f3856123a1565b17611cfd565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061231d5780600081905550505061239c6000848385611d28565b505050565b60006001821460e11b9050919050565b8280546123bd90612ff2565b90600052602060002090601f0160209004810192826123df5760008555612426565b82601f106123f857805160ff1916838001178555612426565b82800160010185558215612426579182015b8281111561242557825182559160200191906001019061240a565b5b5090506124339190612437565b5090565b5b80821115612450576000816000905550600101612438565b5090565b600061246761246284612d63565b612d3e565b90508281526020810184848401111561247f57600080fd5b61248a848285612fb0565b509392505050565b60006124a56124a084612d94565b612d3e565b9050828152602081018484840111156124bd57600080fd5b6124c8848285612fb0565b509392505050565b6000813590506124df816133ae565b92915050565b6000813590506124f4816133c5565b92915050565b600081359050612509816133dc565b92915050565b60008151905061251e816133dc565b92915050565b600082601f83011261253557600080fd5b8135612545848260208601612454565b91505092915050565b600082601f83011261255f57600080fd5b813561256f848260208601612492565b91505092915050565b600081359050612587816133f3565b92915050565b60006020828403121561259f57600080fd5b60006125ad848285016124d0565b91505092915050565b600080604083850312156125c957600080fd5b60006125d7858286016124d0565b92505060206125e8858286016124d0565b9150509250929050565b60008060006060848603121561260757600080fd5b6000612615868287016124d0565b9350506020612626868287016124d0565b925050604061263786828701612578565b9150509250925092565b6000806000806080858703121561265757600080fd5b6000612665878288016124d0565b9450506020612676878288016124d0565b935050604061268787828801612578565b925050606085013567ffffffffffffffff8111156126a457600080fd5b6126b087828801612524565b91505092959194509250565b600080604083850312156126cf57600080fd5b60006126dd858286016124d0565b92505060206126ee858286016124e5565b9150509250929050565b6000806040838503121561270b57600080fd5b6000612719858286016124d0565b925050602061272a85828601612578565b9150509250929050565b60006020828403121561274657600080fd5b6000612754848285016124fa565b91505092915050565b60006020828403121561276f57600080fd5b600061277d8482850161250f565b91505092915050565b60006020828403121561279857600080fd5b600082013567ffffffffffffffff8111156127b257600080fd5b6127be8482850161254e565b91505092915050565b6000602082840312156127d957600080fd5b60006127e784828501612578565b91505092915050565b6127f981612f32565b82525050565b61280881612f44565b82525050565b61281781612f50565b82525050565b600061282882612dda565b6128328185612df0565b9350612842818560208601612fbf565b61284b8161318b565b840191505092915050565b600061286182612de5565b61286b8185612e01565b935061287b818560208601612fbf565b6128848161318b565b840191505092915050565b600061289a82612de5565b6128a48185612e12565b93506128b4818560208601612fbf565b80840191505092915050565b600081546128cd81612ff2565b6128d78186612e12565b945060018216600081146128f2576001811461290357612936565b60ff19831686528186019350612936565b61290c85612dc5565b60005b8381101561292e5781548189015260018201915060208101905061290f565b838801955050505b50505092915050565b600061294c601883612e01565b91506129578261319c565b602082019050919050565b600061296f602683612e01565b915061297a826131c5565b604082019050919050565b6000612992600783612e12565b915061299d82613214565b600782019050919050565b60006129b5601d83612e01565b91506129c08261323d565b602082019050919050565b60006129d8601083612e01565b91506129e382613266565b602082019050919050565b60006129fb600583612e12565b9150612a068261328f565b600582019050919050565b6000612a1e601c83612e01565b9150612a29826132b8565b602082019050919050565b6000612a41602083612e01565b9150612a4c826132e1565b602082019050919050565b6000612a64601383612e01565b9150612a6f8261330a565b602082019050919050565b6000612a87600b83612e12565b9150612a9282613333565b600b82019050919050565b6000612aaa601283612e01565b9150612ab58261335c565b602082019050919050565b6000612acd600183612e12565b9150612ad882613385565b600182019050919050565b612aec81612fa6565b82525050565b6000612afd82612985565b9150612b09828461288f565b9150612b1482612a7a565b915081905092915050565b6000612b2a82612985565b9150612b3682856128c0565b9150612b4182612ac0565b9150612b4d828461288f565b9150612b58826129ee565b91508190509392505050565b6000602082019050612b7960008301846127f0565b92915050565b6000608082019050612b9460008301876127f0565b612ba160208301866127f0565b612bae6040830185612ae3565b8181036060830152612bc0818461281d565b905095945050505050565b6000602082019050612be060008301846127ff565b92915050565b6000602082019050612bfb600083018461280e565b92915050565b60006020820190508181036000830152612c1b8184612856565b905092915050565b60006020820190508181036000830152612c3c8161293f565b9050919050565b60006020820190508181036000830152612c5c81612962565b9050919050565b60006020820190508181036000830152612c7c816129a8565b9050919050565b60006020820190508181036000830152612c9c816129cb565b9050919050565b60006020820190508181036000830152612cbc81612a11565b9050919050565b60006020820190508181036000830152612cdc81612a34565b9050919050565b60006020820190508181036000830152612cfc81612a57565b9050919050565b60006020820190508181036000830152612d1c81612a9d565b9050919050565b6000602082019050612d386000830184612ae3565b92915050565b6000612d48612d59565b9050612d548282613024565b919050565b6000604051905090565b600067ffffffffffffffff821115612d7e57612d7d61315c565b5b612d878261318b565b9050602081019050919050565b600067ffffffffffffffff821115612daf57612dae61315c565b5b612db88261318b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612e2882612fa6565b9150612e3383612fa6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e6857612e676130cf565b5b828201905092915050565b6000612e7e82612fa6565b9150612e8983612fa6565b925082612e9957612e986130fe565b5b828204905092915050565b6000612eaf82612fa6565b9150612eba83612fa6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ef357612ef26130cf565b5b828202905092915050565b6000612f0982612fa6565b9150612f1483612fa6565b925082821015612f2757612f266130cf565b5b828203905092915050565b6000612f3d82612f86565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612fdd578082015181840152602081019050612fc2565b83811115612fec576000848401525b50505050565b6000600282049050600182168061300a57607f821691505b6020821081141561301e5761301d61312d565b5b50919050565b61302d8261318b565b810181811067ffffffffffffffff8211171561304c5761304b61315c565b5b80604052505050565b600061306082612fa6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613093576130926130cf565b5b600182019050919050565b60006130a982612fa6565b91506130b483612fa6565b9250826130c4576130c36130fe565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f52657665616c656420434944206e6f74206d6174636865640000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f697066733a2f2f00000000000000000000000000000000000000000000000000600082015250565b7f4e6f7420656e6f75676820746f6b656e206c65667420746f206d696e74000000600082015250565b7f416c72656164792072657665616c656400000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f5265616368656420746865207065722077616c6c6574206c696d697400000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e74696e672069732064697361626c656400000000000000000000000000600082015250565b7f2f636f7665722e6a736f6e000000000000000000000000000000000000000000600082015250565b7f496e73756666696369656e742076616c75650000000000000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6133b781612f32565b81146133c257600080fd5b50565b6133ce81612f44565b81146133d957600080fd5b50565b6133e581612f5a565b81146133f057600080fd5b50565b6133fc81612fa6565b811461340757600080fd5b5056fe6261667962656963706479616b63746269756d703432787779377371697779716c797663676867756c37326c66346a6a6f67627272657865683634a2646970667358221220d8f0cfc41839abeeb5123b78e33c83f5697ea18df33bcce188238b26b58233fc64736f6c63430008040033

Deployed Bytecode Sourcemap

53003:2219:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22806:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28453:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30399:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29947:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21860:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53450:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39664:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54008:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53257:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54264:68;;;;;;;;;;;;;:::i;:::-;;31289:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54474:283;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53287:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28242:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23485:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7387:103;;;;;;;;;;;;;:::i;:::-;;53144:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6736:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28622:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54190:68;;;;;;;;;;;;;:::i;:::-;;53572:430;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30675:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31545:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54338:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54763:341;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55110:109;;;;;;;;;;;;;:::i;:::-;;53314:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53359:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53406:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31054:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7645:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53044:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22806:615;22891:4;23206:10;23191:25;;:11;:25;;;;:102;;;;23283:10;23268:25;;:11;:25;;;;23191:102;:179;;;;23360:10;23345:25;;:11;:25;;;;23191:179;23171:199;;22806:615;;;:::o;28453:100::-;28507:13;28540:5;28533:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28453:100;:::o;30399:204::-;30467:7;30492:16;30500:7;30492;:16::i;:::-;30487:64;;30517:34;;;;;;;;;;;;;;30487:64;30571:15;:24;30587:7;30571:24;;;;;;;;;;;;;;;;;;;;;30564:31;;30399:204;;;:::o;29947:386::-;30020:13;30036:16;30044:7;30036;:16::i;:::-;30020:32;;30092:5;30069:28;;:19;:17;:19::i;:::-;:28;;;30065:175;;30117:44;30134:5;30141:19;:17;:19::i;:::-;30117:16;:44::i;:::-;30112:128;;30189:35;;;;;;;;;;;;;;30112:128;30065:175;30279:2;30252:15;:24;30268:7;30252:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30317:7;30313:2;30297:28;;30306:5;30297:28;;;;;;;;;;;;29947:386;;;:::o;21860:315::-;21913:7;22141:15;:13;:15::i;:::-;22126:12;;22110:13;;:28;:46;22103:53;;21860:315;:::o;53450:19::-;;;;;;;;;;;;;:::o;39664:2800::-;39798:27;39828;39847:7;39828:18;:27::i;:::-;39798:57;;39913:4;39872:45;;39888:19;39872:45;;;39868:86;;39926:28;;;;;;;;;;;;;;39868:86;39968:27;39997:23;40024:28;40044:7;40024:19;:28::i;:::-;39967:85;;;;40152:62;40171:15;40188:4;40194:19;:17;:19::i;:::-;40152:18;:62::i;:::-;40147:174;;40234:43;40251:4;40257:19;:17;:19::i;:::-;40234:16;:43::i;:::-;40229:92;;40286:35;;;;;;;;;;;;;;40229:92;40147:174;40352:1;40338:16;;:2;:16;;;40334:52;;;40363:23;;;;;;;;;;;;;;40334:52;40399:43;40421:4;40427:2;40431:7;40440:1;40399:21;:43::i;:::-;40535:15;40532:2;;;40675:1;40654:19;40647:30;40532:2;41070:18;:24;41089:4;41070:24;;;;;;;;;;;;;;;;41068:26;;;;;;;;;;;;41139:18;:22;41158:2;41139:22;;;;;;;;;;;;;;;;41137:24;;;;;;;;;;;41461:145;41498:2;41546:45;41561:4;41567:2;41571:19;41546:14;:45::i;:::-;19088:8;41519:72;41461:18;:145::i;:::-;41432:17;:26;41450:7;41432:26;;;;;;;;;;;:174;;;;41776:1;19088:8;41726:19;:46;:51;41722:626;;;41798:19;41830:1;41820:7;:11;41798:33;;41987:1;41953:17;:30;41971:11;41953:30;;;;;;;;;;;;:35;41949:384;;;42091:13;;42076:11;:28;42072:242;;42271:19;42238:17;:30;42256:11;42238:30;;;;;;;;;;;:52;;;;42072:242;41949:384;41722:626;;42395:7;42391:2;42376:27;;42385:4;42376:27;;;;;;;;;;;;42414:42;42435:4;42441:2;42445:7;42454:1;42414:20;:42::i;:::-;39664:2800;;;;;;:::o;54008:176::-;6967:12;:10;:12::i;:::-;6956:23;;:7;:5;:7::i;:::-;:23;;;6948:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53350:4:::1;54089:6;54073:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;54065:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;54149:29;54159:10;54171:6;54149:9;:29::i;:::-;54008:176:::0;:::o;53257:25::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54264:68::-;6967:12;:10;:12::i;:::-;6956:23;;:7;:5;:7::i;:::-;:23;;;6948:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54321:5:::1;54311:7;;:15;;;;;;;;;;;;;;;;;;54264:68::o:0;31289:185::-;31427:39;31444:4;31450:2;31454:7;31427:39;;;;;;;;;;;;:16;:39::i;:::-;31289:185;;;:::o;54474:283::-;6967:12;:10;:12::i;:::-;6956:23;;:7;:5;:7::i;:::-;:23;;;6948:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54551:8:::1;;;;;;;;;;;54550:9;54542:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;53186:66;54637:15;;54619:12;54603:30;;;;;;:49;54587:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;54714:4;54703:8;;:15;;;;;;;;;;;;;;;;;;54739:12;54725:11;:26;;;;;;;;;;;;:::i;:::-;;54474:283:::0;:::o;53287:20::-;;;;;;;;;;;;;:::o;28242:144::-;28306:7;28349:27;28368:7;28349:18;:27::i;:::-;28326:52;;28242:144;;;:::o;23485:224::-;23549:7;23590:1;23573:19;;:5;:19;;;23569:60;;;23601:28;;;;;;;;;;;;;;23569:60;18040:13;23647:18;:25;23666:5;23647:25;;;;;;;;;;;;;;;;:54;23640:61;;23485:224;;;:::o;7387:103::-;6967:12;:10;:12::i;:::-;6956:23;;:7;:5;:7::i;:::-;:23;;;6948:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7452:30:::1;7479:1;7452:18;:30::i;:::-;7387:103::o:0;53144:108::-;53186:66;53144:108;;;:::o;6736:87::-;6782:7;6809:6;;;;;;;;;;;6802:13;;6736:87;:::o;28622:104::-;28678:13;28711:7;28704:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28622:104;:::o;54190:68::-;6967:12;:10;:12::i;:::-;6956:23;;:7;:5;:7::i;:::-;:23;;;6948:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54248:4:::1;54238:7;;:14;;;;;;;;;;;;;;;;;;54190:68::o:0;53572:430::-;53350:4;53648:6;53632:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;53624:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;53738:9;;53729:6;:18;;;;:::i;:::-;53716:9;:31;53708:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;53400:1;53813:6;53785:13;:25;53799:10;53785:25;;;;;;;;;;;;;;;;:34;;;;:::i;:::-;:52;;53777:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;53885:7;;;;;;;;;;;53877:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;53954:6;53925:13;:25;53939:10;53925:25;;;;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;;;;;53967:29;53977:10;53989:6;53967:9;:29::i;:::-;53572:430;:::o;30675:308::-;30786:19;:17;:19::i;:::-;30774:31;;:8;:31;;;30770:61;;;30814:17;;;;;;;;;;;;;;30770:61;30896:8;30844:18;:39;30863:19;:17;:19::i;:::-;30844:39;;;;;;;;;;;;;;;:49;30884:8;30844:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;30956:8;30920:55;;30935:19;:17;:19::i;:::-;30920:55;;;30966:8;30920:55;;;;;;:::i;:::-;;;;;;;;30675:308;;:::o;31545:399::-;31712:31;31725:4;31731:2;31735:7;31712:12;:31::i;:::-;31776:1;31758:2;:14;;;:19;31754:183;;31797:56;31828:4;31834:2;31838:7;31847:5;31797:30;:56::i;:::-;31792:145;;31881:40;;;;;;;;;;;;;;31792:145;31754:183;31545:399;;;;:::o;54338:130::-;54400:7;54440:13;:22;54454:7;54440:22;;;;;;;;;;;;;;;;53400:1;54423:39;;;;:::i;:::-;54416:46;;54338:130;;;:::o;54763:341::-;54857:13;54886:8;;;;;;;;;;;54882:217;;;54947:11;54965:25;54982:7;54965:16;:25::i;:::-;54919:81;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54905:96;;;;54882:217;55066:8;;;;;;;;;;;;;;;;;55038:52;;;;;;;;:::i;:::-;;;;;;;;;;;;;55024:67;;54763:341;;;;:::o;55110:109::-;6967:12;:10;:12::i;:::-;6956:23;;:7;:5;:7::i;:::-;:23;;;6948:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55172:7:::1;:5;:7::i;:::-;55156:34;;:57;55191:21;55156:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;55110:109::o:0;53314:40::-;53350:4;53314:40;:::o;53359:42::-;53400:1;53359:42;:::o;53406:39::-;;;;:::o;31054:164::-;31151:4;31175:18;:25;31194:5;31175:25;;;;;;;;;;;;;;;:35;31201:8;31175:35;;;;;;;;;;;;;;;;;;;;;;;;;31168:42;;31054:164;;;;:::o;7645:201::-;6967:12;:10;:12::i;:::-;6956:23;;:7;:5;:7::i;:::-;:23;;;6948:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7754:1:::1;7734:22;;:8;:22;;;;7726:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7810:28;7829:8;7810:18;:28::i;:::-;7645:201:::0;:::o;53044:95::-;;;;;;;;;;;;;;;;;;;:::o;32199:273::-;32256:4;32312:7;32293:15;:13;:15::i;:::-;:26;;:66;;;;;32346:13;;32336:7;:23;32293:66;:152;;;;;32444:1;18810:8;32397:17;:26;32415:7;32397:26;;;;;;;;;;;;:43;:48;32293:152;32273:172;;32199:273;;;:::o;50760:105::-;50820:7;50847:10;50840:17;;50760:105;:::o;21384:92::-;21440:7;21384:92;:::o;25159:1129::-;25226:7;25246:12;25261:7;25246:22;;25329:4;25310:15;:13;:15::i;:::-;:23;25306:915;;25363:13;;25356:4;:20;25352:869;;;25401:14;25418:17;:23;25436:4;25418:23;;;;;;;;;;;;25401:40;;25534:1;18810:8;25507:6;:23;:28;25503:699;;;26026:113;26043:1;26033:6;:11;26026:113;;;26086:17;:25;26104:6;;;;;;;26086:25;;;;;;;;;;;;26077:34;;26026:113;;;26172:6;26165:13;;;;;;25503:699;25352:869;;25306:915;26249:31;;;;;;;;;;;;;;25159:1129;;;;:::o;38000:652::-;38095:27;38124:23;38165:53;38221:15;38165:71;;38407:7;38401:4;38394:21;38442:22;38436:4;38429:36;38518:4;38512;38502:21;38479:44;;38614:19;38608:26;38589:45;;38345:300;;;;:::o;38765:645::-;38907:11;39069:15;39063:4;39059:26;39051:34;;39228:15;39217:9;39213:31;39200:44;;39375:15;39364:9;39361:30;39354:4;39343:9;39340:19;39337:55;39327:65;;38940:463;;;;;:::o;49593:159::-;;;;;:::o;47905:309::-;48040:7;48060:16;19211:3;48086:19;:40;;48060:67;;19211:3;48153:31;48164:4;48170:2;48174:9;48153:10;:31::i;:::-;48145:40;;:61;;48138:68;;;47905:309;;;;;:::o;27733:447::-;27813:14;27981:15;27974:5;27970:27;27961:36;;28155:5;28141:11;28117:22;28113:40;28110:51;28103:5;28100:62;28090:72;;27849:324;;;;:::o;50411:158::-;;;;;:::o;5456:98::-;5509:7;5536:10;5529:17;;5456:98;:::o;32556:104::-;32625:27;32635:2;32639:8;32625:27;;;;;;;;;;;;:9;:27::i;:::-;32556:104;;:::o;8006:191::-;8080:16;8099:6;;;;;;;;;;;8080:25;;8125:8;8116:6;;:17;;;;;;;;;;;;;;;;;;8180:8;8149:40;;8170:8;8149:40;;;;;;;;;;;;8006:191;;:::o;46415:716::-;46578:4;46624:2;46599:45;;;46645:19;:17;:19::i;:::-;46666:4;46672:7;46681:5;46599:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46595:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46899:1;46882:6;:13;:18;46878:235;;;46928:40;;;;;;;;;;;;;;46878:235;47071:6;47065:13;47056:6;47052:2;47048:15;47041:38;46595:529;46768:54;;;46758:64;;;:6;:64;;;;46751:71;;;46415:716;;;;;;:::o;3012:723::-;3068:13;3298:1;3289:5;:10;3285:53;;;3316:10;;;;;;;;;;;;;;;;;;;;;3285:53;3348:12;3363:5;3348:20;;3379:14;3404:78;3419:1;3411:4;:9;3404:78;;3437:8;;;;;:::i;:::-;;;;3468:2;3460:10;;;;;:::i;:::-;;;3404:78;;;3492:19;3524:6;3514:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3492:39;;3542:154;3558:1;3549:5;:10;3542:154;;3586:1;3576:11;;;;;:::i;:::-;;;3653:2;3645:5;:10;;;;:::i;:::-;3632:2;:24;;;;:::i;:::-;3619:39;;3602:6;3609;3602:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;3682:2;3673:11;;;;;:::i;:::-;;;3542:154;;;3720:6;3706:21;;;;;3012:723;;;;:::o;48790:147::-;48927:6;48790:147;;;;;:::o;33076:681::-;33199:19;33205:2;33209:8;33199:5;:19::i;:::-;33278:1;33260:2;:14;;;:19;33256:483;;33300:11;33314:13;;33300:27;;33346:13;33368:8;33362:3;:14;33346:30;;33395:233;33426:62;33465:1;33469:2;33473:7;;;;;;33482:5;33426:30;:62::i;:::-;33421:167;;33524:40;;;;;;;;;;;;;;33421:167;33623:3;33615:5;:11;33395:233;;33710:3;33693:13;;:20;33689:34;;33715:8;;;33689:34;33256:483;;;33076:681;;;:::o;34030:1529::-;34095:20;34118:13;;34095:36;;34160:1;34146:16;;:2;:16;;;34142:48;;;34171:19;;;;;;;;;;;;;;34142:48;34217:1;34205:8;:13;34201:44;;;34227:18;;;;;;;;;;;;;;34201:44;34258:61;34288:1;34292:2;34296:12;34310:8;34258:21;:61::i;:::-;34801:1;18177:2;34772:1;:25;;34771:31;34759:8;:44;34733:18;:22;34752:2;34733:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;35080:139;35117:2;35171:33;35194:1;35198:2;35202:1;35171:14;:33::i;:::-;35138:30;35159:8;35138:20;:30::i;:::-;:66;35080:18;:139::i;:::-;35046:17;:31;35064:12;35046:31;;;;;;;;;;;:173;;;;35236:15;35254:12;35236:30;;35281:11;35310:8;35295:12;:23;35281:37;;35333:101;35385:9;;;;;;35381:2;35360:35;;35377:1;35360:35;;;;;;;;;;;;35429:3;35419:7;:13;35333:101;;35466:3;35450:13;:19;;;;34030:1529;;35491:60;35520:1;35524:2;35528:12;35542:8;35491:20;:60::i;:::-;34030:1529;;;:::o;29563:322::-;29633:14;29864:1;29854:8;29851:15;29826:23;29822:45;29812:55;;29735:143;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:260::-;4941:6;4990:2;4978:9;4969:7;4965:23;4961:32;4958:2;;;5006:1;5003;4996:12;4958:2;5049:1;5074:52;5118:7;5109:6;5098:9;5094:22;5074:52;:::i;:::-;5064:62;;5020:116;4948:195;;;;:::o;5149:282::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:2;;;5283:1;5280;5273:12;5235:2;5326:1;5351:63;5406:7;5397:6;5386:9;5382:22;5351:63;:::i;:::-;5341:73;;5297:127;5225:206;;;;:::o;5437:375::-;5506:6;5555:2;5543:9;5534:7;5530:23;5526:32;5523:2;;;5571:1;5568;5561:12;5523:2;5642:1;5631:9;5627:17;5614:31;5672:18;5664:6;5661:30;5658:2;;;5704:1;5701;5694:12;5658:2;5732:63;5787:7;5778:6;5767:9;5763:22;5732:63;:::i;:::-;5722:73;;5585:220;5513:299;;;;:::o;5818:262::-;5877:6;5926:2;5914:9;5905:7;5901:23;5897:32;5894:2;;;5942:1;5939;5932:12;5894:2;5985:1;6010:53;6055:7;6046:6;6035:9;6031:22;6010:53;:::i;:::-;6000:63;;5956:117;5884:196;;;;:::o;6086:118::-;6173:24;6191:5;6173:24;:::i;:::-;6168:3;6161:37;6151:53;;:::o;6210:109::-;6291:21;6306:5;6291:21;:::i;:::-;6286:3;6279:34;6269:50;;:::o;6325:118::-;6412:24;6430:5;6412:24;:::i;:::-;6407:3;6400:37;6390:53;;:::o;6449:360::-;6535:3;6563:38;6595:5;6563:38;:::i;:::-;6617:70;6680:6;6675:3;6617:70;:::i;:::-;6610:77;;6696:52;6741:6;6736:3;6729:4;6722:5;6718:16;6696:52;:::i;:::-;6773:29;6795:6;6773:29;:::i;:::-;6768:3;6764:39;6757:46;;6539:270;;;;;:::o;6815:364::-;6903:3;6931:39;6964:5;6931:39;:::i;:::-;6986:71;7050:6;7045:3;6986:71;:::i;:::-;6979:78;;7066:52;7111:6;7106:3;7099:4;7092:5;7088:16;7066:52;:::i;:::-;7143:29;7165:6;7143:29;:::i;:::-;7138:3;7134:39;7127:46;;6907:272;;;;;:::o;7185:377::-;7291:3;7319:39;7352:5;7319:39;:::i;:::-;7374:89;7456:6;7451:3;7374:89;:::i;:::-;7367:96;;7472:52;7517:6;7512:3;7505:4;7498:5;7494:16;7472:52;:::i;:::-;7549:6;7544:3;7540:16;7533:23;;7295:267;;;;;:::o;7592:845::-;7695:3;7732:5;7726:12;7761:36;7787:9;7761:36;:::i;:::-;7813:89;7895:6;7890:3;7813:89;:::i;:::-;7806:96;;7933:1;7922:9;7918:17;7949:1;7944:137;;;;8095:1;8090:341;;;;7911:520;;7944:137;8028:4;8024:9;8013;8009:25;8004:3;7997:38;8064:6;8059:3;8055:16;8048:23;;7944:137;;8090:341;8157:38;8189:5;8157:38;:::i;:::-;8217:1;8231:154;8245:6;8242:1;8239:13;8231:154;;;8319:7;8313:14;8309:1;8304:3;8300:11;8293:35;8369:1;8360:7;8356:15;8345:26;;8267:4;8264:1;8260:12;8255:17;;8231:154;;;8414:6;8409:3;8405:16;8398:23;;8097:334;;7911:520;;7699:738;;;;;;:::o;8443:366::-;8585:3;8606:67;8670:2;8665:3;8606:67;:::i;:::-;8599:74;;8682:93;8771:3;8682:93;:::i;:::-;8800:2;8795:3;8791:12;8784:19;;8589:220;;;:::o;8815:366::-;8957:3;8978:67;9042:2;9037:3;8978:67;:::i;:::-;8971:74;;9054:93;9143:3;9054:93;:::i;:::-;9172:2;9167:3;9163:12;9156:19;;8961:220;;;:::o;9187:400::-;9347:3;9368:84;9450:1;9445:3;9368:84;:::i;:::-;9361:91;;9461:93;9550:3;9461:93;:::i;:::-;9579:1;9574:3;9570:11;9563:18;;9351:236;;;:::o;9593:366::-;9735:3;9756:67;9820:2;9815:3;9756:67;:::i;:::-;9749:74;;9832:93;9921:3;9832:93;:::i;:::-;9950:2;9945:3;9941:12;9934:19;;9739:220;;;:::o;9965:366::-;10107:3;10128:67;10192:2;10187:3;10128:67;:::i;:::-;10121:74;;10204:93;10293:3;10204:93;:::i;:::-;10322:2;10317:3;10313:12;10306:19;;10111:220;;;:::o;10337:400::-;10497:3;10518:84;10600:1;10595:3;10518:84;:::i;:::-;10511:91;;10611:93;10700:3;10611:93;:::i;:::-;10729:1;10724:3;10720:11;10713:18;;10501:236;;;:::o;10743:366::-;10885:3;10906:67;10970:2;10965:3;10906:67;:::i;:::-;10899:74;;10982:93;11071:3;10982:93;:::i;:::-;11100:2;11095:3;11091:12;11084:19;;10889:220;;;:::o;11115:366::-;11257:3;11278:67;11342:2;11337:3;11278:67;:::i;:::-;11271:74;;11354:93;11443:3;11354:93;:::i;:::-;11472:2;11467:3;11463:12;11456:19;;11261:220;;;:::o;11487:366::-;11629:3;11650:67;11714:2;11709:3;11650:67;:::i;:::-;11643:74;;11726:93;11815:3;11726:93;:::i;:::-;11844:2;11839:3;11835:12;11828:19;;11633:220;;;:::o;11859:402::-;12019:3;12040:85;12122:2;12117:3;12040:85;:::i;:::-;12033:92;;12134:93;12223:3;12134:93;:::i;:::-;12252:2;12247:3;12243:12;12236:19;;12023:238;;;:::o;12267:366::-;12409:3;12430:67;12494:2;12489:3;12430:67;:::i;:::-;12423:74;;12506:93;12595:3;12506:93;:::i;:::-;12624:2;12619:3;12615:12;12608:19;;12413:220;;;:::o;12639:400::-;12799:3;12820:84;12902:1;12897:3;12820:84;:::i;:::-;12813:91;;12913:93;13002:3;12913:93;:::i;:::-;13031:1;13026:3;13022:11;13015:18;;12803:236;;;:::o;13045:118::-;13132:24;13150:5;13132:24;:::i;:::-;13127:3;13120:37;13110:53;;:::o;13169:807::-;13503:3;13525:148;13669:3;13525:148;:::i;:::-;13518:155;;13690:95;13781:3;13772:6;13690:95;:::i;:::-;13683:102;;13802:148;13946:3;13802:148;:::i;:::-;13795:155;;13967:3;13960:10;;13507:469;;;;:::o;13982:1227::-;14462:3;14484:148;14628:3;14484:148;:::i;:::-;14477:155;;14649:92;14737:3;14728:6;14649:92;:::i;:::-;14642:99;;14758:148;14902:3;14758:148;:::i;:::-;14751:155;;14923:95;15014:3;15005:6;14923:95;:::i;:::-;14916:102;;15035:148;15179:3;15035:148;:::i;:::-;15028:155;;15200:3;15193:10;;14466:743;;;;;:::o;15215:222::-;15308:4;15346:2;15335:9;15331:18;15323:26;;15359:71;15427:1;15416:9;15412:17;15403:6;15359:71;:::i;:::-;15313:124;;;;:::o;15443:640::-;15638:4;15676:3;15665:9;15661:19;15653:27;;15690:71;15758:1;15747:9;15743:17;15734:6;15690:71;:::i;:::-;15771:72;15839:2;15828:9;15824:18;15815:6;15771:72;:::i;:::-;15853;15921:2;15910:9;15906:18;15897:6;15853:72;:::i;:::-;15972:9;15966:4;15962:20;15957:2;15946:9;15942:18;15935:48;16000:76;16071:4;16062:6;16000:76;:::i;:::-;15992:84;;15643:440;;;;;;;:::o;16089:210::-;16176:4;16214:2;16203:9;16199:18;16191:26;;16227:65;16289:1;16278:9;16274:17;16265:6;16227:65;:::i;:::-;16181:118;;;;:::o;16305:222::-;16398:4;16436:2;16425:9;16421:18;16413:26;;16449:71;16517:1;16506:9;16502:17;16493:6;16449:71;:::i;:::-;16403:124;;;;:::o;16533:313::-;16646:4;16684:2;16673:9;16669:18;16661:26;;16733:9;16727:4;16723:20;16719:1;16708:9;16704:17;16697:47;16761:78;16834:4;16825:6;16761:78;:::i;:::-;16753:86;;16651:195;;;;:::o;16852:419::-;17018:4;17056:2;17045:9;17041:18;17033:26;;17105:9;17099:4;17095:20;17091:1;17080:9;17076:17;17069:47;17133:131;17259:4;17133:131;:::i;:::-;17125:139;;17023:248;;;:::o;17277:419::-;17443:4;17481:2;17470:9;17466:18;17458:26;;17530:9;17524:4;17520:20;17516:1;17505:9;17501:17;17494:47;17558:131;17684:4;17558:131;:::i;:::-;17550:139;;17448:248;;;:::o;17702:419::-;17868:4;17906:2;17895:9;17891:18;17883:26;;17955:9;17949:4;17945:20;17941:1;17930:9;17926:17;17919:47;17983:131;18109:4;17983:131;:::i;:::-;17975:139;;17873:248;;;:::o;18127:419::-;18293:4;18331:2;18320:9;18316:18;18308:26;;18380:9;18374:4;18370:20;18366:1;18355:9;18351:17;18344:47;18408:131;18534:4;18408:131;:::i;:::-;18400:139;;18298:248;;;:::o;18552:419::-;18718:4;18756:2;18745:9;18741:18;18733:26;;18805:9;18799:4;18795:20;18791:1;18780:9;18776:17;18769:47;18833:131;18959:4;18833:131;:::i;:::-;18825:139;;18723:248;;;:::o;18977:419::-;19143:4;19181:2;19170:9;19166:18;19158:26;;19230:9;19224:4;19220:20;19216:1;19205:9;19201:17;19194:47;19258:131;19384:4;19258:131;:::i;:::-;19250:139;;19148:248;;;:::o;19402:419::-;19568:4;19606:2;19595:9;19591:18;19583:26;;19655:9;19649:4;19645:20;19641:1;19630:9;19626:17;19619:47;19683:131;19809:4;19683:131;:::i;:::-;19675:139;;19573:248;;;:::o;19827:419::-;19993:4;20031:2;20020:9;20016:18;20008:26;;20080:9;20074:4;20070:20;20066:1;20055:9;20051:17;20044:47;20108:131;20234:4;20108:131;:::i;:::-;20100:139;;19998:248;;;:::o;20252:222::-;20345:4;20383:2;20372:9;20368:18;20360:26;;20396:71;20464:1;20453:9;20449:17;20440:6;20396:71;:::i;:::-;20350:124;;;;:::o;20480:129::-;20514:6;20541:20;;:::i;:::-;20531:30;;20570:33;20598:4;20590:6;20570:33;:::i;:::-;20521:88;;;:::o;20615:75::-;20648:6;20681:2;20675:9;20665:19;;20655:35;:::o;20696:307::-;20757:4;20847:18;20839:6;20836:30;20833:2;;;20869:18;;:::i;:::-;20833:2;20907:29;20929:6;20907:29;:::i;:::-;20899:37;;20991:4;20985;20981:15;20973:23;;20762:241;;;:::o;21009:308::-;21071:4;21161:18;21153:6;21150:30;21147:2;;;21183:18;;:::i;:::-;21147:2;21221:29;21243:6;21221:29;:::i;:::-;21213:37;;21305:4;21299;21295:15;21287:23;;21076:241;;;:::o;21323:141::-;21372:4;21395:3;21387:11;;21418:3;21415:1;21408:14;21452:4;21449:1;21439:18;21431:26;;21377:87;;;:::o;21470:98::-;21521:6;21555:5;21549:12;21539:22;;21528:40;;;:::o;21574:99::-;21626:6;21660:5;21654:12;21644:22;;21633:40;;;:::o;21679:168::-;21762:11;21796:6;21791:3;21784:19;21836:4;21831:3;21827:14;21812:29;;21774:73;;;;:::o;21853:169::-;21937:11;21971:6;21966:3;21959:19;22011:4;22006:3;22002:14;21987:29;;21949:73;;;;:::o;22028:148::-;22130:11;22167:3;22152:18;;22142:34;;;;:::o;22182:305::-;22222:3;22241:20;22259:1;22241:20;:::i;:::-;22236:25;;22275:20;22293:1;22275:20;:::i;:::-;22270:25;;22429:1;22361:66;22357:74;22354:1;22351:81;22348:2;;;22435:18;;:::i;:::-;22348:2;22479:1;22476;22472:9;22465:16;;22226:261;;;;:::o;22493:185::-;22533:1;22550:20;22568:1;22550:20;:::i;:::-;22545:25;;22584:20;22602:1;22584:20;:::i;:::-;22579:25;;22623:1;22613:2;;22628:18;;:::i;:::-;22613:2;22670:1;22667;22663:9;22658:14;;22535:143;;;;:::o;22684:348::-;22724:7;22747:20;22765:1;22747:20;:::i;:::-;22742:25;;22781:20;22799:1;22781:20;:::i;:::-;22776:25;;22969:1;22901:66;22897:74;22894:1;22891:81;22886:1;22879:9;22872:17;22868:105;22865:2;;;22976:18;;:::i;:::-;22865:2;23024:1;23021;23017:9;23006:20;;22732:300;;;;:::o;23038:191::-;23078:4;23098:20;23116:1;23098:20;:::i;:::-;23093:25;;23132:20;23150:1;23132:20;:::i;:::-;23127:25;;23171:1;23168;23165:8;23162:2;;;23176:18;;:::i;:::-;23162:2;23221:1;23218;23214:9;23206:17;;23083:146;;;;:::o;23235:96::-;23272:7;23301:24;23319:5;23301:24;:::i;:::-;23290:35;;23280:51;;;:::o;23337:90::-;23371:7;23414:5;23407:13;23400:21;23389:32;;23379:48;;;:::o;23433:77::-;23470:7;23499:5;23488:16;;23478:32;;;:::o;23516:149::-;23552:7;23592:66;23585:5;23581:78;23570:89;;23560:105;;;:::o;23671:126::-;23708:7;23748:42;23741:5;23737:54;23726:65;;23716:81;;;:::o;23803:77::-;23840:7;23869:5;23858:16;;23848:32;;;:::o;23886:154::-;23970:6;23965:3;23960;23947:30;24032:1;24023:6;24018:3;24014:16;24007:27;23937:103;;;:::o;24046:307::-;24114:1;24124:113;24138:6;24135:1;24132:13;24124:113;;;24223:1;24218:3;24214:11;24208:18;24204:1;24199:3;24195:11;24188:39;24160:2;24157:1;24153:10;24148:15;;24124:113;;;24255:6;24252:1;24249:13;24246:2;;;24335:1;24326:6;24321:3;24317:16;24310:27;24246:2;24095:258;;;;:::o;24359:320::-;24403:6;24440:1;24434:4;24430:12;24420:22;;24487:1;24481:4;24477:12;24508:18;24498:2;;24564:4;24556:6;24552:17;24542:27;;24498:2;24626;24618:6;24615:14;24595:18;24592:38;24589:2;;;24645:18;;:::i;:::-;24589:2;24410:269;;;;:::o;24685:281::-;24768:27;24790:4;24768:27;:::i;:::-;24760:6;24756:40;24898:6;24886:10;24883:22;24862:18;24850:10;24847:34;24844:62;24841:2;;;24909:18;;:::i;:::-;24841:2;24949:10;24945:2;24938:22;24728:238;;;:::o;24972:233::-;25011:3;25034:24;25052:5;25034:24;:::i;:::-;25025:33;;25080:66;25073:5;25070:77;25067:2;;;25150:18;;:::i;:::-;25067:2;25197:1;25190:5;25186:13;25179:20;;25015:190;;;:::o;25211:176::-;25243:1;25260:20;25278:1;25260:20;:::i;:::-;25255:25;;25294:20;25312:1;25294:20;:::i;:::-;25289:25;;25333:1;25323:2;;25338:18;;:::i;:::-;25323:2;25379:1;25376;25372:9;25367:14;;25245:142;;;;:::o;25393:180::-;25441:77;25438:1;25431:88;25538:4;25535:1;25528:15;25562:4;25559:1;25552:15;25579:180;25627:77;25624:1;25617:88;25724:4;25721:1;25714:15;25748:4;25745:1;25738:15;25765:180;25813:77;25810:1;25803:88;25910:4;25907:1;25900:15;25934:4;25931:1;25924:15;25951:180;25999:77;25996:1;25989:88;26096:4;26093:1;26086:15;26120:4;26117:1;26110:15;26137:102;26178:6;26229:2;26225:7;26220:2;26213:5;26209:14;26205:28;26195:38;;26185:54;;;:::o;26245:174::-;26385:26;26381:1;26373:6;26369:14;26362:50;26351:68;:::o;26425:225::-;26565:34;26561:1;26553:6;26549:14;26542:58;26634:8;26629:2;26621:6;26617:15;26610:33;26531:119;:::o;26656:161::-;26796:9;26792:1;26784:6;26780:14;26773:33;26762:55;:::o;26827:187::-;26971:31;26967:1;26959:6;26955:14;26948:55;26933:81;:::o;27024:174::-;27168:18;27164:1;27156:6;27152:14;27145:42;27130:68;:::o;27208:163::-;27352:7;27348:1;27340:6;27336:14;27329:31;27314:57;:::o;27381:186::-;27525:30;27521:1;27513:6;27509:14;27502:54;27487:80;:::o;27577:190::-;27721:34;27717:1;27709:6;27705:14;27698:58;27683:84;:::o;27777:177::-;27921:21;27917:1;27909:6;27905:14;27898:45;27883:71;:::o;27964:169::-;28108:13;28104:1;28096:6;28092:14;28085:37;28070:63;:::o;28143:176::-;28287:20;28283:1;28275:6;28271:14;28264:44;28249:70;:::o;28329:159::-;28473:3;28469:1;28461:6;28457:14;28450:27;28435:53;:::o;28498:130::-;28575:24;28593:5;28575:24;:::i;:::-;28568:5;28565:35;28555:2;;28614:1;28611;28604:12;28555:2;28541:87;:::o;28638:124::-;28712:21;28727:5;28712:21;:::i;:::-;28705:5;28702:32;28692:2;;28748:1;28745;28738:12;28692:2;28678:84;:::o;28772:128::-;28848:23;28865:5;28848:23;:::i;:::-;28841:5;28838:34;28828:2;;28886:1;28883;28876:12;28828:2;28814:86;:::o;28910:130::-;28987:24;29005:5;28987:24;:::i;:::-;28980:5;28977:35;28967:2;;29026:1;29023;29016:12;28967:2;28953:87;:::o

Swarm Source

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