ETH Price: $3,807.04 (-1.83%)
Gas: 8 Gwei

Token

FreeNFT.xyz Collectible Launch Token (FreeNFTCLT)
 

Overview

Max Total Supply

6,969 FreeNFTCLT

Holders

2,784

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
12464.eth
Balance
2 FreeNFTCLT
0xa0acdc35cc9658a5b38ae16b04295444f94886c1
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:
FreeNFTxyzCLT

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * 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)
        }
    }
}

// File: contracts/FreeNFTCLT.sol



pragma solidity 0.8.17;



contract FreeNFTxyzCLT is ERC721A, Ownable {
  string private baseURI = "";

  uint256 public constant maxSupply = 6969;
  uint256 public constant mintQuantity = 1;

  bool public mintIsActive;

  address private _manager;
  mapping(address => uint256) private amountMinted;

  constructor() ERC721A("FreeNFT.xyz Collectible Launch Token", "FreeNFTCLT") {
    mintIsActive = false;
    _mint(msg.sender, 1);
  }

  modifier onlyOwnerOrManager() {
    require(
      owner() == _msgSender() || _manager == _msgSender(),
      "Caller is not the owner or manager"
    );
    _;
  }

  modifier eligibleToMint() {
    require(mintIsActive, "The contract has not started minting.");
    require(
      amountMinted[_msgSender()] == 0,
      "You can not mint more than one token per wallet."
    );
    require(
      totalSupply() + mintQuantity <= maxSupply,
      "All tokens have been minted."
    );
    _;
  }

  function mint() public eligibleToMint {
    amountMinted[msg.sender] += mintQuantity;
    _mint(msg.sender, mintQuantity);
  }

  function ownerMint(uint256 _quantity) public onlyOwner {
    _mint(msg.sender, _quantity);
  }

  function flipMintState() external onlyOwnerOrManager {
    mintIsActive = !mintIsActive;
  }

  function setManager(address manager) external onlyOwnerOrManager {
    _manager = manager;
  }

  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

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

  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    return baseURI;
  }

  function _startTokenId()
    internal
    pure
    override(ERC721A)
    returns (uint256 startId)
  {
    return 1;
  }
}

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":[{"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":[],"name":"flipMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"manager","type":"address"}],"name":"setManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060200160405280600081525060099081620000249190620006cb565b503480156200003257600080fd5b50604051806060016040528060248152602001620031c3602491396040518060400160405280600a81526020017f467265654e4654434c54000000000000000000000000000000000000000000008152508160029081620000949190620006cb565b508060039081620000a69190620006cb565b50620000b76200011360201b60201c565b6000819055505050620000df620000d36200011c60201b60201c565b6200012460201b60201c565b6000600a60006101000a81548160ff0219169083151502179055506200010d336001620001ea60201b60201c565b620007b2565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080549050600082036200022b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620002406000848385620003d160201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550620002cf83620002b16000866000620003d760201b60201c565b620002c2856200040760201b60201c565b176200041760201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146200037257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905062000335565b5060008203620003ae576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050620003cc60008483856200044260201b60201c565b505050565b50505050565b60008060e883901c905060e8620003f68686846200044860201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60009392505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004d357607f821691505b602082108103620004e957620004e86200048b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005537fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000514565b6200055f868362000514565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005ac620005a6620005a08462000577565b62000581565b62000577565b9050919050565b6000819050919050565b620005c8836200058b565b620005e0620005d782620005b3565b84845462000521565b825550505050565b600090565b620005f7620005e8565b62000604818484620005bd565b505050565b5b818110156200062c5762000620600082620005ed565b6001810190506200060a565b5050565b601f8211156200067b576200064581620004ef565b620006508462000504565b8101602085101562000660578190505b620006786200066f8562000504565b83018262000609565b50505b505050565b600082821c905092915050565b6000620006a06000198460080262000680565b1980831691505092915050565b6000620006bb83836200068d565b9150826002028217905092915050565b620006d68262000451565b67ffffffffffffffff811115620006f257620006f16200045c565b5b620006fe8254620004ba565b6200070b82828562000630565b600060209050601f8311600181146200074357600084156200072e578287015190505b6200073a8582620006ad565b865550620007aa565b601f1984166200075386620004ef565b60005b828110156200077d5784890151825560018201915060208501945060208101905062000756565b868310156200079d578489015162000799601f8916826200068d565b8355505b6001600288020188555050505b505050505050565b612a0180620007c26000396000f3fe6080604052600436106101665760003560e01c80636352211e116100d1578063b88d4fde1161008a578063d5abeb0111610064578063d5abeb01146104ce578063e985e9c5146104f9578063f19e75d414610536578063f2fde38b1461055f57610166565b8063b88d4fde1461044c578063c87b56dd14610468578063d0ebdbe7146104a557610166565b80636352211e1461033c57806370a0823114610379578063715018a6146103b65780638da5cb5b146103cd57806395d89b41146103f8578063a22cb4651461042357610166565b806323b872dd1161012357806323b872dd1461026e57806342842e0e1461028a5780634338cd5f146102a6578063471a4294146102d157806355f804b3146102fc57806359c74f291461032557610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d3578063095ea7b3146102105780631249c58b1461022c57806318160ddd14610243575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190611bbd565b610588565b60405161019f9190611c05565b60405180910390f35b3480156101b457600080fd5b506101bd61061a565b6040516101ca9190611cb0565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f59190611d08565b6106ac565b6040516102079190611d76565b60405180910390f35b61022a60048036038101906102259190611dbd565b61072b565b005b34801561023857600080fd5b5061024161086f565b005b34801561024f57600080fd5b50610258610a03565b6040516102659190611e0c565b60405180910390f35b61028860048036038101906102839190611e27565b610a1a565b005b6102a4600480360381019061029f9190611e27565b610d3c565b005b3480156102b257600080fd5b506102bb610d5c565b6040516102c89190611e0c565b60405180910390f35b3480156102dd57600080fd5b506102e6610d61565b6040516102f39190611c05565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e9190611faf565b610d74565b005b34801561033157600080fd5b5061033a610d8f565b005b34801561034857600080fd5b50610363600480360381019061035e9190611d08565b610e96565b6040516103709190611d76565b60405180910390f35b34801561038557600080fd5b506103a0600480360381019061039b9190611ff8565b610ea8565b6040516103ad9190611e0c565b60405180910390f35b3480156103c257600080fd5b506103cb610f60565b005b3480156103d957600080fd5b506103e2610f74565b6040516103ef9190611d76565b60405180910390f35b34801561040457600080fd5b5061040d610f9e565b60405161041a9190611cb0565b60405180910390f35b34801561042f57600080fd5b5061044a60048036038101906104459190612051565b611030565b005b61046660048036038101906104619190612132565b61113b565b005b34801561047457600080fd5b5061048f600480360381019061048a9190611d08565b6111ae565b60405161049c9190611cb0565b60405180910390f35b3480156104b157600080fd5b506104cc60048036038101906104c79190611ff8565b61128a565b005b3480156104da57600080fd5b506104e36113a9565b6040516104f09190611e0c565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b91906121b5565b6113af565b60405161052d9190611c05565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190611d08565b611443565b005b34801561056b57600080fd5b5061058660048036038101906105819190611ff8565b611458565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105e357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106135750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461062990612224565b80601f016020809104026020016040519081016040528092919081815260200182805461065590612224565b80156106a25780601f10610677576101008083540402835291602001916106a2565b820191906000526020600020905b81548152906001019060200180831161068557829003601f168201915b5050505050905090565b60006106b7826114db565b6106ed576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061073682610e96565b90508073ffffffffffffffffffffffffffffffffffffffff1661075761153a565b73ffffffffffffffffffffffffffffffffffffffff16146107ba576107838161077e61153a565b6113af565b6107b9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600a60009054906101000a900460ff166108be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b5906122c7565b60405180910390fd5b6000600b60006108cc611542565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093e90612359565b60405180910390fd5b611b396001610954610a03565b61095e91906123a8565b111561099f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099690612428565b60405180910390fd5b6001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546109ef91906123a8565b92505081905550610a0133600161154a565b565b6000610a0d611705565b6001546000540303905090565b6000610a258261170e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a8c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a98846117da565b91509150610aae8187610aa961153a565b611801565b610afa57610ac386610abe61153a565b6113af565b610af9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610b60576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b6d8686866001611845565b8015610b7857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c4685610c2288888761184b565b7c020000000000000000000000000000000000000000000000000000000017611873565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610ccc5760006001850190506000600460008381526020019081526020016000205403610cca576000548114610cc9578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d34868686600161189e565b505050505050565b610d578383836040518060200160405280600081525061113b565b505050565b600181565b600a60009054906101000a900460ff1681565b610d7c6118a4565b8060099081610d8b91906125f4565b5050565b610d97611542565b73ffffffffffffffffffffffffffffffffffffffff16610db5610f74565b73ffffffffffffffffffffffffffffffffffffffff161480610e2b5750610dda611542565b73ffffffffffffffffffffffffffffffffffffffff16600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6190612738565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6000610ea18261170e565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f0f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f686118a4565b610f726000611922565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610fad90612224565b80601f0160208091040260200160405190810160405280929190818152602001828054610fd990612224565b80156110265780601f10610ffb57610100808354040283529160200191611026565b820191906000526020600020905b81548152906001019060200180831161100957829003601f168201915b5050505050905090565b806007600061103d61153a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166110ea61153a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161112f9190611c05565b60405180910390a35050565b611146848484610a1a565b60008373ffffffffffffffffffffffffffffffffffffffff163b146111a857611171848484846119e8565b6111a7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606111b9826114db565b6111f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ef906127ca565b60405180910390fd5b6009805461120590612224565b80601f016020809104026020016040519081016040528092919081815260200182805461123190612224565b801561127e5780601f106112535761010080835404028352916020019161127e565b820191906000526020600020905b81548152906001019060200180831161126157829003601f168201915b50505050509050919050565b611292611542565b73ffffffffffffffffffffffffffffffffffffffff166112b0610f74565b73ffffffffffffffffffffffffffffffffffffffff16148061132657506112d5611542565b73ffffffffffffffffffffffffffffffffffffffff16600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135c90612738565b60405180910390fd5b80600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611b3981565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61144b6118a4565b611455338261154a565b50565b6114606118a4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c69061285c565b60405180910390fd5b6114d881611922565b50565b6000816114e6611705565b111580156114f5575060005482105b8015611533575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b6000805490506000820361158a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115976000848385611845565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061160e836115ff600086600061184b565b61160885611b38565b17611873565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146116af57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611674565b50600082036116ea576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611700600084838561189e565b505050565b60006001905090565b6000808290508061171d611705565b116117a3576000548110156117a25760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036117a0575b6000810361179657600460008360019003935083815260200190815260200160002054905061176c565b80925050506117d5565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611862868684611b48565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6118ac611542565b73ffffffffffffffffffffffffffffffffffffffff166118ca610f74565b73ffffffffffffffffffffffffffffffffffffffff1614611920576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611917906128c8565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a0e61153a565b8786866040518563ffffffff1660e01b8152600401611a30949392919061293d565b6020604051808303816000875af1925050508015611a6c57506040513d601f19601f82011682018060405250810190611a69919061299e565b60015b611ae5573d8060008114611a9c576040519150601f19603f3d011682016040523d82523d6000602084013e611aa1565b606091505b506000815103611add576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60006001821460e11b9050919050565b60009392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611b9a81611b65565b8114611ba557600080fd5b50565b600081359050611bb781611b91565b92915050565b600060208284031215611bd357611bd2611b5b565b5b6000611be184828501611ba8565b91505092915050565b60008115159050919050565b611bff81611bea565b82525050565b6000602082019050611c1a6000830184611bf6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611c5a578082015181840152602081019050611c3f565b60008484015250505050565b6000601f19601f8301169050919050565b6000611c8282611c20565b611c8c8185611c2b565b9350611c9c818560208601611c3c565b611ca581611c66565b840191505092915050565b60006020820190508181036000830152611cca8184611c77565b905092915050565b6000819050919050565b611ce581611cd2565b8114611cf057600080fd5b50565b600081359050611d0281611cdc565b92915050565b600060208284031215611d1e57611d1d611b5b565b5b6000611d2c84828501611cf3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611d6082611d35565b9050919050565b611d7081611d55565b82525050565b6000602082019050611d8b6000830184611d67565b92915050565b611d9a81611d55565b8114611da557600080fd5b50565b600081359050611db781611d91565b92915050565b60008060408385031215611dd457611dd3611b5b565b5b6000611de285828601611da8565b9250506020611df385828601611cf3565b9150509250929050565b611e0681611cd2565b82525050565b6000602082019050611e216000830184611dfd565b92915050565b600080600060608486031215611e4057611e3f611b5b565b5b6000611e4e86828701611da8565b9350506020611e5f86828701611da8565b9250506040611e7086828701611cf3565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611ebc82611c66565b810181811067ffffffffffffffff82111715611edb57611eda611e84565b5b80604052505050565b6000611eee611b51565b9050611efa8282611eb3565b919050565b600067ffffffffffffffff821115611f1a57611f19611e84565b5b611f2382611c66565b9050602081019050919050565b82818337600083830152505050565b6000611f52611f4d84611eff565b611ee4565b905082815260208101848484011115611f6e57611f6d611e7f565b5b611f79848285611f30565b509392505050565b600082601f830112611f9657611f95611e7a565b5b8135611fa6848260208601611f3f565b91505092915050565b600060208284031215611fc557611fc4611b5b565b5b600082013567ffffffffffffffff811115611fe357611fe2611b60565b5b611fef84828501611f81565b91505092915050565b60006020828403121561200e5761200d611b5b565b5b600061201c84828501611da8565b91505092915050565b61202e81611bea565b811461203957600080fd5b50565b60008135905061204b81612025565b92915050565b6000806040838503121561206857612067611b5b565b5b600061207685828601611da8565b92505060206120878582860161203c565b9150509250929050565b600067ffffffffffffffff8211156120ac576120ab611e84565b5b6120b582611c66565b9050602081019050919050565b60006120d56120d084612091565b611ee4565b9050828152602081018484840111156120f1576120f0611e7f565b5b6120fc848285611f30565b509392505050565b600082601f83011261211957612118611e7a565b5b81356121298482602086016120c2565b91505092915050565b6000806000806080858703121561214c5761214b611b5b565b5b600061215a87828801611da8565b945050602061216b87828801611da8565b935050604061217c87828801611cf3565b925050606085013567ffffffffffffffff81111561219d5761219c611b60565b5b6121a987828801612104565b91505092959194509250565b600080604083850312156121cc576121cb611b5b565b5b60006121da85828601611da8565b92505060206121eb85828601611da8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061223c57607f821691505b60208210810361224f5761224e6121f5565b5b50919050565b7f54686520636f6e747261637420686173206e6f742073746172746564206d696e60008201527f74696e672e000000000000000000000000000000000000000000000000000000602082015250565b60006122b1602583611c2b565b91506122bc82612255565b604082019050919050565b600060208201905081810360008301526122e0816122a4565b9050919050565b7f596f752063616e206e6f74206d696e74206d6f7265207468616e206f6e65207460008201527f6f6b656e207065722077616c6c65742e00000000000000000000000000000000602082015250565b6000612343603083611c2b565b915061234e826122e7565b604082019050919050565b6000602082019050818103600083015261237281612336565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006123b382611cd2565b91506123be83611cd2565b92508282019050808211156123d6576123d5612379565b5b92915050565b7f416c6c20746f6b656e732068617665206265656e206d696e7465642e00000000600082015250565b6000612412601c83611c2b565b915061241d826123dc565b602082019050919050565b6000602082019050818103600083015261244181612405565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026124aa7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261246d565b6124b4868361246d565b95508019841693508086168417925050509392505050565b6000819050919050565b60006124f16124ec6124e784611cd2565b6124cc565b611cd2565b9050919050565b6000819050919050565b61250b836124d6565b61251f612517826124f8565b84845461247a565b825550505050565b600090565b612534612527565b61253f818484612502565b505050565b5b818110156125635761255860008261252c565b600181019050612545565b5050565b601f8211156125a85761257981612448565b6125828461245d565b81016020851015612591578190505b6125a561259d8561245d565b830182612544565b50505b505050565b600082821c905092915050565b60006125cb600019846008026125ad565b1980831691505092915050565b60006125e483836125ba565b9150826002028217905092915050565b6125fd82611c20565b67ffffffffffffffff81111561261657612615611e84565b5b6126208254612224565b61262b828285612567565b600060209050601f83116001811461265e576000841561264c578287015190505b61265685826125d8565b8655506126be565b601f19841661266c86612448565b60005b828110156126945784890151825560018201915060208501945060208101905061266f565b868310156126b157848901516126ad601f8916826125ba565b8355505b6001600288020188555050505b505050505050565b7f43616c6c6572206973206e6f7420746865206f776e6572206f72206d616e616760008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000612722602283611c2b565b915061272d826126c6565b604082019050919050565b6000602082019050818103600083015261275181612715565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006127b4602f83611c2b565b91506127bf82612758565b604082019050919050565b600060208201905081810360008301526127e3816127a7565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612846602683611c2b565b9150612851826127ea565b604082019050919050565b6000602082019050818103600083015261287581612839565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006128b2602083611c2b565b91506128bd8261287c565b602082019050919050565b600060208201905081810360008301526128e1816128a5565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061290f826128e8565b61291981856128f3565b9350612929818560208601611c3c565b61293281611c66565b840191505092915050565b60006080820190506129526000830187611d67565b61295f6020830186611d67565b61296c6040830185611dfd565b818103606083015261297e8184612904565b905095945050505050565b60008151905061299881611b91565b92915050565b6000602082840312156129b4576129b3611b5b565b5b60006129c284828501612989565b9150509291505056fea2646970667358221220fd9cd68352b97e56072393f86663dc3ca820c88af257b98022e7a1bc56e67ebe64736f6c63430008110033467265654e46542e78797a20436f6c6c65637469626c65204c61756e636820546f6b656e

Deployed Bytecode

0x6080604052600436106101665760003560e01c80636352211e116100d1578063b88d4fde1161008a578063d5abeb0111610064578063d5abeb01146104ce578063e985e9c5146104f9578063f19e75d414610536578063f2fde38b1461055f57610166565b8063b88d4fde1461044c578063c87b56dd14610468578063d0ebdbe7146104a557610166565b80636352211e1461033c57806370a0823114610379578063715018a6146103b65780638da5cb5b146103cd57806395d89b41146103f8578063a22cb4651461042357610166565b806323b872dd1161012357806323b872dd1461026e57806342842e0e1461028a5780634338cd5f146102a6578063471a4294146102d157806355f804b3146102fc57806359c74f291461032557610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d3578063095ea7b3146102105780631249c58b1461022c57806318160ddd14610243575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190611bbd565b610588565b60405161019f9190611c05565b60405180910390f35b3480156101b457600080fd5b506101bd61061a565b6040516101ca9190611cb0565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f59190611d08565b6106ac565b6040516102079190611d76565b60405180910390f35b61022a60048036038101906102259190611dbd565b61072b565b005b34801561023857600080fd5b5061024161086f565b005b34801561024f57600080fd5b50610258610a03565b6040516102659190611e0c565b60405180910390f35b61028860048036038101906102839190611e27565b610a1a565b005b6102a4600480360381019061029f9190611e27565b610d3c565b005b3480156102b257600080fd5b506102bb610d5c565b6040516102c89190611e0c565b60405180910390f35b3480156102dd57600080fd5b506102e6610d61565b6040516102f39190611c05565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e9190611faf565b610d74565b005b34801561033157600080fd5b5061033a610d8f565b005b34801561034857600080fd5b50610363600480360381019061035e9190611d08565b610e96565b6040516103709190611d76565b60405180910390f35b34801561038557600080fd5b506103a0600480360381019061039b9190611ff8565b610ea8565b6040516103ad9190611e0c565b60405180910390f35b3480156103c257600080fd5b506103cb610f60565b005b3480156103d957600080fd5b506103e2610f74565b6040516103ef9190611d76565b60405180910390f35b34801561040457600080fd5b5061040d610f9e565b60405161041a9190611cb0565b60405180910390f35b34801561042f57600080fd5b5061044a60048036038101906104459190612051565b611030565b005b61046660048036038101906104619190612132565b61113b565b005b34801561047457600080fd5b5061048f600480360381019061048a9190611d08565b6111ae565b60405161049c9190611cb0565b60405180910390f35b3480156104b157600080fd5b506104cc60048036038101906104c79190611ff8565b61128a565b005b3480156104da57600080fd5b506104e36113a9565b6040516104f09190611e0c565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b91906121b5565b6113af565b60405161052d9190611c05565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190611d08565b611443565b005b34801561056b57600080fd5b5061058660048036038101906105819190611ff8565b611458565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105e357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106135750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461062990612224565b80601f016020809104026020016040519081016040528092919081815260200182805461065590612224565b80156106a25780601f10610677576101008083540402835291602001916106a2565b820191906000526020600020905b81548152906001019060200180831161068557829003601f168201915b5050505050905090565b60006106b7826114db565b6106ed576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061073682610e96565b90508073ffffffffffffffffffffffffffffffffffffffff1661075761153a565b73ffffffffffffffffffffffffffffffffffffffff16146107ba576107838161077e61153a565b6113af565b6107b9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600a60009054906101000a900460ff166108be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b5906122c7565b60405180910390fd5b6000600b60006108cc611542565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093e90612359565b60405180910390fd5b611b396001610954610a03565b61095e91906123a8565b111561099f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099690612428565b60405180910390fd5b6001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546109ef91906123a8565b92505081905550610a0133600161154a565b565b6000610a0d611705565b6001546000540303905090565b6000610a258261170e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a8c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a98846117da565b91509150610aae8187610aa961153a565b611801565b610afa57610ac386610abe61153a565b6113af565b610af9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610b60576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b6d8686866001611845565b8015610b7857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c4685610c2288888761184b565b7c020000000000000000000000000000000000000000000000000000000017611873565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610ccc5760006001850190506000600460008381526020019081526020016000205403610cca576000548114610cc9578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d34868686600161189e565b505050505050565b610d578383836040518060200160405280600081525061113b565b505050565b600181565b600a60009054906101000a900460ff1681565b610d7c6118a4565b8060099081610d8b91906125f4565b5050565b610d97611542565b73ffffffffffffffffffffffffffffffffffffffff16610db5610f74565b73ffffffffffffffffffffffffffffffffffffffff161480610e2b5750610dda611542565b73ffffffffffffffffffffffffffffffffffffffff16600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6190612738565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6000610ea18261170e565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f0f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f686118a4565b610f726000611922565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610fad90612224565b80601f0160208091040260200160405190810160405280929190818152602001828054610fd990612224565b80156110265780601f10610ffb57610100808354040283529160200191611026565b820191906000526020600020905b81548152906001019060200180831161100957829003601f168201915b5050505050905090565b806007600061103d61153a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166110ea61153a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161112f9190611c05565b60405180910390a35050565b611146848484610a1a565b60008373ffffffffffffffffffffffffffffffffffffffff163b146111a857611171848484846119e8565b6111a7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606111b9826114db565b6111f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ef906127ca565b60405180910390fd5b6009805461120590612224565b80601f016020809104026020016040519081016040528092919081815260200182805461123190612224565b801561127e5780601f106112535761010080835404028352916020019161127e565b820191906000526020600020905b81548152906001019060200180831161126157829003601f168201915b50505050509050919050565b611292611542565b73ffffffffffffffffffffffffffffffffffffffff166112b0610f74565b73ffffffffffffffffffffffffffffffffffffffff16148061132657506112d5611542565b73ffffffffffffffffffffffffffffffffffffffff16600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135c90612738565b60405180910390fd5b80600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611b3981565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61144b6118a4565b611455338261154a565b50565b6114606118a4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c69061285c565b60405180910390fd5b6114d881611922565b50565b6000816114e6611705565b111580156114f5575060005482105b8015611533575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b6000805490506000820361158a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115976000848385611845565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061160e836115ff600086600061184b565b61160885611b38565b17611873565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146116af57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611674565b50600082036116ea576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611700600084838561189e565b505050565b60006001905090565b6000808290508061171d611705565b116117a3576000548110156117a25760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036117a0575b6000810361179657600460008360019003935083815260200190815260200160002054905061176c565b80925050506117d5565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611862868684611b48565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6118ac611542565b73ffffffffffffffffffffffffffffffffffffffff166118ca610f74565b73ffffffffffffffffffffffffffffffffffffffff1614611920576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611917906128c8565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a0e61153a565b8786866040518563ffffffff1660e01b8152600401611a30949392919061293d565b6020604051808303816000875af1925050508015611a6c57506040513d601f19601f82011682018060405250810190611a69919061299e565b60015b611ae5573d8060008114611a9c576040519150601f19603f3d011682016040523d82523d6000602084013e611aa1565b606091505b506000815103611add576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60006001821460e11b9050919050565b60009392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611b9a81611b65565b8114611ba557600080fd5b50565b600081359050611bb781611b91565b92915050565b600060208284031215611bd357611bd2611b5b565b5b6000611be184828501611ba8565b91505092915050565b60008115159050919050565b611bff81611bea565b82525050565b6000602082019050611c1a6000830184611bf6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611c5a578082015181840152602081019050611c3f565b60008484015250505050565b6000601f19601f8301169050919050565b6000611c8282611c20565b611c8c8185611c2b565b9350611c9c818560208601611c3c565b611ca581611c66565b840191505092915050565b60006020820190508181036000830152611cca8184611c77565b905092915050565b6000819050919050565b611ce581611cd2565b8114611cf057600080fd5b50565b600081359050611d0281611cdc565b92915050565b600060208284031215611d1e57611d1d611b5b565b5b6000611d2c84828501611cf3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611d6082611d35565b9050919050565b611d7081611d55565b82525050565b6000602082019050611d8b6000830184611d67565b92915050565b611d9a81611d55565b8114611da557600080fd5b50565b600081359050611db781611d91565b92915050565b60008060408385031215611dd457611dd3611b5b565b5b6000611de285828601611da8565b9250506020611df385828601611cf3565b9150509250929050565b611e0681611cd2565b82525050565b6000602082019050611e216000830184611dfd565b92915050565b600080600060608486031215611e4057611e3f611b5b565b5b6000611e4e86828701611da8565b9350506020611e5f86828701611da8565b9250506040611e7086828701611cf3565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611ebc82611c66565b810181811067ffffffffffffffff82111715611edb57611eda611e84565b5b80604052505050565b6000611eee611b51565b9050611efa8282611eb3565b919050565b600067ffffffffffffffff821115611f1a57611f19611e84565b5b611f2382611c66565b9050602081019050919050565b82818337600083830152505050565b6000611f52611f4d84611eff565b611ee4565b905082815260208101848484011115611f6e57611f6d611e7f565b5b611f79848285611f30565b509392505050565b600082601f830112611f9657611f95611e7a565b5b8135611fa6848260208601611f3f565b91505092915050565b600060208284031215611fc557611fc4611b5b565b5b600082013567ffffffffffffffff811115611fe357611fe2611b60565b5b611fef84828501611f81565b91505092915050565b60006020828403121561200e5761200d611b5b565b5b600061201c84828501611da8565b91505092915050565b61202e81611bea565b811461203957600080fd5b50565b60008135905061204b81612025565b92915050565b6000806040838503121561206857612067611b5b565b5b600061207685828601611da8565b92505060206120878582860161203c565b9150509250929050565b600067ffffffffffffffff8211156120ac576120ab611e84565b5b6120b582611c66565b9050602081019050919050565b60006120d56120d084612091565b611ee4565b9050828152602081018484840111156120f1576120f0611e7f565b5b6120fc848285611f30565b509392505050565b600082601f83011261211957612118611e7a565b5b81356121298482602086016120c2565b91505092915050565b6000806000806080858703121561214c5761214b611b5b565b5b600061215a87828801611da8565b945050602061216b87828801611da8565b935050604061217c87828801611cf3565b925050606085013567ffffffffffffffff81111561219d5761219c611b60565b5b6121a987828801612104565b91505092959194509250565b600080604083850312156121cc576121cb611b5b565b5b60006121da85828601611da8565b92505060206121eb85828601611da8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061223c57607f821691505b60208210810361224f5761224e6121f5565b5b50919050565b7f54686520636f6e747261637420686173206e6f742073746172746564206d696e60008201527f74696e672e000000000000000000000000000000000000000000000000000000602082015250565b60006122b1602583611c2b565b91506122bc82612255565b604082019050919050565b600060208201905081810360008301526122e0816122a4565b9050919050565b7f596f752063616e206e6f74206d696e74206d6f7265207468616e206f6e65207460008201527f6f6b656e207065722077616c6c65742e00000000000000000000000000000000602082015250565b6000612343603083611c2b565b915061234e826122e7565b604082019050919050565b6000602082019050818103600083015261237281612336565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006123b382611cd2565b91506123be83611cd2565b92508282019050808211156123d6576123d5612379565b5b92915050565b7f416c6c20746f6b656e732068617665206265656e206d696e7465642e00000000600082015250565b6000612412601c83611c2b565b915061241d826123dc565b602082019050919050565b6000602082019050818103600083015261244181612405565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026124aa7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261246d565b6124b4868361246d565b95508019841693508086168417925050509392505050565b6000819050919050565b60006124f16124ec6124e784611cd2565b6124cc565b611cd2565b9050919050565b6000819050919050565b61250b836124d6565b61251f612517826124f8565b84845461247a565b825550505050565b600090565b612534612527565b61253f818484612502565b505050565b5b818110156125635761255860008261252c565b600181019050612545565b5050565b601f8211156125a85761257981612448565b6125828461245d565b81016020851015612591578190505b6125a561259d8561245d565b830182612544565b50505b505050565b600082821c905092915050565b60006125cb600019846008026125ad565b1980831691505092915050565b60006125e483836125ba565b9150826002028217905092915050565b6125fd82611c20565b67ffffffffffffffff81111561261657612615611e84565b5b6126208254612224565b61262b828285612567565b600060209050601f83116001811461265e576000841561264c578287015190505b61265685826125d8565b8655506126be565b601f19841661266c86612448565b60005b828110156126945784890151825560018201915060208501945060208101905061266f565b868310156126b157848901516126ad601f8916826125ba565b8355505b6001600288020188555050505b505050505050565b7f43616c6c6572206973206e6f7420746865206f776e6572206f72206d616e616760008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000612722602283611c2b565b915061272d826126c6565b604082019050919050565b6000602082019050818103600083015261275181612715565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006127b4602f83611c2b565b91506127bf82612758565b604082019050919050565b600060208201905081810360008301526127e3816127a7565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612846602683611c2b565b9150612851826127ea565b604082019050919050565b6000602082019050818103600083015261287581612839565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006128b2602083611c2b565b91506128bd8261287c565b602082019050919050565b600060208201905081810360008301526128e1816128a5565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061290f826128e8565b61291981856128f3565b9350612929818560208601611c3c565b61293281611c66565b840191505092915050565b60006080820190506129526000830187611d67565b61295f6020830186611d67565b61296c6040830185611dfd565b818103606083015261297e8184612904565b905095945050505050565b60008151905061299881611b91565b92915050565b6000602082840312156129b4576129b3611b5b565b5b60006129c284828501612989565b9150509291505056fea2646970667358221220fd9cd68352b97e56072393f86663dc3ca820c88af257b98022e7a1bc56e67ebe64736f6c63430008110033

Deployed Bytecode Sourcemap

55100:1990:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21997:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22899:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29390:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28823:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56052:129;;;;;;;;;;;;;:::i;:::-;;18650:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33029:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35950:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55227:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55274:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56491:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56289:94;;;;;;;;;;;;;:::i;:::-;;24292:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19834:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2776:103;;;;;;;;;;;;;:::i;:::-;;2128:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23075:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29948:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36741:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56703:251;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56389:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55182:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30339:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56187:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3034:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21997:639;22082:4;22421:10;22406:25;;:11;:25;;;;:102;;;;22498:10;22483:25;;:11;:25;;;;22406:102;:179;;;;22575:10;22560:25;;:11;:25;;;;22406:179;22386:199;;21997:639;;;:::o;22899:100::-;22953:13;22986:5;22979:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22899:100;:::o;29390:218::-;29466:7;29491:16;29499:7;29491;:16::i;:::-;29486:64;;29516:34;;;;;;;;;;;;;;29486:64;29570:15;:24;29586:7;29570:24;;;;;;;;;;;:30;;;;;;;;;;;;29563:37;;29390:218;;;:::o;28823:408::-;28912:13;28928:16;28936:7;28928;:16::i;:::-;28912:32;;28984:5;28961:28;;:19;:17;:19::i;:::-;:28;;;28957:175;;29009:44;29026:5;29033:19;:17;:19::i;:::-;29009:16;:44::i;:::-;29004:128;;29081:35;;;;;;;;;;;;;;29004:128;28957:175;29177:2;29144:15;:24;29160:7;29144:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;29215:7;29211:2;29195:28;;29204:5;29195:28;;;;;;;;;;;;28901:330;28823:408;;:::o;56052:129::-;55748:12;;;;;;;;;;;55740:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;55855:1;55825:12;:26;55838:12;:10;:12::i;:::-;55825:26;;;;;;;;;;;;;;;;:31;55809:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;55218:4;55266:1;55945:13;:11;:13::i;:::-;:28;;;;:::i;:::-;:41;;55929:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;55266:1:::1;56097:12;:24;56110:10;56097:24;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;56144:31;56150:10;55266:1;56144:5;:31::i;:::-;56052:129::o:0;18650:323::-;18711:7;18939:15;:13;:15::i;:::-;18924:12;;18908:13;;:28;:46;18901:53;;18650:323;:::o;33029:2825::-;33171:27;33201;33220:7;33201:18;:27::i;:::-;33171:57;;33286:4;33245:45;;33261:19;33245:45;;;33241:86;;33299:28;;;;;;;;;;;;;;33241:86;33341:27;33370:23;33397:35;33424:7;33397:26;:35::i;:::-;33340:92;;;;33532:68;33557:15;33574:4;33580:19;:17;:19::i;:::-;33532:24;:68::i;:::-;33527:180;;33620:43;33637:4;33643:19;:17;:19::i;:::-;33620:16;:43::i;:::-;33615:92;;33672:35;;;;;;;;;;;;;;33615:92;33527:180;33738:1;33724:16;;:2;:16;;;33720:52;;33749:23;;;;;;;;;;;;;;33720:52;33785:43;33807:4;33813:2;33817:7;33826:1;33785:21;:43::i;:::-;33921:15;33918:160;;;34061:1;34040:19;34033:30;33918:160;34458:18;:24;34477:4;34458:24;;;;;;;;;;;;;;;;34456:26;;;;;;;;;;;;34527:18;:22;34546:2;34527:22;;;;;;;;;;;;;;;;34525:24;;;;;;;;;;;34849:146;34886:2;34935:45;34950:4;34956:2;34960:19;34935:14;:45::i;:::-;15049:8;34907:73;34849:18;:146::i;:::-;34820:17;:26;34838:7;34820:26;;;;;;;;;;;:175;;;;35166:1;15049:8;35115:19;:47;:52;35111:627;;35188:19;35220:1;35210:7;:11;35188:33;;35377:1;35343:17;:30;35361:11;35343:30;;;;;;;;;;;;:35;35339:384;;35481:13;;35466:11;:28;35462:242;;35661:19;35628:17;:30;35646:11;35628:30;;;;;;;;;;;:52;;;;35462:242;35339:384;35169:569;35111:627;35785:7;35781:2;35766:27;;35775:4;35766:27;;;;;;;;;;;;35804:42;35825:4;35831:2;35835:7;35844:1;35804:20;:42::i;:::-;33160:2694;;;33029:2825;;;:::o;35950:193::-;36096:39;36113:4;36119:2;36123:7;36096:39;;;;;;;;;;;;:16;:39::i;:::-;35950:193;;;:::o;55227:40::-;55266:1;55227:40;:::o;55274:24::-;;;;;;;;;;;;;:::o;56491:98::-;2014:13;:11;:13::i;:::-;56572:11:::1;56562:7;:21;;;;;;:::i;:::-;;56491:98:::0;:::o;56289:94::-;55595:12;:10;:12::i;:::-;55584:23;;:7;:5;:7::i;:::-;:23;;;:51;;;;55623:12;:10;:12::i;:::-;55611:24;;:8;;;;;;;;;;;:24;;;55584:51;55568:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;56365:12:::1;;;;;;;;;;;56364:13;56349:12;;:28;;;;;;;;;;;;;;;;;;56289:94::o:0;24292:152::-;24364:7;24407:27;24426:7;24407:18;:27::i;:::-;24384:52;;24292:152;;;:::o;19834:233::-;19906:7;19947:1;19930:19;;:5;:19;;;19926:60;;19958:28;;;;;;;;;;;;;;19926:60;13993:13;20004:18;:25;20023:5;20004:25;;;;;;;;;;;;;;;;:55;19997:62;;19834:233;;;:::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;:::-;2776:103::o:0;2128:87::-;2174:7;2201:6;;;;;;;;;;;2194:13;;2128:87;:::o;23075:104::-;23131:13;23164:7;23157:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23075:104;:::o;29948:234::-;30095:8;30043:18;:39;30062:19;:17;:19::i;:::-;30043:39;;;;;;;;;;;;;;;:49;30083:8;30043:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;30155:8;30119:55;;30134:19;:17;:19::i;:::-;30119:55;;;30165:8;30119:55;;;;;;:::i;:::-;;;;;;;;29948:234;;:::o;36741:407::-;36916:31;36929:4;36935:2;36939:7;36916:12;:31::i;:::-;36980:1;36962:2;:14;;;:19;36958:183;;37001:56;37032:4;37038:2;37042:7;37051:5;37001:30;:56::i;:::-;36996:145;;37085:40;;;;;;;;;;;;;;36996:145;36958:183;36741:407;;;;:::o;56703:251::-;56802:13;56843:17;56851:8;56843:7;:17::i;:::-;56827:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;56941:7;56934:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56703:251;;;:::o;56389:96::-;55595:12;:10;:12::i;:::-;55584:23;;:7;:5;:7::i;:::-;:23;;;:51;;;;55623:12;:10;:12::i;:::-;55611:24;;:8;;;;;;;;;;;:24;;;55584:51;55568:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;56472:7:::1;56461:8;;:18;;;;;;;;;;;;;;;;;;56389:96:::0;:::o;55182:40::-;55218:4;55182:40;:::o;30339:164::-;30436:4;30460:18;:25;30479:5;30460:25;;;;;;;;;;;;;;;:35;30486:8;30460:35;;;;;;;;;;;;;;;;;;;;;;;;;30453:42;;30339:164;;;;:::o;56187:96::-;2014:13;:11;:13::i;:::-;56249:28:::1;56255:10;56267:9;56249:5;:28::i;:::-;56187:96:::0;:::o;3034:201::-;2014:13;:11;:13::i;:::-;3143:1:::1;3123:22;;:8;:22;;::::0;3115:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3199:28;3218:8;3199:18;:28::i;:::-;3034:201:::0;:::o;30761:282::-;30826:4;30882:7;30863:15;:13;:15::i;:::-;:26;;:66;;;;;30916:13;;30906:7;:23;30863:66;:153;;;;;31015:1;14769:8;30967:17;:26;30985:7;30967:26;;;;;;;;;;;;:44;:49;30863:153;30843:173;;30761:282;;;:::o;53069:105::-;53129:7;53156:10;53149:17;;53069:105;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;40410:2966::-;40483:20;40506:13;;40483:36;;40546:1;40534:8;:13;40530:44;;40556:18;;;;;;;;;;;;;;40530:44;40587:61;40617:1;40621:2;40625:12;40639:8;40587:21;:61::i;:::-;41131:1;14131:2;41101:1;:26;;41100:32;41088:8;:45;41062:18;:22;41081:2;41062:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;41410:139;41447:2;41501:33;41524:1;41528:2;41532:1;41501:14;:33::i;:::-;41468:30;41489:8;41468:20;:30::i;:::-;:66;41410:18;:139::i;:::-;41376:17;:31;41394:12;41376:31;;;;;;;;;;;:173;;;;41566:16;41597:11;41626:8;41611:12;:23;41597:37;;42147:16;42143:2;42139:25;42127:37;;42519:12;42479:8;42438:1;42376:25;42317:1;42256;42229:335;42890:1;42876:12;42872:20;42830:346;42931:3;42922:7;42919:16;42830:346;;43149:7;43139:8;43136:1;43109:25;43106:1;43103;43098:59;42984:1;42975:7;42971:15;42960:26;;42830:346;;;42834:77;43221:1;43209:8;:13;43205:45;;43231:19;;;;;;;;;;;;;;43205:45;43283:3;43267:13;:19;;;;40836:2462;;43308:60;43337:1;43341:2;43345:12;43359:8;43308:20;:60::i;:::-;40472:2904;40410:2966;;:::o;56960:127::-;57046:15;57080:1;57073:8;;56960:127;:::o;25447:1275::-;25514:7;25534:12;25549:7;25534:22;;25617:4;25598:15;:13;:15::i;:::-;:23;25594:1061;;25651:13;;25644:4;:20;25640:1015;;;25689:14;25706:17;:23;25724:4;25706:23;;;;;;;;;;;;25689:40;;25823:1;14769:8;25795:6;:24;:29;25791:845;;26460:113;26477:1;26467:6;:11;26460:113;;26520:17;:25;26538:6;;;;;;;26520:25;;;;;;;;;;;;26511:34;;26460:113;;;26606:6;26599:13;;;;;;25791:845;25666:989;25640:1015;25594:1061;26683:31;;;;;;;;;;;;;;25447:1275;;;;:::o;31924:485::-;32026:27;32055:23;32096:38;32137:15;:24;32153:7;32137:24;;;;;;;;;;;32096:65;;32314:18;32291:41;;32371:19;32365:26;32346:45;;32276:126;31924:485;;;:::o;31152:659::-;31301:11;31466:16;31459:5;31455:28;31446:37;;31626:16;31615:9;31611:32;31598:45;;31776:15;31765:9;31762:30;31754:5;31743:9;31740:20;31737:56;31727:66;;31152:659;;;;;:::o;37810:159::-;;;;;:::o;52378:311::-;52513:7;52533:16;15173:3;52559:19;:41;;52533:68;;15173:3;52627:31;52638:4;52644:2;52648:9;52627:10;:31::i;:::-;52619:40;;:62;;52612:69;;;52378:311;;;;;:::o;27270:450::-;27350:14;27518:16;27511:5;27507:28;27498:37;;27695:5;27681:11;27656:23;27652:41;27649:52;27642:5;27639:63;27629:73;;27270:450;;;;:::o;38634:158::-;;;;;:::o;2293:132::-;2368:12;:10;:12::i;:::-;2357:23;;:7;:5;:7::i;:::-;:23;;;2349:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2293:132::o;3395:191::-;3469:16;3488:6;;;;;;;;;;;3469:25;;3514:8;3505:6;;:17;;;;;;;;;;;;;;;;;;3569:8;3538:40;;3559:8;3538:40;;;;;;;;;;;;3458:128;3395:191;:::o;39232:716::-;39395:4;39441:2;39416:45;;;39462:19;:17;:19::i;:::-;39483:4;39489:7;39498:5;39416:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39412:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39716:1;39699:6;:13;:18;39695:235;;39745:40;;;;;;;;;;;;;;39695:235;39888:6;39882:13;39873:6;39869:2;39865:15;39858:38;39412:529;39585:54;;;39575:64;;;:6;:64;;;;39568:71;;;39232:716;;;;;;:::o;27822:324::-;27892:14;28125:1;28115:8;28112:15;28086:24;28082:46;28072:56;;27822:324;;;:::o;52079:147::-;52216:6;52079:147;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:180;6161:77;6158:1;6151:88;6258:4;6255:1;6248:15;6282:4;6279:1;6272:15;6299:281;6382:27;6404:4;6382:27;:::i;:::-;6374:6;6370:40;6512:6;6500:10;6497:22;6476:18;6464:10;6461:34;6458:62;6455:88;;;6523:18;;:::i;:::-;6455:88;6563:10;6559:2;6552:22;6342:238;6299:281;;:::o;6586:129::-;6620:6;6647:20;;:::i;:::-;6637:30;;6676:33;6704:4;6696:6;6676:33;:::i;:::-;6586:129;;;:::o;6721:308::-;6783:4;6873:18;6865:6;6862:30;6859:56;;;6895:18;;:::i;:::-;6859:56;6933:29;6955:6;6933:29;:::i;:::-;6925:37;;7017:4;7011;7007:15;6999:23;;6721:308;;;:::o;7035:146::-;7132:6;7127:3;7122;7109:30;7173:1;7164:6;7159:3;7155:16;7148:27;7035:146;;;:::o;7187:425::-;7265:5;7290:66;7306:49;7348:6;7306:49;:::i;:::-;7290:66;:::i;:::-;7281:75;;7379:6;7372:5;7365:21;7417:4;7410:5;7406:16;7455:3;7446:6;7441:3;7437:16;7434:25;7431:112;;;7462:79;;:::i;:::-;7431:112;7552:54;7599:6;7594:3;7589;7552:54;:::i;:::-;7271:341;7187:425;;;;;:::o;7632:340::-;7688:5;7737:3;7730:4;7722:6;7718:17;7714:27;7704:122;;7745:79;;:::i;:::-;7704:122;7862:6;7849:20;7887:79;7962:3;7954:6;7947:4;7939:6;7935:17;7887:79;:::i;:::-;7878:88;;7694:278;7632:340;;;;:::o;7978:509::-;8047:6;8096:2;8084:9;8075:7;8071:23;8067:32;8064:119;;;8102:79;;:::i;:::-;8064:119;8250:1;8239:9;8235:17;8222:31;8280:18;8272:6;8269:30;8266:117;;;8302:79;;:::i;:::-;8266:117;8407:63;8462:7;8453:6;8442:9;8438:22;8407:63;:::i;:::-;8397:73;;8193:287;7978:509;;;;:::o;8493:329::-;8552:6;8601:2;8589:9;8580:7;8576:23;8572:32;8569:119;;;8607:79;;:::i;:::-;8569:119;8727:1;8752:53;8797:7;8788:6;8777:9;8773:22;8752:53;:::i;:::-;8742:63;;8698:117;8493:329;;;;:::o;8828:116::-;8898:21;8913:5;8898:21;:::i;:::-;8891:5;8888:32;8878:60;;8934:1;8931;8924:12;8878:60;8828:116;:::o;8950:133::-;8993:5;9031:6;9018:20;9009:29;;9047:30;9071:5;9047:30;:::i;:::-;8950:133;;;;:::o;9089:468::-;9154:6;9162;9211:2;9199:9;9190:7;9186:23;9182:32;9179:119;;;9217:79;;:::i;:::-;9179:119;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:50;9532:7;9523:6;9512:9;9508:22;9490:50;:::i;:::-;9480:60;;9435:115;9089:468;;;;;:::o;9563:307::-;9624:4;9714:18;9706:6;9703:30;9700:56;;;9736:18;;:::i;:::-;9700:56;9774:29;9796:6;9774:29;:::i;:::-;9766:37;;9858:4;9852;9848:15;9840:23;;9563:307;;;:::o;9876:423::-;9953:5;9978:65;9994:48;10035:6;9994:48;:::i;:::-;9978:65;:::i;:::-;9969:74;;10066:6;10059:5;10052:21;10104:4;10097:5;10093:16;10142:3;10133:6;10128:3;10124:16;10121:25;10118:112;;;10149:79;;:::i;:::-;10118:112;10239:54;10286:6;10281:3;10276;10239:54;:::i;:::-;9959:340;9876:423;;;;;:::o;10318:338::-;10373:5;10422:3;10415:4;10407:6;10403:17;10399:27;10389:122;;10430:79;;:::i;:::-;10389:122;10547:6;10534:20;10572:78;10646:3;10638:6;10631:4;10623:6;10619:17;10572:78;:::i;:::-;10563:87;;10379:277;10318:338;;;;:::o;10662:943::-;10757:6;10765;10773;10781;10830:3;10818:9;10809:7;10805:23;10801:33;10798:120;;;10837:79;;:::i;:::-;10798:120;10957:1;10982:53;11027:7;11018:6;11007:9;11003:22;10982:53;:::i;:::-;10972:63;;10928:117;11084:2;11110:53;11155:7;11146:6;11135:9;11131:22;11110:53;:::i;:::-;11100:63;;11055:118;11212:2;11238:53;11283:7;11274:6;11263:9;11259:22;11238:53;:::i;:::-;11228:63;;11183:118;11368:2;11357:9;11353:18;11340:32;11399:18;11391:6;11388:30;11385:117;;;11421:79;;:::i;:::-;11385:117;11526:62;11580:7;11571:6;11560:9;11556:22;11526:62;:::i;:::-;11516:72;;11311:287;10662:943;;;;;;;:::o;11611:474::-;11679:6;11687;11736:2;11724:9;11715:7;11711:23;11707:32;11704:119;;;11742:79;;:::i;:::-;11704:119;11862:1;11887:53;11932:7;11923:6;11912:9;11908:22;11887:53;:::i;:::-;11877:63;;11833:117;11989:2;12015:53;12060:7;12051:6;12040:9;12036:22;12015:53;:::i;:::-;12005:63;;11960:118;11611:474;;;;;:::o;12091:180::-;12139:77;12136:1;12129:88;12236:4;12233:1;12226:15;12260:4;12257:1;12250:15;12277:320;12321:6;12358:1;12352:4;12348:12;12338:22;;12405:1;12399:4;12395:12;12426:18;12416:81;;12482:4;12474:6;12470:17;12460:27;;12416:81;12544:2;12536:6;12533:14;12513:18;12510:38;12507:84;;12563:18;;:::i;:::-;12507:84;12328:269;12277:320;;;:::o;12603:224::-;12743:34;12739:1;12731:6;12727:14;12720:58;12812:7;12807:2;12799:6;12795:15;12788:32;12603:224;:::o;12833:366::-;12975:3;12996:67;13060:2;13055:3;12996:67;:::i;:::-;12989:74;;13072:93;13161:3;13072:93;:::i;:::-;13190:2;13185:3;13181:12;13174:19;;12833:366;;;:::o;13205:419::-;13371:4;13409:2;13398:9;13394:18;13386:26;;13458:9;13452:4;13448:20;13444:1;13433:9;13429:17;13422:47;13486:131;13612:4;13486:131;:::i;:::-;13478:139;;13205:419;;;:::o;13630:235::-;13770:34;13766:1;13758:6;13754:14;13747:58;13839:18;13834:2;13826:6;13822:15;13815:43;13630:235;:::o;13871:366::-;14013:3;14034:67;14098:2;14093:3;14034:67;:::i;:::-;14027:74;;14110:93;14199:3;14110:93;:::i;:::-;14228:2;14223:3;14219:12;14212:19;;13871:366;;;:::o;14243:419::-;14409:4;14447:2;14436:9;14432:18;14424:26;;14496:9;14490:4;14486:20;14482:1;14471:9;14467:17;14460:47;14524:131;14650:4;14524:131;:::i;:::-;14516:139;;14243:419;;;:::o;14668:180::-;14716:77;14713:1;14706:88;14813:4;14810:1;14803:15;14837:4;14834:1;14827:15;14854:191;14894:3;14913:20;14931:1;14913:20;:::i;:::-;14908:25;;14947:20;14965:1;14947:20;:::i;:::-;14942:25;;14990:1;14987;14983:9;14976:16;;15011:3;15008:1;15005:10;15002:36;;;15018:18;;:::i;:::-;15002:36;14854:191;;;;:::o;15051:178::-;15191:30;15187:1;15179:6;15175:14;15168:54;15051:178;:::o;15235:366::-;15377:3;15398:67;15462:2;15457:3;15398:67;:::i;:::-;15391:74;;15474:93;15563:3;15474:93;:::i;:::-;15592:2;15587:3;15583:12;15576:19;;15235:366;;;:::o;15607:419::-;15773:4;15811:2;15800:9;15796:18;15788:26;;15860:9;15854:4;15850:20;15846:1;15835:9;15831:17;15824:47;15888:131;16014:4;15888:131;:::i;:::-;15880:139;;15607:419;;;:::o;16032:141::-;16081:4;16104:3;16096:11;;16127:3;16124:1;16117:14;16161:4;16158:1;16148:18;16140:26;;16032:141;;;:::o;16179:93::-;16216:6;16263:2;16258;16251:5;16247:14;16243:23;16233:33;;16179:93;;;:::o;16278:107::-;16322:8;16372:5;16366:4;16362:16;16341:37;;16278:107;;;;:::o;16391:393::-;16460:6;16510:1;16498:10;16494:18;16533:97;16563:66;16552:9;16533:97;:::i;:::-;16651:39;16681:8;16670:9;16651:39;:::i;:::-;16639:51;;16723:4;16719:9;16712:5;16708:21;16699:30;;16772:4;16762:8;16758:19;16751:5;16748:30;16738:40;;16467:317;;16391:393;;;;;:::o;16790:60::-;16818:3;16839:5;16832:12;;16790:60;;;:::o;16856:142::-;16906:9;16939:53;16957:34;16966:24;16984:5;16966:24;:::i;:::-;16957:34;:::i;:::-;16939:53;:::i;:::-;16926:66;;16856:142;;;:::o;17004:75::-;17047:3;17068:5;17061:12;;17004:75;;;:::o;17085:269::-;17195:39;17226:7;17195:39;:::i;:::-;17256:91;17305:41;17329:16;17305:41;:::i;:::-;17297:6;17290:4;17284:11;17256:91;:::i;:::-;17250:4;17243:105;17161:193;17085:269;;;:::o;17360:73::-;17405:3;17360:73;:::o;17439:189::-;17516:32;;:::i;:::-;17557:65;17615:6;17607;17601:4;17557:65;:::i;:::-;17492:136;17439:189;;:::o;17634:186::-;17694:120;17711:3;17704:5;17701:14;17694:120;;;17765:39;17802:1;17795:5;17765:39;:::i;:::-;17738:1;17731:5;17727:13;17718:22;;17694:120;;;17634:186;;:::o;17826:543::-;17927:2;17922:3;17919:11;17916:446;;;17961:38;17993:5;17961:38;:::i;:::-;18045:29;18063:10;18045:29;:::i;:::-;18035:8;18031:44;18228:2;18216:10;18213:18;18210:49;;;18249:8;18234:23;;18210:49;18272:80;18328:22;18346:3;18328:22;:::i;:::-;18318:8;18314:37;18301:11;18272:80;:::i;:::-;17931:431;;17916:446;17826:543;;;:::o;18375:117::-;18429:8;18479:5;18473:4;18469:16;18448:37;;18375:117;;;;:::o;18498:169::-;18542:6;18575:51;18623:1;18619:6;18611:5;18608:1;18604:13;18575:51;:::i;:::-;18571:56;18656:4;18650;18646:15;18636:25;;18549:118;18498:169;;;;:::o;18672:295::-;18748:4;18894:29;18919:3;18913:4;18894:29;:::i;:::-;18886:37;;18956:3;18953:1;18949:11;18943:4;18940:21;18932:29;;18672:295;;;;:::o;18972:1395::-;19089:37;19122:3;19089:37;:::i;:::-;19191:18;19183:6;19180:30;19177:56;;;19213:18;;:::i;:::-;19177:56;19257:38;19289:4;19283:11;19257:38;:::i;:::-;19342:67;19402:6;19394;19388:4;19342:67;:::i;:::-;19436:1;19460:4;19447:17;;19492:2;19484:6;19481:14;19509:1;19504:618;;;;20166:1;20183:6;20180:77;;;20232:9;20227:3;20223:19;20217:26;20208:35;;20180:77;20283:67;20343:6;20336:5;20283:67;:::i;:::-;20277:4;20270:81;20139:222;19474:887;;19504:618;19556:4;19552:9;19544:6;19540:22;19590:37;19622:4;19590:37;:::i;:::-;19649:1;19663:208;19677:7;19674:1;19671:14;19663:208;;;19756:9;19751:3;19747:19;19741:26;19733:6;19726:42;19807:1;19799:6;19795:14;19785:24;;19854:2;19843:9;19839:18;19826:31;;19700:4;19697:1;19693:12;19688:17;;19663:208;;;19899:6;19890:7;19887:19;19884:179;;;19957:9;19952:3;19948:19;19942:26;20000:48;20042:4;20034:6;20030:17;20019:9;20000:48;:::i;:::-;19992:6;19985:64;19907:156;19884:179;20109:1;20105;20097:6;20093:14;20089:22;20083:4;20076:36;19511:611;;;19474:887;;19064:1303;;;18972:1395;;:::o;20373:221::-;20513:34;20509:1;20501:6;20497:14;20490:58;20582:4;20577:2;20569:6;20565:15;20558:29;20373:221;:::o;20600:366::-;20742:3;20763:67;20827:2;20822:3;20763:67;:::i;:::-;20756:74;;20839:93;20928:3;20839:93;:::i;:::-;20957:2;20952:3;20948:12;20941:19;;20600:366;;;:::o;20972:419::-;21138:4;21176:2;21165:9;21161:18;21153:26;;21225:9;21219:4;21215:20;21211:1;21200:9;21196:17;21189:47;21253:131;21379:4;21253:131;:::i;:::-;21245:139;;20972:419;;;:::o;21397:234::-;21537:34;21533:1;21525:6;21521:14;21514:58;21606:17;21601:2;21593:6;21589:15;21582:42;21397:234;:::o;21637:366::-;21779:3;21800:67;21864:2;21859:3;21800:67;:::i;:::-;21793:74;;21876:93;21965:3;21876:93;:::i;:::-;21994:2;21989:3;21985:12;21978:19;;21637:366;;;:::o;22009:419::-;22175:4;22213:2;22202:9;22198:18;22190:26;;22262:9;22256:4;22252:20;22248:1;22237:9;22233:17;22226:47;22290:131;22416:4;22290:131;:::i;:::-;22282:139;;22009:419;;;:::o;22434:225::-;22574:34;22570:1;22562:6;22558:14;22551:58;22643:8;22638:2;22630:6;22626:15;22619:33;22434:225;:::o;22665:366::-;22807:3;22828:67;22892:2;22887:3;22828:67;:::i;:::-;22821:74;;22904:93;22993:3;22904:93;:::i;:::-;23022:2;23017:3;23013:12;23006:19;;22665:366;;;:::o;23037:419::-;23203:4;23241:2;23230:9;23226:18;23218:26;;23290:9;23284:4;23280:20;23276:1;23265:9;23261:17;23254:47;23318:131;23444:4;23318:131;:::i;:::-;23310:139;;23037:419;;;:::o;23462:182::-;23602:34;23598:1;23590:6;23586:14;23579:58;23462:182;:::o;23650:366::-;23792:3;23813:67;23877:2;23872:3;23813:67;:::i;:::-;23806:74;;23889:93;23978:3;23889:93;:::i;:::-;24007:2;24002:3;23998:12;23991:19;;23650:366;;;:::o;24022:419::-;24188:4;24226:2;24215:9;24211:18;24203:26;;24275:9;24269:4;24265:20;24261:1;24250:9;24246:17;24239:47;24303:131;24429:4;24303:131;:::i;:::-;24295:139;;24022:419;;;:::o;24447:98::-;24498:6;24532:5;24526:12;24516:22;;24447:98;;;:::o;24551:168::-;24634:11;24668:6;24663:3;24656:19;24708:4;24703:3;24699:14;24684:29;;24551:168;;;;:::o;24725:373::-;24811:3;24839:38;24871:5;24839:38;:::i;:::-;24893:70;24956:6;24951:3;24893:70;:::i;:::-;24886:77;;24972:65;25030:6;25025:3;25018:4;25011:5;25007:16;24972:65;:::i;:::-;25062:29;25084:6;25062:29;:::i;:::-;25057:3;25053:39;25046:46;;24815:283;24725:373;;;;:::o;25104:640::-;25299:4;25337:3;25326:9;25322:19;25314:27;;25351:71;25419:1;25408:9;25404:17;25395:6;25351:71;:::i;:::-;25432:72;25500:2;25489:9;25485:18;25476:6;25432:72;:::i;:::-;25514;25582:2;25571:9;25567:18;25558:6;25514:72;:::i;:::-;25633:9;25627:4;25623:20;25618:2;25607:9;25603:18;25596:48;25661:76;25732:4;25723:6;25661:76;:::i;:::-;25653:84;;25104:640;;;;;;;:::o;25750:141::-;25806:5;25837:6;25831:13;25822:22;;25853:32;25879:5;25853:32;:::i;:::-;25750:141;;;;:::o;25897:349::-;25966:6;26015:2;26003:9;25994:7;25990:23;25986:32;25983:119;;;26021:79;;:::i;:::-;25983:119;26141:1;26166:63;26221:7;26212:6;26201:9;26197:22;26166:63;:::i;:::-;26156:73;;26112:127;25897:349;;;;:::o

Swarm Source

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