ETH Price: $3,327.06 (+2.07%)
Gas: 4 Gwei

Token

Dreamy Penguins (Dreamy Penguins)
 

Overview

Max Total Supply

580 Dreamy Penguins

Holders

212

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

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:
DreamyPenguins

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 2023-10-20
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
        tokenId = tokenId - 1;
        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

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

// White list contract
contract Whitelist is Ownable{

    constructor() {}

    // white list wallets
    mapping(address => uint256) public whitelistWallets;


    // add wallets to white list
    function addWhitelist(address[] calldata receivers) external onlyOwner {
        for (uint256 i = 0; i < receivers.length; i++) {
            whitelistWallets[receivers[i]] = 1;
        }
    }

    // is a wallet in whitelist
    function isInWhitelist(address wallet) public view returns(bool){
        return whitelistWallets[wallet] == 1;
    }
}

contract DreamyPenguins is ERC721A, Whitelist {

    using Strings for uint256;

    uint256 public constant MAX_SUPPLY = 580;
    //
    string private _tokenBaseURI;

    uint256 public price = 0.6 ether;
    uint256 public count;
    uint256 public startTime;
    uint256 public endTime;
    uint256 public saleTime = 24 hours;
    uint256 public perCount = 5;
    //
    uint256 public tokenId;
    mapping (address=>uint) public userInfo;

    constructor() ERC721A("Dreamy Penguins", "Dreamy Penguins")   {}

    function launch() public onlyOwner(){
        require(startTime == 0, "already started!");
        startTime = block.timestamp;
        endTime = startTime + saleTime;
    }

    // 
    function mint(uint256 _amount)
        public
        payable
        callerIsUser
    {
        require(block.timestamp>=startTime && block.timestamp<=endTime , "not sale time!");
        require(_amount > 0 && userInfo[msg.sender] + _amount  <= perCount,"Exceed sales max limit!");
        require(_amount+count <= MAX_SUPPLY,"Maximum count exceeded!");
        // require(isInWhitelist(msg.sender),"Not in whitelist yet!");
        uint256 cost = price * _amount;
        require(cost == msg.value,"invalid value!");
        safeTransfer(owner(),msg.value);
        count = count + _amount;
        userInfo[msg.sender] = userInfo[msg.sender] + _amount;
        // safe mint for every NFT
        _mint(msg.sender, _amount);
    }

    function burn(uint256 _tokenId) public {
        _burn(_tokenId);
    }

    function safeTransfer(address to, uint value) internal {
        (bool success,) = to.call{value:value}(new bytes(0));
        require(success, 'Transfer: ETH_TRANSFER_FAILED');
    }

    function setPrice(uint256 _price) public onlyOwner{
        require(price > 0,"Invalid price!");
        price = _price;
    }

    function setBaseURI(string calldata URI) external onlyOwner {
        _tokenBaseURI = URI;
    }

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

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

    // 
    modifier callerIsUser() {
        require(tx.origin == msg.sender, "not user!");
        _;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"}],"name":"addWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"count","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"isInWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launch","outputs":[],"stateMutability":"nonpayable","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":"perCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"saleTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userInfo","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistWallets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

6080604052670853a0d2313c0000600b5562015180600f5560056010553480156200002957600080fd5b506040518060400160405280600f81526020017f447265616d792050656e6775696e7300000000000000000000000000000000008152506040518060400160405280600f81526020017f447265616d792050656e6775696e7300000000000000000000000000000000008152508160029080519060200190620000ae929190620001dd565b508060039080519060200190620000c7929190620001dd565b50620000d86200010660201b60201c565b600081905550505062000100620000f46200010f60201b60201c565b6200011760201b60201c565b620002f2565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001eb906200028d565b90600052602060002090601f0160209004810192826200020f57600085556200025b565b82601f106200022a57805160ff19168380011785556200025b565b828001600101855582156200025b579182015b828111156200025a5782518255916020019190600101906200023d565b5b5090506200026a91906200026e565b5090565b5b80821115620002895760008160009055506001016200026f565b5090565b60006002820490506001821680620002a657607f821691505b60208210811415620002bd57620002bc620002c3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61323980620003026000396000f3fe6080604052600436106101f95760003560e01c80636352211e1161010d578063a035b1fe116100a0578063c87b56dd1161006f578063c87b56dd146106ce578063e985e9c51461070b578063edac985b14610748578063f2fde38b14610771578063f7e78e9d1461079a576101f9565b8063a035b1fe14610642578063a0712d681461066d578063a22cb46514610689578063b88d4fde146106b2576101f9565b80638da5cb5b116100dc5780638da5cb5b1461059857806391b7f5ed146105c357806395d89b41146105ec5780639c36f2e614610617576101f9565b80636352211e146104dc57806370a0823114610519578063715018a61461055657806378e979251461056d576101f9565b806317d70f7c116101905780633197cbb61161015f5780633197cbb61461041857806332cb6b0c1461044357806342842e0e1461046e57806342966c681461048a57806355f804b3146104b3576101f9565b806317d70f7c1461036957806318160ddd146103945780631959a002146103bf57806323b872dd146103fc576101f9565b8063081812fc116101cc578063081812fc146102a8578063095ea7b3146102e557806309fd8212146103015780631596facb1461033e576101f9565b806301339c21146101fe57806301ffc9a71461021557806306661abd1461025257806306fdde031461027d575b600080fd5b34801561020a57600080fd5b506102136107d7565b005b34801561022157600080fd5b5061023c60048036038101906102379190612706565b610843565b6040516102499190612ac7565b60405180910390f35b34801561025e57600080fd5b506102676108d5565b6040516102749190612c44565b60405180910390f35b34801561028957600080fd5b506102926108db565b60405161029f9190612ae2565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca919061279d565b61096d565b6040516102dc9190612a60565b60405180910390f35b6102ff60048036038101906102fa9190612685565b6109ec565b005b34801561030d57600080fd5b506103286004803603810190610323919061251a565b610b30565b6040516103359190612ac7565b60405180910390f35b34801561034a57600080fd5b50610353610b7c565b6040516103609190612c44565b60405180910390f35b34801561037557600080fd5b5061037e610b82565b60405161038b9190612c44565b60405180910390f35b3480156103a057600080fd5b506103a9610b88565b6040516103b69190612c44565b60405180910390f35b3480156103cb57600080fd5b506103e660048036038101906103e1919061251a565b610b9f565b6040516103f39190612c44565b60405180910390f35b6104166004803603810190610411919061257f565b610bb7565b005b34801561042457600080fd5b5061042d610edc565b60405161043a9190612c44565b60405180910390f35b34801561044f57600080fd5b50610458610ee2565b6040516104659190612c44565b60405180910390f35b6104886004803603810190610483919061257f565b610ee8565b005b34801561049657600080fd5b506104b160048036038101906104ac919061279d565b610f08565b005b3480156104bf57600080fd5b506104da60048036038101906104d59190612758565b610f14565b005b3480156104e857600080fd5b5061050360048036038101906104fe919061279d565b610f32565b6040516105109190612a60565b60405180910390f35b34801561052557600080fd5b50610540600480360381019061053b919061251a565b610f44565b60405161054d9190612c44565b60405180910390f35b34801561056257600080fd5b5061056b610ffd565b005b34801561057957600080fd5b50610582611011565b60405161058f9190612c44565b60405180910390f35b3480156105a457600080fd5b506105ad611017565b6040516105ba9190612a60565b60405180910390f35b3480156105cf57600080fd5b506105ea60048036038101906105e5919061279d565b611041565b005b3480156105f857600080fd5b50610601611098565b60405161060e9190612ae2565b60405180910390f35b34801561062357600080fd5b5061062c61112a565b6040516106399190612c44565b60405180910390f35b34801561064e57600080fd5b50610657611130565b6040516106649190612c44565b60405180910390f35b6106876004803603810190610682919061279d565b611136565b005b34801561069557600080fd5b506106b060048036038101906106ab9190612649565b6113f9565b005b6106cc60048036038101906106c791906125ce565b611504565b005b3480156106da57600080fd5b506106f560048036038101906106f0919061279d565b611577565b6040516107029190612ae2565b60405180910390f35b34801561071757600080fd5b50610732600480360381019061072d9190612543565b611625565b60405161073f9190612ac7565b60405180910390f35b34801561075457600080fd5b5061076f600480360381019061076a91906126c1565b6116b9565b005b34801561077d57600080fd5b506107986004803603810190610793919061251a565b611779565b005b3480156107a657600080fd5b506107c160048036038101906107bc919061251a565b6117fd565b6040516107ce9190612c44565b60405180910390f35b6107df611815565b6000600d5414610824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081b90612b64565b60405180910390fd5b42600d81905550600f54600d5461083b9190612d03565b600e81905550565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ce5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600c5481565b6060600280546108ea90612e9d565b80601f016020809104026020016040519081016040528092919081815260200182805461091690612e9d565b80156109635780601f1061093857610100808354040283529160200191610963565b820191906000526020600020905b81548152906001019060200180831161094657829003601f168201915b5050505050905090565b600061097882611893565b6109ae576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109f782610f32565b90508073ffffffffffffffffffffffffffffffffffffffff16610a186118f2565b73ffffffffffffffffffffffffffffffffffffffff1614610a7b57610a4481610a3f6118f2565b611625565b610a7a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054149050919050565b600f5481565b60115481565b6000610b926118fa565b6001546000540303905090565b60126020528060005260406000206000915090505481565b6000610bc282611903565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c29576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c35846119d1565b91509150610c4b8187610c466118f2565b6119f8565b610c9757610c6086610c5b6118f2565b611625565b610c96576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610cfe576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d0b8686866001611a3c565b8015610d1657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610de485610dc0888887611a42565b7c020000000000000000000000000000000000000000000000000000000017611a6a565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e6c576000600185019050600060046000838152602001908152602001600020541415610e6a576000548114610e69578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ed48686866001611a95565b505050505050565b600e5481565b61024481565b610f0383838360405180602001604052806000815250611504565b505050565b610f1181611a9b565b50565b610f1c611815565b8181600a9190610f2d929190612312565b505050565b6000610f3d82611903565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fac576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611005611815565b61100f6000611aa9565b565b600d5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611049611815565b6000600b541161108e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108590612c04565b60405180910390fd5b80600b8190555050565b6060600380546110a790612e9d565b80601f01602080910402602001604051908101604052809291908181526020018280546110d390612e9d565b80156111205780601f106110f557610100808354040283529160200191611120565b820191906000526020600020905b81548152906001019060200180831161110357829003601f168201915b5050505050905090565b60105481565b600b5481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146111a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119b90612b04565b60405180910390fd5b600d5442101580156111b85750600e544211155b6111f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ee90612b24565b60405180910390fd5b600081118015611253575060105481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112509190612d03565b11155b611292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128990612bc4565b60405180910390fd5b610244600c54826112a39190612d03565b11156112e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112db90612c24565b60405180910390fd5b600081600b546112f49190612d59565b9050348114611338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132f90612b84565b60405180910390fd5b611349611343611017565b34611b6f565b81600c546113579190612d03565b600c8190555081601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113a89190612d03565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506113f53383611c95565b5050565b80600760006114066118f2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114b36118f2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114f89190612ac7565b60405180910390a35050565b61150f848484610bb7565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115715761153a84848484611e52565b611570576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061158282611893565b6115b8576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001826115c59190612db3565b915060006115d1611fb2565b90506000815114156115f2576040518060200160405280600081525061161d565b806115fc84612044565b60405160200161160d929190612a3c565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116c1611815565b60005b828290508110156117745760016009600085858581811061170e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611723919061251a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061176c90612f00565b9150506116c4565b505050565b611781611815565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e890612b44565b60405180910390fd5b6117fa81611aa9565b50565b60096020528060005260406000206000915090505481565b61181d61209d565b73ffffffffffffffffffffffffffffffffffffffff1661183b611017565b73ffffffffffffffffffffffffffffffffffffffff1614611891576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188890612be4565b60405180910390fd5b565b60008161189e6118fa565b111580156118ad575060005482105b80156118eb575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806119126118fa565b1161199a576000548110156119995760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611997575b600081141561198d576004600083600190039350838152602001908152602001600020549050611962565b80925050506119cc565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611a598686846120a5565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611aa68160006120ae565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff1682600067ffffffffffffffff811115611bca577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611bfc5781602001600182028036833780820191505090505b50604051611c0a9190612a25565b60006040518083038185875af1925050503d8060008114611c47576040519150601f19603f3d011682016040523d82523d6000602084013e611c4c565b606091505b5050905080611c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8790612ba4565b60405180910390fd5b505050565b6000805490506000821415611cd6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ce36000848385611a3c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611d5a83611d4b6000866000611a42565b611d5485612302565b17611a6a565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611dfb57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611dc0565b506000821415611e37576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611e4d6000848385611a95565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e786118f2565b8786866040518563ffffffff1660e01b8152600401611e9a9493929190612a7b565b602060405180830381600087803b158015611eb457600080fd5b505af1925050508015611ee557506040513d601f19601f82011682018060405250810190611ee2919061272f565b60015b611f5f573d8060008114611f15576040519150601f19603f3d011682016040523d82523d6000602084013e611f1a565b606091505b50600081511415611f57576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611fc190612e9d565b80601f0160208091040260200160405190810160405280929190818152602001828054611fed90612e9d565b801561203a5780601f1061200f5761010080835404028352916020019161203a565b820191906000526020600020905b81548152906001019060200180831161201d57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561208857600184039350600a81066030018453600a810490508061208357612088565b61205d565b50828103602084039350808452505050919050565b600033905090565b60009392505050565b60006120b983611903565b905060008190506000806120cc866119d1565b915091508415612135576120e881846120e36118f2565b6119f8565b612134576120fd836120f86118f2565b611625565b612133576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b612143836000886001611a3c565b801561214e57600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506121f6836121b385600088611a42565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717611a6a565b600460008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516141561227e57600060018701905060006004600083815260200190815260200160002054141561227c57600054811461227b578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122e8836000886001611a95565b600160008154809291906001019190505550505050505050565b60006001821460e11b9050919050565b82805461231e90612e9d565b90600052602060002090601f0160209004810192826123405760008555612387565b82601f1061235957803560ff1916838001178555612387565b82800160010185558215612387579182015b8281111561238657823582559160200191906001019061236b565b5b5090506123949190612398565b5090565b5b808211156123b1576000816000905550600101612399565b5090565b60006123c86123c384612c84565b612c5f565b9050828152602081018484840111156123e057600080fd5b6123eb848285612e5b565b509392505050565b600081359050612402816131a7565b92915050565b60008083601f84011261241a57600080fd5b8235905067ffffffffffffffff81111561243357600080fd5b60208301915083602082028301111561244b57600080fd5b9250929050565b600081359050612461816131be565b92915050565b600081359050612476816131d5565b92915050565b60008151905061248b816131d5565b92915050565b600082601f8301126124a257600080fd5b81356124b28482602086016123b5565b91505092915050565b60008083601f8401126124cd57600080fd5b8235905067ffffffffffffffff8111156124e657600080fd5b6020830191508360018202830111156124fe57600080fd5b9250929050565b600081359050612514816131ec565b92915050565b60006020828403121561252c57600080fd5b600061253a848285016123f3565b91505092915050565b6000806040838503121561255657600080fd5b6000612564858286016123f3565b9250506020612575858286016123f3565b9150509250929050565b60008060006060848603121561259457600080fd5b60006125a2868287016123f3565b93505060206125b3868287016123f3565b92505060406125c486828701612505565b9150509250925092565b600080600080608085870312156125e457600080fd5b60006125f2878288016123f3565b9450506020612603878288016123f3565b935050604061261487828801612505565b925050606085013567ffffffffffffffff81111561263157600080fd5b61263d87828801612491565b91505092959194509250565b6000806040838503121561265c57600080fd5b600061266a858286016123f3565b925050602061267b85828601612452565b9150509250929050565b6000806040838503121561269857600080fd5b60006126a6858286016123f3565b92505060206126b785828601612505565b9150509250929050565b600080602083850312156126d457600080fd5b600083013567ffffffffffffffff8111156126ee57600080fd5b6126fa85828601612408565b92509250509250929050565b60006020828403121561271857600080fd5b600061272684828501612467565b91505092915050565b60006020828403121561274157600080fd5b600061274f8482850161247c565b91505092915050565b6000806020838503121561276b57600080fd5b600083013567ffffffffffffffff81111561278557600080fd5b612791858286016124bb565b92509250509250929050565b6000602082840312156127af57600080fd5b60006127bd84828501612505565b91505092915050565b6127cf81612de7565b82525050565b6127de81612df9565b82525050565b60006127ef82612cb5565b6127f98185612ccb565b9350612809818560208601612e6a565b61281281612fd6565b840191505092915050565b600061282882612cb5565b6128328185612cdc565b9350612842818560208601612e6a565b80840191505092915050565b600061285982612cc0565b6128638185612ce7565b9350612873818560208601612e6a565b61287c81612fd6565b840191505092915050565b600061289282612cc0565b61289c8185612cf8565b93506128ac818560208601612e6a565b80840191505092915050565b60006128c5600983612ce7565b91506128d082612fe7565b602082019050919050565b60006128e8600e83612ce7565b91506128f382613010565b602082019050919050565b600061290b602683612ce7565b915061291682613039565b604082019050919050565b600061292e601083612ce7565b915061293982613088565b602082019050919050565b6000612951600e83612ce7565b915061295c826130b1565b602082019050919050565b6000612974601d83612ce7565b915061297f826130da565b602082019050919050565b6000612997601783612ce7565b91506129a282613103565b602082019050919050565b60006129ba602083612ce7565b91506129c58261312c565b602082019050919050565b60006129dd600e83612ce7565b91506129e882613155565b602082019050919050565b6000612a00601783612ce7565b9150612a0b8261317e565b602082019050919050565b612a1f81612e51565b82525050565b6000612a31828461281d565b915081905092915050565b6000612a488285612887565b9150612a548284612887565b91508190509392505050565b6000602082019050612a7560008301846127c6565b92915050565b6000608082019050612a9060008301876127c6565b612a9d60208301866127c6565b612aaa6040830185612a16565b8181036060830152612abc81846127e4565b905095945050505050565b6000602082019050612adc60008301846127d5565b92915050565b60006020820190508181036000830152612afc818461284e565b905092915050565b60006020820190508181036000830152612b1d816128b8565b9050919050565b60006020820190508181036000830152612b3d816128db565b9050919050565b60006020820190508181036000830152612b5d816128fe565b9050919050565b60006020820190508181036000830152612b7d81612921565b9050919050565b60006020820190508181036000830152612b9d81612944565b9050919050565b60006020820190508181036000830152612bbd81612967565b9050919050565b60006020820190508181036000830152612bdd8161298a565b9050919050565b60006020820190508181036000830152612bfd816129ad565b9050919050565b60006020820190508181036000830152612c1d816129d0565b9050919050565b60006020820190508181036000830152612c3d816129f3565b9050919050565b6000602082019050612c596000830184612a16565b92915050565b6000612c69612c7a565b9050612c758282612ecf565b919050565b6000604051905090565b600067ffffffffffffffff821115612c9f57612c9e612fa7565b5b612ca882612fd6565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612d0e82612e51565b9150612d1983612e51565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d4e57612d4d612f49565b5b828201905092915050565b6000612d6482612e51565b9150612d6f83612e51565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612da857612da7612f49565b5b828202905092915050565b6000612dbe82612e51565b9150612dc983612e51565b925082821015612ddc57612ddb612f49565b5b828203905092915050565b6000612df282612e31565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612e88578082015181840152602081019050612e6d565b83811115612e97576000848401525b50505050565b60006002820490506001821680612eb557607f821691505b60208210811415612ec957612ec8612f78565b5b50919050565b612ed882612fd6565b810181811067ffffffffffffffff82111715612ef757612ef6612fa7565b5b80604052505050565b6000612f0b82612e51565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612f3e57612f3d612f49565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f6e6f742075736572210000000000000000000000000000000000000000000000600082015250565b7f6e6f742073616c652074696d6521000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f616c726561647920737461727465642100000000000000000000000000000000600082015250565b7f696e76616c69642076616c756521000000000000000000000000000000000000600082015250565b7f5472616e736665723a204554485f5452414e534645525f4641494c4544000000600082015250565b7f4578636565642073616c6573206d6178206c696d697421000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c696420707269636521000000000000000000000000000000000000600082015250565b7f4d6178696d756d20636f756e7420657863656564656421000000000000000000600082015250565b6131b081612de7565b81146131bb57600080fd5b50565b6131c781612df9565b81146131d257600080fd5b50565b6131de81612e05565b81146131e957600080fd5b50565b6131f581612e51565b811461320057600080fd5b5056fea264697066735822122075263797960ab45aea93533947f176bb935359c339cb4aa88e6643f19f68959e64736f6c63430008040033

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80636352211e1161010d578063a035b1fe116100a0578063c87b56dd1161006f578063c87b56dd146106ce578063e985e9c51461070b578063edac985b14610748578063f2fde38b14610771578063f7e78e9d1461079a576101f9565b8063a035b1fe14610642578063a0712d681461066d578063a22cb46514610689578063b88d4fde146106b2576101f9565b80638da5cb5b116100dc5780638da5cb5b1461059857806391b7f5ed146105c357806395d89b41146105ec5780639c36f2e614610617576101f9565b80636352211e146104dc57806370a0823114610519578063715018a61461055657806378e979251461056d576101f9565b806317d70f7c116101905780633197cbb61161015f5780633197cbb61461041857806332cb6b0c1461044357806342842e0e1461046e57806342966c681461048a57806355f804b3146104b3576101f9565b806317d70f7c1461036957806318160ddd146103945780631959a002146103bf57806323b872dd146103fc576101f9565b8063081812fc116101cc578063081812fc146102a8578063095ea7b3146102e557806309fd8212146103015780631596facb1461033e576101f9565b806301339c21146101fe57806301ffc9a71461021557806306661abd1461025257806306fdde031461027d575b600080fd5b34801561020a57600080fd5b506102136107d7565b005b34801561022157600080fd5b5061023c60048036038101906102379190612706565b610843565b6040516102499190612ac7565b60405180910390f35b34801561025e57600080fd5b506102676108d5565b6040516102749190612c44565b60405180910390f35b34801561028957600080fd5b506102926108db565b60405161029f9190612ae2565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca919061279d565b61096d565b6040516102dc9190612a60565b60405180910390f35b6102ff60048036038101906102fa9190612685565b6109ec565b005b34801561030d57600080fd5b506103286004803603810190610323919061251a565b610b30565b6040516103359190612ac7565b60405180910390f35b34801561034a57600080fd5b50610353610b7c565b6040516103609190612c44565b60405180910390f35b34801561037557600080fd5b5061037e610b82565b60405161038b9190612c44565b60405180910390f35b3480156103a057600080fd5b506103a9610b88565b6040516103b69190612c44565b60405180910390f35b3480156103cb57600080fd5b506103e660048036038101906103e1919061251a565b610b9f565b6040516103f39190612c44565b60405180910390f35b6104166004803603810190610411919061257f565b610bb7565b005b34801561042457600080fd5b5061042d610edc565b60405161043a9190612c44565b60405180910390f35b34801561044f57600080fd5b50610458610ee2565b6040516104659190612c44565b60405180910390f35b6104886004803603810190610483919061257f565b610ee8565b005b34801561049657600080fd5b506104b160048036038101906104ac919061279d565b610f08565b005b3480156104bf57600080fd5b506104da60048036038101906104d59190612758565b610f14565b005b3480156104e857600080fd5b5061050360048036038101906104fe919061279d565b610f32565b6040516105109190612a60565b60405180910390f35b34801561052557600080fd5b50610540600480360381019061053b919061251a565b610f44565b60405161054d9190612c44565b60405180910390f35b34801561056257600080fd5b5061056b610ffd565b005b34801561057957600080fd5b50610582611011565b60405161058f9190612c44565b60405180910390f35b3480156105a457600080fd5b506105ad611017565b6040516105ba9190612a60565b60405180910390f35b3480156105cf57600080fd5b506105ea60048036038101906105e5919061279d565b611041565b005b3480156105f857600080fd5b50610601611098565b60405161060e9190612ae2565b60405180910390f35b34801561062357600080fd5b5061062c61112a565b6040516106399190612c44565b60405180910390f35b34801561064e57600080fd5b50610657611130565b6040516106649190612c44565b60405180910390f35b6106876004803603810190610682919061279d565b611136565b005b34801561069557600080fd5b506106b060048036038101906106ab9190612649565b6113f9565b005b6106cc60048036038101906106c791906125ce565b611504565b005b3480156106da57600080fd5b506106f560048036038101906106f0919061279d565b611577565b6040516107029190612ae2565b60405180910390f35b34801561071757600080fd5b50610732600480360381019061072d9190612543565b611625565b60405161073f9190612ac7565b60405180910390f35b34801561075457600080fd5b5061076f600480360381019061076a91906126c1565b6116b9565b005b34801561077d57600080fd5b506107986004803603810190610793919061251a565b611779565b005b3480156107a657600080fd5b506107c160048036038101906107bc919061251a565b6117fd565b6040516107ce9190612c44565b60405180910390f35b6107df611815565b6000600d5414610824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081b90612b64565b60405180910390fd5b42600d81905550600f54600d5461083b9190612d03565b600e81905550565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ce5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600c5481565b6060600280546108ea90612e9d565b80601f016020809104026020016040519081016040528092919081815260200182805461091690612e9d565b80156109635780601f1061093857610100808354040283529160200191610963565b820191906000526020600020905b81548152906001019060200180831161094657829003601f168201915b5050505050905090565b600061097882611893565b6109ae576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109f782610f32565b90508073ffffffffffffffffffffffffffffffffffffffff16610a186118f2565b73ffffffffffffffffffffffffffffffffffffffff1614610a7b57610a4481610a3f6118f2565b611625565b610a7a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054149050919050565b600f5481565b60115481565b6000610b926118fa565b6001546000540303905090565b60126020528060005260406000206000915090505481565b6000610bc282611903565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c29576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c35846119d1565b91509150610c4b8187610c466118f2565b6119f8565b610c9757610c6086610c5b6118f2565b611625565b610c96576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610cfe576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d0b8686866001611a3c565b8015610d1657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610de485610dc0888887611a42565b7c020000000000000000000000000000000000000000000000000000000017611a6a565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e6c576000600185019050600060046000838152602001908152602001600020541415610e6a576000548114610e69578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ed48686866001611a95565b505050505050565b600e5481565b61024481565b610f0383838360405180602001604052806000815250611504565b505050565b610f1181611a9b565b50565b610f1c611815565b8181600a9190610f2d929190612312565b505050565b6000610f3d82611903565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fac576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611005611815565b61100f6000611aa9565b565b600d5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611049611815565b6000600b541161108e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108590612c04565b60405180910390fd5b80600b8190555050565b6060600380546110a790612e9d565b80601f01602080910402602001604051908101604052809291908181526020018280546110d390612e9d565b80156111205780601f106110f557610100808354040283529160200191611120565b820191906000526020600020905b81548152906001019060200180831161110357829003601f168201915b5050505050905090565b60105481565b600b5481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146111a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119b90612b04565b60405180910390fd5b600d5442101580156111b85750600e544211155b6111f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ee90612b24565b60405180910390fd5b600081118015611253575060105481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112509190612d03565b11155b611292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128990612bc4565b60405180910390fd5b610244600c54826112a39190612d03565b11156112e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112db90612c24565b60405180910390fd5b600081600b546112f49190612d59565b9050348114611338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132f90612b84565b60405180910390fd5b611349611343611017565b34611b6f565b81600c546113579190612d03565b600c8190555081601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113a89190612d03565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506113f53383611c95565b5050565b80600760006114066118f2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114b36118f2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114f89190612ac7565b60405180910390a35050565b61150f848484610bb7565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115715761153a84848484611e52565b611570576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061158282611893565b6115b8576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001826115c59190612db3565b915060006115d1611fb2565b90506000815114156115f2576040518060200160405280600081525061161d565b806115fc84612044565b60405160200161160d929190612a3c565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116c1611815565b60005b828290508110156117745760016009600085858581811061170e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611723919061251a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061176c90612f00565b9150506116c4565b505050565b611781611815565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e890612b44565b60405180910390fd5b6117fa81611aa9565b50565b60096020528060005260406000206000915090505481565b61181d61209d565b73ffffffffffffffffffffffffffffffffffffffff1661183b611017565b73ffffffffffffffffffffffffffffffffffffffff1614611891576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188890612be4565b60405180910390fd5b565b60008161189e6118fa565b111580156118ad575060005482105b80156118eb575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806119126118fa565b1161199a576000548110156119995760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611997575b600081141561198d576004600083600190039350838152602001908152602001600020549050611962565b80925050506119cc565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611a598686846120a5565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611aa68160006120ae565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff1682600067ffffffffffffffff811115611bca577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611bfc5781602001600182028036833780820191505090505b50604051611c0a9190612a25565b60006040518083038185875af1925050503d8060008114611c47576040519150601f19603f3d011682016040523d82523d6000602084013e611c4c565b606091505b5050905080611c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8790612ba4565b60405180910390fd5b505050565b6000805490506000821415611cd6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ce36000848385611a3c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611d5a83611d4b6000866000611a42565b611d5485612302565b17611a6a565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611dfb57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611dc0565b506000821415611e37576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611e4d6000848385611a95565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e786118f2565b8786866040518563ffffffff1660e01b8152600401611e9a9493929190612a7b565b602060405180830381600087803b158015611eb457600080fd5b505af1925050508015611ee557506040513d601f19601f82011682018060405250810190611ee2919061272f565b60015b611f5f573d8060008114611f15576040519150601f19603f3d011682016040523d82523d6000602084013e611f1a565b606091505b50600081511415611f57576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611fc190612e9d565b80601f0160208091040260200160405190810160405280929190818152602001828054611fed90612e9d565b801561203a5780601f1061200f5761010080835404028352916020019161203a565b820191906000526020600020905b81548152906001019060200180831161201d57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561208857600184039350600a81066030018453600a810490508061208357612088565b61205d565b50828103602084039350808452505050919050565b600033905090565b60009392505050565b60006120b983611903565b905060008190506000806120cc866119d1565b915091508415612135576120e881846120e36118f2565b6119f8565b612134576120fd836120f86118f2565b611625565b612133576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b612143836000886001611a3c565b801561214e57600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506121f6836121b385600088611a42565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717611a6a565b600460008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516141561227e57600060018701905060006004600083815260200190815260200160002054141561227c57600054811461227b578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122e8836000886001611a95565b600160008154809291906001019190505550505050505050565b60006001821460e11b9050919050565b82805461231e90612e9d565b90600052602060002090601f0160209004810192826123405760008555612387565b82601f1061235957803560ff1916838001178555612387565b82800160010185558215612387579182015b8281111561238657823582559160200191906001019061236b565b5b5090506123949190612398565b5090565b5b808211156123b1576000816000905550600101612399565b5090565b60006123c86123c384612c84565b612c5f565b9050828152602081018484840111156123e057600080fd5b6123eb848285612e5b565b509392505050565b600081359050612402816131a7565b92915050565b60008083601f84011261241a57600080fd5b8235905067ffffffffffffffff81111561243357600080fd5b60208301915083602082028301111561244b57600080fd5b9250929050565b600081359050612461816131be565b92915050565b600081359050612476816131d5565b92915050565b60008151905061248b816131d5565b92915050565b600082601f8301126124a257600080fd5b81356124b28482602086016123b5565b91505092915050565b60008083601f8401126124cd57600080fd5b8235905067ffffffffffffffff8111156124e657600080fd5b6020830191508360018202830111156124fe57600080fd5b9250929050565b600081359050612514816131ec565b92915050565b60006020828403121561252c57600080fd5b600061253a848285016123f3565b91505092915050565b6000806040838503121561255657600080fd5b6000612564858286016123f3565b9250506020612575858286016123f3565b9150509250929050565b60008060006060848603121561259457600080fd5b60006125a2868287016123f3565b93505060206125b3868287016123f3565b92505060406125c486828701612505565b9150509250925092565b600080600080608085870312156125e457600080fd5b60006125f2878288016123f3565b9450506020612603878288016123f3565b935050604061261487828801612505565b925050606085013567ffffffffffffffff81111561263157600080fd5b61263d87828801612491565b91505092959194509250565b6000806040838503121561265c57600080fd5b600061266a858286016123f3565b925050602061267b85828601612452565b9150509250929050565b6000806040838503121561269857600080fd5b60006126a6858286016123f3565b92505060206126b785828601612505565b9150509250929050565b600080602083850312156126d457600080fd5b600083013567ffffffffffffffff8111156126ee57600080fd5b6126fa85828601612408565b92509250509250929050565b60006020828403121561271857600080fd5b600061272684828501612467565b91505092915050565b60006020828403121561274157600080fd5b600061274f8482850161247c565b91505092915050565b6000806020838503121561276b57600080fd5b600083013567ffffffffffffffff81111561278557600080fd5b612791858286016124bb565b92509250509250929050565b6000602082840312156127af57600080fd5b60006127bd84828501612505565b91505092915050565b6127cf81612de7565b82525050565b6127de81612df9565b82525050565b60006127ef82612cb5565b6127f98185612ccb565b9350612809818560208601612e6a565b61281281612fd6565b840191505092915050565b600061282882612cb5565b6128328185612cdc565b9350612842818560208601612e6a565b80840191505092915050565b600061285982612cc0565b6128638185612ce7565b9350612873818560208601612e6a565b61287c81612fd6565b840191505092915050565b600061289282612cc0565b61289c8185612cf8565b93506128ac818560208601612e6a565b80840191505092915050565b60006128c5600983612ce7565b91506128d082612fe7565b602082019050919050565b60006128e8600e83612ce7565b91506128f382613010565b602082019050919050565b600061290b602683612ce7565b915061291682613039565b604082019050919050565b600061292e601083612ce7565b915061293982613088565b602082019050919050565b6000612951600e83612ce7565b915061295c826130b1565b602082019050919050565b6000612974601d83612ce7565b915061297f826130da565b602082019050919050565b6000612997601783612ce7565b91506129a282613103565b602082019050919050565b60006129ba602083612ce7565b91506129c58261312c565b602082019050919050565b60006129dd600e83612ce7565b91506129e882613155565b602082019050919050565b6000612a00601783612ce7565b9150612a0b8261317e565b602082019050919050565b612a1f81612e51565b82525050565b6000612a31828461281d565b915081905092915050565b6000612a488285612887565b9150612a548284612887565b91508190509392505050565b6000602082019050612a7560008301846127c6565b92915050565b6000608082019050612a9060008301876127c6565b612a9d60208301866127c6565b612aaa6040830185612a16565b8181036060830152612abc81846127e4565b905095945050505050565b6000602082019050612adc60008301846127d5565b92915050565b60006020820190508181036000830152612afc818461284e565b905092915050565b60006020820190508181036000830152612b1d816128b8565b9050919050565b60006020820190508181036000830152612b3d816128db565b9050919050565b60006020820190508181036000830152612b5d816128fe565b9050919050565b60006020820190508181036000830152612b7d81612921565b9050919050565b60006020820190508181036000830152612b9d81612944565b9050919050565b60006020820190508181036000830152612bbd81612967565b9050919050565b60006020820190508181036000830152612bdd8161298a565b9050919050565b60006020820190508181036000830152612bfd816129ad565b9050919050565b60006020820190508181036000830152612c1d816129d0565b9050919050565b60006020820190508181036000830152612c3d816129f3565b9050919050565b6000602082019050612c596000830184612a16565b92915050565b6000612c69612c7a565b9050612c758282612ecf565b919050565b6000604051905090565b600067ffffffffffffffff821115612c9f57612c9e612fa7565b5b612ca882612fd6565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612d0e82612e51565b9150612d1983612e51565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d4e57612d4d612f49565b5b828201905092915050565b6000612d6482612e51565b9150612d6f83612e51565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612da857612da7612f49565b5b828202905092915050565b6000612dbe82612e51565b9150612dc983612e51565b925082821015612ddc57612ddb612f49565b5b828203905092915050565b6000612df282612e31565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612e88578082015181840152602081019050612e6d565b83811115612e97576000848401525b50505050565b60006002820490506001821680612eb557607f821691505b60208210811415612ec957612ec8612f78565b5b50919050565b612ed882612fd6565b810181811067ffffffffffffffff82111715612ef757612ef6612fa7565b5b80604052505050565b6000612f0b82612e51565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612f3e57612f3d612f49565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f6e6f742075736572210000000000000000000000000000000000000000000000600082015250565b7f6e6f742073616c652074696d6521000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f616c726561647920737461727465642100000000000000000000000000000000600082015250565b7f696e76616c69642076616c756521000000000000000000000000000000000000600082015250565b7f5472616e736665723a204554485f5452414e534645525f4641494c4544000000600082015250565b7f4578636565642073616c6573206d6178206c696d697421000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c696420707269636521000000000000000000000000000000000000600082015250565b7f4d6178696d756d20636f756e7420657863656564656421000000000000000000600082015250565b6131b081612de7565b81146131bb57600080fd5b50565b6131c781612df9565b81146131d257600080fd5b50565b6131de81612e05565b81146131e957600080fd5b50565b6131f581612e51565b811461320057600080fd5b5056fea264697066735822122075263797960ab45aea93533947f176bb935359c339cb4aa88e6643f19f68959e64736f6c63430008040033

Deployed Bytecode Sourcemap

65373:2393:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65912:177;;;;;;;;;;;;;:::i;:::-;;18208:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65593:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19110:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25631:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25064:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65247:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65680:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65763:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14861:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65792:39;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29270:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65651:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65462:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32191:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66863:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67275:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20533:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16045:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63983:103;;;;;;;;;;;;;:::i;:::-;;65620:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63335:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67138:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19286:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65721:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65554:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66106:749;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26189:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32982:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19496:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26580:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65009:197;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64241:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64913:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65912:177;63221:13;:11;:13::i;:::-;65980:1:::1;65967:9;;:14;65959:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;66025:15;66013:9;:27;;;;66073:8;;66061:9;;:20;;;;:::i;:::-;66051:7;:30;;;;65912:177::o:0;18208:639::-;18293:4;18632:10;18617:25;;:11;:25;;;;:102;;;;18709:10;18694:25;;:11;:25;;;;18617:102;:179;;;;18786:10;18771:25;;:11;:25;;;;18617:179;18597:199;;18208:639;;;:::o;65593:20::-;;;;:::o;19110:100::-;19164:13;19197:5;19190:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19110:100;:::o;25631:218::-;25707:7;25732:16;25740:7;25732;:16::i;:::-;25727:64;;25757:34;;;;;;;;;;;;;;25727:64;25811:15;:24;25827:7;25811:24;;;;;;;;;;;:30;;;;;;;;;;;;25804:37;;25631:218;;;:::o;25064:408::-;25153:13;25169:16;25177:7;25169;:16::i;:::-;25153:32;;25225:5;25202:28;;:19;:17;:19::i;:::-;:28;;;25198:175;;25250:44;25267:5;25274:19;:17;:19::i;:::-;25250:16;:44::i;:::-;25245:128;;25322:35;;;;;;;;;;;;;;25245:128;25198:175;25418:2;25385:15;:24;25401:7;25385:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25456:7;25452:2;25436:28;;25445:5;25436:28;;;;;;;;;;;;25064:408;;;:::o;65247:119::-;65306:4;65357:1;65329:16;:24;65346:6;65329:24;;;;;;;;;;;;;;;;:29;65322:36;;65247:119;;;:::o;65680:34::-;;;;:::o;65763:22::-;;;;:::o;14861:323::-;14922:7;15150:15;:13;:15::i;:::-;15135:12;;15119:13;;:28;:46;15112:53;;14861:323;:::o;65792:39::-;;;;;;;;;;;;;;;;;:::o;29270:2825::-;29412:27;29442;29461:7;29442:18;:27::i;:::-;29412:57;;29527:4;29486:45;;29502:19;29486:45;;;29482:86;;29540:28;;;;;;;;;;;;;;29482:86;29582:27;29611:23;29638:35;29665:7;29638:26;:35::i;:::-;29581:92;;;;29773:68;29798:15;29815:4;29821:19;:17;:19::i;:::-;29773:24;:68::i;:::-;29768:180;;29861:43;29878:4;29884:19;:17;:19::i;:::-;29861:16;:43::i;:::-;29856:92;;29913:35;;;;;;;;;;;;;;29856:92;29768:180;29979:1;29965:16;;:2;:16;;;29961:52;;;29990:23;;;;;;;;;;;;;;29961:52;30026:43;30048:4;30054:2;30058:7;30067:1;30026:21;:43::i;:::-;30162:15;30159:2;;;30302:1;30281:19;30274:30;30159:2;30699:18;:24;30718:4;30699:24;;;;;;;;;;;;;;;;30697:26;;;;;;;;;;;;30768:18;:22;30787:2;30768:22;;;;;;;;;;;;;;;;30766:24;;;;;;;;;;;31090:146;31127:2;31176:45;31191:4;31197:2;31201:19;31176:14;:45::i;:::-;11260:8;31148:73;31090:18;:146::i;:::-;31061:17;:26;31079:7;31061:26;;;;;;;;;;;:175;;;;31407:1;11260:8;31356:19;:47;:52;31352:627;;;31429:19;31461:1;31451:7;:11;31429:33;;31618:1;31584:17;:30;31602:11;31584:30;;;;;;;;;;;;:35;31580:384;;;31722:13;;31707:11;:28;31703:242;;31902:19;31869:17;:30;31887:11;31869:30;;;;;;;;;;;:52;;;;31703:242;31580:384;31352:627;;32026:7;32022:2;32007:27;;32016:4;32007:27;;;;;;;;;;;;32045:42;32066:4;32072:2;32076:7;32085:1;32045:20;:42::i;:::-;29270:2825;;;;;;:::o;65651:22::-;;;;:::o;65462:40::-;65499:3;65462:40;:::o;32191:193::-;32337:39;32354:4;32360:2;32364:7;32337:39;;;;;;;;;;;;:16;:39::i;:::-;32191:193;;;:::o;66863:73::-;66913:15;66919:8;66913:5;:15::i;:::-;66863:73;:::o;67275:98::-;63221:13;:11;:13::i;:::-;67362:3:::1;;67346:13;:19;;;;;;;:::i;:::-;;67275:98:::0;;:::o;20533:152::-;20605:7;20648:27;20667:7;20648:18;:27::i;:::-;20625:52;;20533:152;;;:::o;16045:233::-;16117:7;16158:1;16141:19;;:5;:19;;;16137:60;;;16169:28;;;;;;;;;;;;;;16137:60;10204:13;16215:18;:25;16234:5;16215:25;;;;;;;;;;;;;;;;:55;16208:62;;16045:233;;;:::o;63983:103::-;63221:13;:11;:13::i;:::-;64048:30:::1;64075:1;64048:18;:30::i;:::-;63983:103::o:0;65620:24::-;;;;:::o;63335:87::-;63381:7;63408:6;;;;;;;;;;;63401:13;;63335:87;:::o;67138:129::-;63221:13;:11;:13::i;:::-;67215:1:::1;67207:5;;:9;67199:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;67253:6;67245:5;:14;;;;67138:129:::0;:::o;19286:104::-;19342:13;19375:7;19368:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19286:104;:::o;65721:27::-;;;;:::o;65554:32::-;;;;:::o;66106:749::-;67719:10;67706:23;;:9;:23;;;67698:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;66233:9:::1;;66216:15;:26;;:54;;;;;66263:7;;66246:15;:24;;66216:54;66208:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;66319:1;66309:7;:11;:58;;;;;66359:8;;66347:7;66324:8;:20;66333:10;66324:20;;;;;;;;;;;;;;;;:30;;;;:::i;:::-;:43;;66309:58;66301:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;65499:3;66421:5;;66413:7;:13;;;;:::i;:::-;:27;;66405:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;66550:12;66573:7;66565:5;;:15;;;;:::i;:::-;66550:30;;66607:9;66599:4;:17;66591:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;66645:31;66658:7;:5;:7::i;:::-;66666:9;66645:12;:31::i;:::-;66703:7;66695:5;;:15;;;;:::i;:::-;66687:5;:23;;;;66767:7;66744:8;:20;66753:10;66744:20;;;;;;;;;;;;;;;;:30;;;;:::i;:::-;66721:8;:20;66730:10;66721:20;;;;;;;;;;;;;;;:53;;;;66821:26;66827:10;66839:7;66821:5;:26::i;:::-;67754:1;66106:749:::0;:::o;26189:234::-;26336:8;26284:18;:39;26303:19;:17;:19::i;:::-;26284:39;;;;;;;;;;;;;;;:49;26324:8;26284:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26396:8;26360:55;;26375:19;:17;:19::i;:::-;26360:55;;;26406:8;26360:55;;;;;;:::i;:::-;;;;;;;;26189:234;;:::o;32982:407::-;33157:31;33170:4;33176:2;33180:7;33157:12;:31::i;:::-;33221:1;33203:2;:14;;;:19;33199:183;;33242:56;33273:4;33279:2;33283:7;33292:5;33242:30;:56::i;:::-;33237:145;;33326:40;;;;;;;;;;;;;;33237:145;33199:183;32982:407;;;;:::o;19496:348::-;19569:13;19600:16;19608:7;19600;:16::i;:::-;19595:59;;19625:29;;;;;;;;;;;;;;19595:59;19685:1;19675:7;:11;;;;:::i;:::-;19665:21;;19697;19721:10;:8;:10::i;:::-;19697:34;;19774:1;19755:7;19749:21;:26;;:87;;;;;;;;;;;;;;;;;19802:7;19811:18;19821:7;19811:9;:18::i;:::-;19785:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;19749:87;19742:94;;;19496:348;;;:::o;26580:164::-;26677:4;26701:18;:25;26720:5;26701:25;;;;;;;;;;;;;;;:35;26727:8;26701:35;;;;;;;;;;;;;;;;;;;;;;;;;26694:42;;26580:164;;;;:::o;65009:197::-;63221:13;:11;:13::i;:::-;65096:9:::1;65091:108;65115:9;;:16;;65111:1;:20;65091:108;;;65186:1;65153:16;:30;65170:9;;65180:1;65170:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;65153:30;;;;;;;;;;;;;;;:34;;;;65133:3;;;;;:::i;:::-;;;;65091:108;;;;65009:197:::0;;:::o;64241:201::-;63221:13;:11;:13::i;:::-;64350:1:::1;64330:22;;:8;:22;;;;64322:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;64406:28;64425:8;64406:18;:28::i;:::-;64241:201:::0;:::o;64913:51::-;;;;;;;;;;;;;;;;;:::o;63500:132::-;63575:12;:10;:12::i;:::-;63564:23;;:7;:5;:7::i;:::-;:23;;;63556:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63500:132::o;27002:282::-;27067:4;27123:7;27104:15;:13;:15::i;:::-;:26;;:66;;;;;27157:13;;27147:7;:23;27104:66;:153;;;;;27256:1;10980:8;27208:17;:26;27226:7;27208:26;;;;;;;;;;;;:44;:49;27104:153;27084:173;;27002:282;;;:::o;49310:105::-;49370:7;49397:10;49390:17;;49310:105;:::o;67545:101::-;67610:7;67637:1;67630:8;;67545:101;:::o;21688:1275::-;21755:7;21775:12;21790:7;21775:22;;21858:4;21839:15;:13;:15::i;:::-;:23;21835:1061;;21892:13;;21885:4;:20;21881:1015;;;21930:14;21947:17;:23;21965:4;21947:23;;;;;;;;;;;;21930:40;;22064:1;10980:8;22036:6;:24;:29;22032:845;;;22701:113;22718:1;22708:6;:11;22701:113;;;22761:17;:25;22779:6;;;;;;;22761:25;;;;;;;;;;;;22752:34;;22701:113;;;22847:6;22840:13;;;;;;22032:845;21881:1015;;21835:1061;22924:31;;;;;;;;;;;;;;21688:1275;;;;:::o;28165:485::-;28267:27;28296:23;28337:38;28378:15;:24;28394:7;28378:24;;;;;;;;;;;28337:65;;28555:18;28532:41;;28612:19;28606:26;28587:45;;28517:126;;;;:::o;27393:659::-;27542:11;27707:16;27700:5;27696:28;27687:37;;27867:16;27856:9;27852:32;27839:45;;28017:15;28006:9;28003:30;27995:5;27984:9;27981:20;27978:56;27968:66;;27575:470;;;;;:::o;34051:159::-;;;;;:::o;48619:311::-;48754:7;48774:16;11384:3;48800:19;:41;;48774:68;;11384:3;48868:31;48879:4;48885:2;48889:9;48868:10;:31::i;:::-;48860:40;;:62;;48853:69;;;48619:311;;;;;:::o;23511:450::-;23591:14;23759:16;23752:5;23748:28;23739:37;;23936:5;23922:11;23897:23;23893:41;23890:52;23883:5;23880:63;23870:73;;23627:327;;;;:::o;34875:158::-;;;;;:::o;43521:89::-;43581:21;43587:7;43596:5;43581;:21::i;:::-;43521:89;:::o;64602:191::-;64676:16;64695:6;;;;;;;;;;;64676:25;;64721:8;64712:6;;:17;;;;;;;;;;;;;;;;;;64776:8;64745:40;;64766:8;64745:40;;;;;;;;;;;;64602:191;;:::o;66944:186::-;67011:12;67028:2;:7;;67042:5;67059:1;67049:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67028:34;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67010:52;;;67081:7;67073:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;66944:186;;;:::o;36651:2966::-;36724:20;36747:13;;36724:36;;36787:1;36775:8;:13;36771:44;;;36797:18;;;;;;;;;;;;;;36771:44;36828:61;36858:1;36862:2;36866:12;36880:8;36828:21;:61::i;:::-;37372:1;10342:2;37342:1;:26;;37341:32;37329:8;:45;37303:18;:22;37322:2;37303:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;37651:139;37688:2;37742:33;37765:1;37769:2;37773:1;37742:14;:33::i;:::-;37709:30;37730:8;37709:20;:30::i;:::-;:66;37651:18;:139::i;:::-;37617:17;:31;37635:12;37617:31;;;;;;;;;;;:173;;;;37807:16;37838:11;37867:8;37852:12;:23;37838:37;;38388:16;38384:2;38380:25;38368:37;;38760:12;38720:8;38679:1;38617:25;38558:1;38497;38470:335;39131:1;39117:12;39113:20;39071:346;39172:3;39163:7;39160:16;39071:346;;39390:7;39380:8;39377:1;39350:25;39347:1;39344;39339:59;39225:1;39216:7;39212:15;39201:26;;39071:346;;;39075:77;39462:1;39450:8;:13;39446:45;;;39472:19;;;;;;;;;;;;;;39446:45;39524:3;39508:13;:19;;;;36651:2966;;39549:60;39578:1;39582:2;39586:12;39600:8;39549:20;:60::i;:::-;36651:2966;;;:::o;35473:716::-;35636:4;35682:2;35657:45;;;35703:19;:17;:19::i;:::-;35724:4;35730:7;35739:5;35657:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35653:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35957:1;35940:6;:13;:18;35936:235;;;35986:40;;;;;;;;;;;;;;35936:235;36129:6;36123:13;36114:6;36110:2;36106:15;36099:38;35653:529;35826:54;;;35816:64;;;:6;:64;;;;35809:71;;;35473:716;;;;;;:::o;67381:156::-;67478:13;67516;67509:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67381:156;:::o;49517:1745::-;49582:17;50016:4;50009;50003:11;49999:22;50108:1;50102:4;50095:15;50183:4;50180:1;50176:12;50169:19;;50265:1;50260:3;50253:14;50369:3;50608:5;50590:428;50616:1;50590:428;;;50656:1;50651:3;50647:11;50640:18;;50827:2;50821:4;50817:13;50813:2;50809:22;50804:3;50796:36;50921:2;50915:4;50911:13;50903:21;;50988:4;50978:2;;50996:5;;50978:2;50590:428;;;50594:21;51057:3;51052;51048:13;51172:4;51167:3;51163:14;51156:21;;51237:6;51232:3;51225:19;49621:1634;;;;;;:::o;60208:98::-;60261:7;60288:10;60281:17;;60208:98;:::o;48320:147::-;48457:6;48320:147;;;;;:::o;43839:3081::-;43919:27;43949;43968:7;43949:18;:27::i;:::-;43919:57;;43989:12;44020:19;43989:52;;44055:27;44084:23;44111:35;44138:7;44111:26;:35::i;:::-;44054:92;;;;44163:13;44159:316;;;44284:68;44309:15;44326:4;44332:19;:17;:19::i;:::-;44284:24;:68::i;:::-;44279:184;;44376:43;44393:4;44399:19;:17;:19::i;:::-;44376:16;:43::i;:::-;44371:92;;44428:35;;;;;;;;;;;;;;44371:92;44279:184;44159:316;44487:51;44509:4;44523:1;44527:7;44536:1;44487:21;:51::i;:::-;44631:15;44628:2;;;44771:1;44750:19;44743:30;44628:2;45449:1;10469:3;45419:1;:26;;45418:32;45390:18;:24;45409:4;45390:24;;;;;;;;;;;;;;;;:60;;;;;;;;;;;45717:176;45754:4;45825:53;45840:4;45854:1;45858:19;45825:14;:53::i;:::-;11260:8;10980;45778:43;45777:101;45717:18;:176::i;:::-;45688:17;:26;45706:7;45688:26;;;;;;;;;;;:205;;;;46064:1;11260:8;46013:19;:47;:52;46009:627;;;46086:19;46118:1;46108:7;:11;46086:33;;46275:1;46241:17;:30;46259:11;46241:30;;;;;;;;;;;;:35;46237:384;;;46379:13;;46364:11;:28;46360:242;;46559:19;46526:17;:30;46544:11;46526:30;;;;;;;;;;;:52;;;;46360:242;46237:384;46009:627;;46691:7;46687:1;46664:35;;46673:4;46664:35;;;;;;;;;;;;46710:50;46731:4;46745:1;46749:7;46758:1;46710:20;:50::i;:::-;46887:12;;:14;;;;;;;;;;;;;43839:3081;;;;;;:::o;24063:324::-;24133:14;24366:1;24356:8;24353:15;24327:24;24323:46;24313:56;;24235:145;;;:::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:139::-;402:5;440:6;427:20;418:29;;456:33;483:5;456:33;:::i;:::-;408:87;;;;:::o;518:367::-;591:8;601:6;651:3;644:4;636:6;632:17;628:27;618:2;;669:1;666;659:12;618:2;705:6;692:20;682:30;;735:18;727:6;724:30;721:2;;;767:1;764;757:12;721:2;804:4;796:6;792:17;780:29;;858:3;850:4;842:6;838:17;828:8;824:32;821:41;818:2;;;875:1;872;865:12;818:2;608:277;;;;;:::o;891:133::-;934:5;972:6;959:20;950:29;;988:30;1012:5;988:30;:::i;:::-;940:84;;;;:::o;1030:137::-;1075:5;1113:6;1100:20;1091:29;;1129:32;1155:5;1129:32;:::i;:::-;1081:86;;;;:::o;1173:141::-;1229:5;1260:6;1254:13;1245:22;;1276:32;1302:5;1276:32;:::i;:::-;1235:79;;;;:::o;1333:271::-;1388:5;1437:3;1430:4;1422:6;1418:17;1414:27;1404:2;;1455:1;1452;1445:12;1404:2;1495:6;1482:20;1520:78;1594:3;1586:6;1579:4;1571:6;1567:17;1520:78;:::i;:::-;1511:87;;1394:210;;;;;:::o;1624:352::-;1682:8;1692:6;1742:3;1735:4;1727:6;1723:17;1719:27;1709:2;;1760:1;1757;1750:12;1709:2;1796:6;1783:20;1773:30;;1826:18;1818:6;1815:30;1812:2;;;1858:1;1855;1848:12;1812:2;1895:4;1887:6;1883:17;1871:29;;1949:3;1941:4;1933:6;1929:17;1919:8;1915:32;1912:41;1909:2;;;1966:1;1963;1956:12;1909:2;1699:277;;;;;:::o;1982:139::-;2028:5;2066:6;2053:20;2044:29;;2082:33;2109:5;2082:33;:::i;:::-;2034:87;;;;:::o;2127:262::-;2186:6;2235:2;2223:9;2214:7;2210:23;2206:32;2203:2;;;2251:1;2248;2241:12;2203:2;2294:1;2319:53;2364:7;2355:6;2344:9;2340:22;2319:53;:::i;:::-;2309:63;;2265:117;2193:196;;;;:::o;2395:407::-;2463:6;2471;2520:2;2508:9;2499:7;2495:23;2491:32;2488:2;;;2536:1;2533;2526:12;2488:2;2579:1;2604:53;2649:7;2640:6;2629:9;2625:22;2604:53;:::i;:::-;2594:63;;2550:117;2706:2;2732:53;2777:7;2768:6;2757:9;2753:22;2732:53;:::i;:::-;2722:63;;2677:118;2478:324;;;;;:::o;2808:552::-;2885:6;2893;2901;2950:2;2938:9;2929:7;2925:23;2921:32;2918:2;;;2966:1;2963;2956:12;2918:2;3009:1;3034:53;3079:7;3070:6;3059:9;3055:22;3034:53;:::i;:::-;3024:63;;2980:117;3136:2;3162:53;3207:7;3198:6;3187:9;3183:22;3162:53;:::i;:::-;3152:63;;3107:118;3264:2;3290:53;3335:7;3326:6;3315:9;3311:22;3290:53;:::i;:::-;3280:63;;3235:118;2908:452;;;;;:::o;3366:809::-;3461:6;3469;3477;3485;3534:3;3522:9;3513:7;3509:23;3505:33;3502:2;;;3551:1;3548;3541:12;3502:2;3594:1;3619:53;3664:7;3655:6;3644:9;3640:22;3619:53;:::i;:::-;3609:63;;3565:117;3721:2;3747:53;3792:7;3783:6;3772:9;3768:22;3747:53;:::i;:::-;3737:63;;3692:118;3849:2;3875:53;3920:7;3911:6;3900:9;3896:22;3875:53;:::i;:::-;3865:63;;3820:118;4005:2;3994:9;3990:18;3977:32;4036:18;4028:6;4025:30;4022:2;;;4068:1;4065;4058:12;4022:2;4096:62;4150:7;4141:6;4130:9;4126:22;4096:62;:::i;:::-;4086:72;;3948:220;3492:683;;;;;;;:::o;4181:401::-;4246:6;4254;4303:2;4291:9;4282:7;4278:23;4274:32;4271:2;;;4319:1;4316;4309:12;4271:2;4362:1;4387:53;4432:7;4423:6;4412:9;4408:22;4387:53;:::i;:::-;4377:63;;4333:117;4489:2;4515:50;4557:7;4548:6;4537:9;4533:22;4515:50;:::i;:::-;4505:60;;4460:115;4261:321;;;;;:::o;4588:407::-;4656:6;4664;4713:2;4701:9;4692:7;4688:23;4684:32;4681:2;;;4729:1;4726;4719:12;4681:2;4772:1;4797:53;4842:7;4833:6;4822:9;4818:22;4797:53;:::i;:::-;4787:63;;4743:117;4899:2;4925:53;4970:7;4961:6;4950:9;4946:22;4925:53;:::i;:::-;4915:63;;4870:118;4671:324;;;;;:::o;5001:425::-;5087:6;5095;5144:2;5132:9;5123:7;5119:23;5115:32;5112:2;;;5160:1;5157;5150:12;5112:2;5231:1;5220:9;5216:17;5203:31;5261:18;5253:6;5250:30;5247:2;;;5293:1;5290;5283:12;5247:2;5329:80;5401:7;5392:6;5381:9;5377:22;5329:80;:::i;:::-;5311:98;;;;5174:245;5102:324;;;;;:::o;5432:260::-;5490:6;5539:2;5527:9;5518:7;5514:23;5510:32;5507:2;;;5555:1;5552;5545:12;5507:2;5598:1;5623:52;5667:7;5658:6;5647:9;5643:22;5623:52;:::i;:::-;5613:62;;5569:116;5497:195;;;;:::o;5698:282::-;5767:6;5816:2;5804:9;5795:7;5791:23;5787:32;5784:2;;;5832:1;5829;5822:12;5784:2;5875:1;5900:63;5955:7;5946:6;5935:9;5931:22;5900:63;:::i;:::-;5890:73;;5846:127;5774:206;;;;:::o;5986:395::-;6057:6;6065;6114:2;6102:9;6093:7;6089:23;6085:32;6082:2;;;6130:1;6127;6120:12;6082:2;6201:1;6190:9;6186:17;6173:31;6231:18;6223:6;6220:30;6217:2;;;6263:1;6260;6253:12;6217:2;6299:65;6356:7;6347:6;6336:9;6332:22;6299:65;:::i;:::-;6281:83;;;;6144:230;6072:309;;;;;:::o;6387:262::-;6446:6;6495:2;6483:9;6474:7;6470:23;6466:32;6463:2;;;6511:1;6508;6501:12;6463:2;6554:1;6579:53;6624:7;6615:6;6604:9;6600:22;6579:53;:::i;:::-;6569:63;;6525:117;6453:196;;;;:::o;6655:118::-;6742:24;6760:5;6742:24;:::i;:::-;6737:3;6730:37;6720:53;;:::o;6779:109::-;6860:21;6875:5;6860:21;:::i;:::-;6855:3;6848:34;6838:50;;:::o;6894:360::-;6980:3;7008:38;7040:5;7008:38;:::i;:::-;7062:70;7125:6;7120:3;7062:70;:::i;:::-;7055:77;;7141:52;7186:6;7181:3;7174:4;7167:5;7163:16;7141:52;:::i;:::-;7218:29;7240:6;7218:29;:::i;:::-;7213:3;7209:39;7202:46;;6984:270;;;;;:::o;7260:373::-;7364:3;7392:38;7424:5;7392:38;:::i;:::-;7446:88;7527:6;7522:3;7446:88;:::i;:::-;7439:95;;7543:52;7588:6;7583:3;7576:4;7569:5;7565:16;7543:52;:::i;:::-;7620:6;7615:3;7611:16;7604:23;;7368:265;;;;;:::o;7639:364::-;7727:3;7755:39;7788:5;7755:39;:::i;:::-;7810:71;7874:6;7869:3;7810:71;:::i;:::-;7803:78;;7890:52;7935:6;7930:3;7923:4;7916:5;7912:16;7890:52;:::i;:::-;7967:29;7989:6;7967:29;:::i;:::-;7962:3;7958:39;7951:46;;7731:272;;;;;:::o;8009:377::-;8115:3;8143:39;8176:5;8143:39;:::i;:::-;8198:89;8280:6;8275:3;8198:89;:::i;:::-;8191:96;;8296:52;8341:6;8336:3;8329:4;8322:5;8318:16;8296:52;:::i;:::-;8373:6;8368:3;8364:16;8357:23;;8119:267;;;;;:::o;8392:365::-;8534:3;8555:66;8619:1;8614:3;8555:66;:::i;:::-;8548:73;;8630:93;8719:3;8630:93;:::i;:::-;8748:2;8743:3;8739:12;8732:19;;8538:219;;;:::o;8763:366::-;8905:3;8926:67;8990:2;8985:3;8926:67;:::i;:::-;8919:74;;9002:93;9091:3;9002:93;:::i;:::-;9120:2;9115:3;9111:12;9104:19;;8909:220;;;:::o;9135:366::-;9277:3;9298:67;9362:2;9357:3;9298:67;:::i;:::-;9291:74;;9374:93;9463:3;9374:93;:::i;:::-;9492:2;9487:3;9483:12;9476:19;;9281:220;;;:::o;9507:366::-;9649:3;9670:67;9734:2;9729:3;9670:67;:::i;:::-;9663:74;;9746:93;9835:3;9746:93;:::i;:::-;9864:2;9859:3;9855:12;9848:19;;9653:220;;;:::o;9879:366::-;10021:3;10042:67;10106:2;10101:3;10042:67;:::i;:::-;10035:74;;10118:93;10207:3;10118:93;:::i;:::-;10236:2;10231:3;10227:12;10220:19;;10025:220;;;:::o;10251:366::-;10393:3;10414:67;10478:2;10473:3;10414:67;:::i;:::-;10407:74;;10490:93;10579:3;10490:93;:::i;:::-;10608:2;10603:3;10599:12;10592:19;;10397:220;;;:::o;10623:366::-;10765:3;10786:67;10850:2;10845:3;10786:67;:::i;:::-;10779:74;;10862:93;10951:3;10862:93;:::i;:::-;10980:2;10975:3;10971:12;10964:19;;10769:220;;;:::o;10995:366::-;11137:3;11158:67;11222:2;11217:3;11158:67;:::i;:::-;11151:74;;11234:93;11323:3;11234:93;:::i;:::-;11352:2;11347:3;11343:12;11336:19;;11141:220;;;:::o;11367:366::-;11509:3;11530:67;11594:2;11589:3;11530:67;:::i;:::-;11523:74;;11606:93;11695:3;11606:93;:::i;:::-;11724:2;11719:3;11715:12;11708:19;;11513:220;;;:::o;11739:366::-;11881:3;11902:67;11966:2;11961:3;11902:67;:::i;:::-;11895:74;;11978:93;12067:3;11978:93;:::i;:::-;12096:2;12091:3;12087:12;12080:19;;11885:220;;;:::o;12111:118::-;12198:24;12216:5;12198:24;:::i;:::-;12193:3;12186:37;12176:53;;:::o;12235:271::-;12365:3;12387:93;12476:3;12467:6;12387:93;:::i;:::-;12380:100;;12497:3;12490:10;;12369:137;;;;:::o;12512:435::-;12692:3;12714:95;12805:3;12796:6;12714:95;:::i;:::-;12707:102;;12826:95;12917:3;12908:6;12826:95;:::i;:::-;12819:102;;12938:3;12931:10;;12696:251;;;;;:::o;12953:222::-;13046:4;13084:2;13073:9;13069:18;13061:26;;13097:71;13165:1;13154:9;13150:17;13141:6;13097:71;:::i;:::-;13051:124;;;;:::o;13181:640::-;13376:4;13414:3;13403:9;13399:19;13391:27;;13428:71;13496:1;13485:9;13481:17;13472:6;13428:71;:::i;:::-;13509:72;13577:2;13566:9;13562:18;13553:6;13509:72;:::i;:::-;13591;13659:2;13648:9;13644:18;13635:6;13591:72;:::i;:::-;13710:9;13704:4;13700:20;13695:2;13684:9;13680:18;13673:48;13738:76;13809:4;13800:6;13738:76;:::i;:::-;13730:84;;13381:440;;;;;;;:::o;13827:210::-;13914:4;13952:2;13941:9;13937:18;13929:26;;13965:65;14027:1;14016:9;14012:17;14003:6;13965:65;:::i;:::-;13919:118;;;;:::o;14043:313::-;14156:4;14194:2;14183:9;14179:18;14171:26;;14243:9;14237:4;14233:20;14229:1;14218:9;14214:17;14207:47;14271:78;14344:4;14335:6;14271:78;:::i;:::-;14263:86;;14161:195;;;;:::o;14362:419::-;14528:4;14566:2;14555:9;14551:18;14543:26;;14615:9;14609:4;14605:20;14601:1;14590:9;14586:17;14579:47;14643:131;14769:4;14643:131;:::i;:::-;14635:139;;14533:248;;;:::o;14787:419::-;14953:4;14991:2;14980:9;14976:18;14968:26;;15040:9;15034:4;15030:20;15026:1;15015:9;15011:17;15004:47;15068:131;15194:4;15068:131;:::i;:::-;15060:139;;14958:248;;;:::o;15212:419::-;15378:4;15416:2;15405:9;15401:18;15393:26;;15465:9;15459:4;15455:20;15451:1;15440:9;15436:17;15429:47;15493:131;15619:4;15493:131;:::i;:::-;15485:139;;15383:248;;;:::o;15637:419::-;15803:4;15841:2;15830:9;15826:18;15818:26;;15890:9;15884:4;15880:20;15876:1;15865:9;15861:17;15854:47;15918:131;16044:4;15918:131;:::i;:::-;15910:139;;15808:248;;;:::o;16062:419::-;16228:4;16266:2;16255:9;16251:18;16243:26;;16315:9;16309:4;16305:20;16301:1;16290:9;16286:17;16279:47;16343:131;16469:4;16343:131;:::i;:::-;16335:139;;16233:248;;;:::o;16487:419::-;16653:4;16691:2;16680:9;16676:18;16668:26;;16740:9;16734:4;16730:20;16726:1;16715:9;16711:17;16704:47;16768:131;16894:4;16768:131;:::i;:::-;16760:139;;16658:248;;;:::o;16912:419::-;17078:4;17116:2;17105:9;17101:18;17093:26;;17165:9;17159:4;17155:20;17151:1;17140:9;17136:17;17129:47;17193:131;17319:4;17193:131;:::i;:::-;17185:139;;17083:248;;;:::o;17337:419::-;17503:4;17541:2;17530:9;17526:18;17518:26;;17590:9;17584:4;17580:20;17576:1;17565:9;17561:17;17554:47;17618:131;17744:4;17618:131;:::i;:::-;17610:139;;17508:248;;;:::o;17762:419::-;17928:4;17966:2;17955:9;17951:18;17943:26;;18015:9;18009:4;18005:20;18001:1;17990:9;17986:17;17979:47;18043:131;18169:4;18043:131;:::i;:::-;18035:139;;17933:248;;;:::o;18187:419::-;18353:4;18391:2;18380:9;18376:18;18368:26;;18440:9;18434:4;18430:20;18426:1;18415:9;18411:17;18404:47;18468:131;18594:4;18468:131;:::i;:::-;18460:139;;18358:248;;;:::o;18612:222::-;18705:4;18743:2;18732:9;18728:18;18720:26;;18756:71;18824:1;18813:9;18809:17;18800:6;18756:71;:::i;:::-;18710:124;;;;:::o;18840:129::-;18874:6;18901:20;;:::i;:::-;18891:30;;18930:33;18958:4;18950:6;18930:33;:::i;:::-;18881:88;;;:::o;18975:75::-;19008:6;19041:2;19035:9;19025:19;;19015:35;:::o;19056:307::-;19117:4;19207:18;19199:6;19196:30;19193:2;;;19229:18;;:::i;:::-;19193:2;19267:29;19289:6;19267:29;:::i;:::-;19259:37;;19351:4;19345;19341:15;19333:23;;19122:241;;;:::o;19369:98::-;19420:6;19454:5;19448:12;19438:22;;19427:40;;;:::o;19473:99::-;19525:6;19559:5;19553:12;19543:22;;19532:40;;;:::o;19578:168::-;19661:11;19695:6;19690:3;19683:19;19735:4;19730:3;19726:14;19711:29;;19673:73;;;;:::o;19752:147::-;19853:11;19890:3;19875:18;;19865:34;;;;:::o;19905:169::-;19989:11;20023:6;20018:3;20011:19;20063:4;20058:3;20054:14;20039:29;;20001:73;;;;:::o;20080:148::-;20182:11;20219:3;20204:18;;20194:34;;;;:::o;20234:305::-;20274:3;20293:20;20311:1;20293:20;:::i;:::-;20288:25;;20327:20;20345:1;20327:20;:::i;:::-;20322:25;;20481:1;20413:66;20409:74;20406:1;20403:81;20400:2;;;20487:18;;:::i;:::-;20400:2;20531:1;20528;20524:9;20517:16;;20278:261;;;;:::o;20545:348::-;20585:7;20608:20;20626:1;20608:20;:::i;:::-;20603:25;;20642:20;20660:1;20642:20;:::i;:::-;20637:25;;20830:1;20762:66;20758:74;20755:1;20752:81;20747:1;20740:9;20733:17;20729:105;20726:2;;;20837:18;;:::i;:::-;20726:2;20885:1;20882;20878:9;20867:20;;20593:300;;;;:::o;20899:191::-;20939:4;20959:20;20977:1;20959:20;:::i;:::-;20954:25;;20993:20;21011:1;20993:20;:::i;:::-;20988:25;;21032:1;21029;21026:8;21023:2;;;21037:18;;:::i;:::-;21023:2;21082:1;21079;21075:9;21067:17;;20944:146;;;;:::o;21096:96::-;21133:7;21162:24;21180:5;21162:24;:::i;:::-;21151:35;;21141:51;;;:::o;21198:90::-;21232:7;21275:5;21268:13;21261:21;21250:32;;21240:48;;;:::o;21294:149::-;21330:7;21370:66;21363:5;21359:78;21348:89;;21338:105;;;:::o;21449:126::-;21486:7;21526:42;21519:5;21515:54;21504:65;;21494:81;;;:::o;21581:77::-;21618:7;21647:5;21636:16;;21626:32;;;:::o;21664:154::-;21748:6;21743:3;21738;21725:30;21810:1;21801:6;21796:3;21792:16;21785:27;21715:103;;;:::o;21824:307::-;21892:1;21902:113;21916:6;21913:1;21910:13;21902:113;;;22001:1;21996:3;21992:11;21986:18;21982:1;21977:3;21973:11;21966:39;21938:2;21935:1;21931:10;21926:15;;21902:113;;;22033:6;22030:1;22027:13;22024:2;;;22113:1;22104:6;22099:3;22095:16;22088:27;22024:2;21873:258;;;;:::o;22137:320::-;22181:6;22218:1;22212:4;22208:12;22198:22;;22265:1;22259:4;22255:12;22286:18;22276:2;;22342:4;22334:6;22330:17;22320:27;;22276:2;22404;22396:6;22393:14;22373:18;22370:38;22367:2;;;22423:18;;:::i;:::-;22367:2;22188:269;;;;:::o;22463:281::-;22546:27;22568:4;22546:27;:::i;:::-;22538:6;22534:40;22676:6;22664:10;22661:22;22640:18;22628:10;22625:34;22622:62;22619:2;;;22687:18;;:::i;:::-;22619:2;22727:10;22723:2;22716:22;22506:238;;;:::o;22750:233::-;22789:3;22812:24;22830:5;22812:24;:::i;:::-;22803:33;;22858:66;22851:5;22848:77;22845:2;;;22928:18;;:::i;:::-;22845:2;22975:1;22968:5;22964:13;22957:20;;22793:190;;;:::o;22989:180::-;23037:77;23034:1;23027:88;23134:4;23131:1;23124:15;23158:4;23155:1;23148:15;23175:180;23223:77;23220:1;23213:88;23320:4;23317:1;23310:15;23344:4;23341:1;23334:15;23361:180;23409:77;23406:1;23399:88;23506:4;23503:1;23496:15;23530:4;23527:1;23520:15;23547:102;23588:6;23639:2;23635:7;23630:2;23623:5;23619:14;23615:28;23605:38;;23595:54;;;:::o;23655:159::-;23795:11;23791:1;23783:6;23779:14;23772:35;23761:53;:::o;23820:164::-;23960:16;23956:1;23948:6;23944:14;23937:40;23926:58;:::o;23990:225::-;24130:34;24126:1;24118:6;24114:14;24107:58;24199:8;24194:2;24186:6;24182:15;24175:33;24096:119;:::o;24221:166::-;24361:18;24357:1;24349:6;24345:14;24338:42;24327:60;:::o;24393:164::-;24533:16;24529:1;24521:6;24517:14;24510:40;24499:58;:::o;24563:179::-;24703:31;24699:1;24691:6;24687:14;24680:55;24669:73;:::o;24748:173::-;24888:25;24884:1;24876:6;24872:14;24865:49;24854:67;:::o;24927:182::-;25067:34;25063:1;25055:6;25051:14;25044:58;25033:76;:::o;25115:164::-;25255:16;25251:1;25243:6;25239:14;25232:40;25221:58;:::o;25285:173::-;25425:25;25421:1;25413:6;25409:14;25402:49;25391:67;:::o;25464:122::-;25537:24;25555:5;25537:24;:::i;:::-;25530:5;25527:35;25517:2;;25576:1;25573;25566:12;25517:2;25507:79;:::o;25592:116::-;25662:21;25677:5;25662:21;:::i;:::-;25655:5;25652:32;25642:2;;25698:1;25695;25688:12;25642:2;25632:76;:::o;25714:120::-;25786:23;25803:5;25786:23;:::i;:::-;25779:5;25776:34;25766:2;;25824:1;25821;25814:12;25766:2;25756:78;:::o;25840:122::-;25913:24;25931:5;25913:24;:::i;:::-;25906:5;25903:35;25893:2;;25952:1;25949;25942:12;25893:2;25883:79;:::o

Swarm Source

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