ETH Price: $3,116.45 (+1.87%)
Gas: 2 Gwei

Token

WindowsXD (WXD)
 

Overview

Max Total Supply

1,000 WXD

Holders

258

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 WXD
0x9b2bda320a26f273d7ec4e4548acce4a67de5e76
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:
WindowsXD

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-02
*/

// SPDX-License-Identifier: MIT
// 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 v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * Returns the auxillary 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 auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @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.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

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

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

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

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

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

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

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

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

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

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

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

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

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

// File: contracts/WindowsXD.sol


pragma solidity ^0.8.4;



contract WindowsXD is ERC721A, Ownable {
    uint256 public maxPerWallet = 2;
    uint256 public maxSupply = 1000;
    uint256 public freeSupply = 300;
    uint256 public price = 0.003 ether;
    bool public isPaused = true;
    bool public isPublicSale = false;

    mapping(address => uint8) private whiteList;
    mapping(address => uint8) private whiteListMinted;

    string public baseURI = "ipfs://QmWKKo8sBRCTozVq6Ls7VWKZTeAhGjUYgqtpqynGtiBLqA/";

    constructor() ERC721A("WindowsXD", "WXD") {}

    function mintWhitelist(uint8 quantity) external payable {
        require(!isPaused, "Sales are off");
        require(quantity + _numberMinted(msg.sender) <= maxPerWallet, "Exceeded the wallet limit");
        require(totalSupply() + quantity <= maxSupply, "Not enough tokens left");
        require(quantity <= whiteList[msg.sender], "Exceeded max available to purchase in WL.");
        
        //first 'freeSupply' is free, then paid
        // require(
        //     msg.value >= getPrice(quantity),
        //     "Insufficient Fund."
        // );
        whiteList[msg.sender] -= quantity; //tracking minted
        whiteListMinted[msg.sender] += quantity;
        _safeMint(msg.sender, quantity);
    }

    function mint(uint256 quantity) external payable {
        require(!isPaused, "Sales are off");
        require(isPublicSale, "Public Sale is not open yet");
        
        //this way WL can mint again
        require(quantity + _numberMinted(msg.sender) - whiteListMinted[msg.sender] <= maxPerWallet, "Exceeded the wallet limit");
        
        require(totalSupply() + quantity <= maxSupply, "Not enough tokens left");

        //first 'freeSupply' is free, then paid
        require(
            msg.value >= getPrice(quantity),
            "Insufficient Fund."
        );

        _safeMint(msg.sender, quantity);
    }

    function setFreeAllowList(address[] calldata addresses, uint8 numAllowedToMint) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            whiteList[addresses[i]] = numAllowedToMint;
        }
    }

    function getPrice(uint256 _count) internal view returns (uint256) {
        
        require(_count > 0, "Must be minting at least 1 token.");
        
        uint256 endingTokenId = _totalMinted() + _count;
        // If qty to mint results in a final token ID less than or equal to the cap then
        // the entire qty is within free mint.
        if(endingTokenId  <= freeSupply) {
            return 0;
        }
        
        uint256 outsideIncentiveCount = endingTokenId - freeSupply;

        return 0 + price * outsideIncentiveCount;
  }

    function setPause(bool value) external onlyOwner {
		  isPaused = value;
	  }

    function setPublic(bool value) external onlyOwner {
		  isPublicSale = value;
	  }

    // ERC721A overrides
    // ERC721A starts counting tokenIds from 0, this contract starts from 1
    function _startTokenId() internal pure override returns (uint256) {
        return 1;
    }

    function withdraw() external onlyOwner {
		uint balance = address(this).balance;
		require(balance > 0, "Nothing to Withdraw");
        payable(owner()).transfer(balance);
    }

    function withdrawTo(address to) external onlyOwner {
		uint balance = address(this).balance;
		require(balance > 0, "Nothing to Withdraw");
        payable(to).transfer(balance);
    }

    function setBaseURI(string memory newuri) external onlyOwner {
        baseURI = newuri;
    }

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

    function setPrice(uint256 _price) public onlyOwner {
        price = _price;
    }

    function setMaxPerWalleet(uint256 _maxPerWallet) public onlyOwner {
        maxPerWallet = _maxPerWallet;
    }

    function setFreeSupply(uint256 _freeSupply) public onlyOwner {
        freeSupply = _freeSupply;
    }

    function devMint(uint256 quantity) external onlyOwner {
        require(totalSupply() + quantity <= maxSupply, "Max supply exceeded!");
        _safeMint(msg.sender, quantity);
    }

    function cutSupply(uint256 _maxSupply) external onlyOwner {
		require(_maxSupply < maxSupply , "badumm no ruggie scammiee");
        maxSupply = _maxSupply;
	}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"cutSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"quantity","type":"uint8"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint8","name":"numAllowedToMint","type":"uint8"}],"name":"setFreeAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeSupply","type":"uint256"}],"name":"setFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"}],"name":"setMaxPerWalleet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"withdrawTo","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60026009556103e8600a5561012c600b55660aa87bee538000600c55600d805461ffff1916600117905560e060405260366080818152906200232460a039805162000053916010916020909101906200012f565b503480156200006157600080fd5b50604080518082018252600981526815da5b991bdddcd61160ba1b60208083019182528351808501909452600384526215d61160ea1b908401528151919291620000ae916002916200012f565b508051620000c49060039060208401906200012f565b5050600160005550620000d733620000dd565b62000212565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013d90620001d5565b90600052602060002090601f016020900481019282620001615760008555620001ac565b82601f106200017c57805160ff1916838001178555620001ac565b82800160010185558215620001ac579182015b82811115620001ac5782518255916020019190600101906200018f565b50620001ba929150620001be565b5090565b5b80821115620001ba5760008155600101620001bf565b600181811c90821680620001ea57607f821691505b602082108114156200020c57634e487b7160e01b600052602260045260246000fd5b50919050565b61210280620002226000396000f3fe60806040526004361061021a5760003560e01c806372b0d90c11610123578063b88d4fde116100ab578063f064ef981161006f578063f064ef981461060e578063f1b0287a1461062e578063f2fde38b1461064e578063f4c445691461066e578063f676308a1461068e57600080fd5b8063b88d4fde1461054f578063bedb86fb1461056f578063c87b56dd1461058f578063d5abeb01146105af578063e985e9c5146105c557600080fd5b8063a035b1fe116100f2578063a035b1fe146104cd578063a0712d68146104e3578063a22cb465146104f6578063a5a865dc14610516578063b187bd261461053557600080fd5b806372b0d90c1461045a5780638da5cb5b1461047a57806391b7f5ed1461049857806395d89b41146104b857600080fd5b80633ccfd60b116101a65780635cbcec4e116101755780635cbcec4e146103d05780636352211e146103f05780636c0360eb1461041057806370a0823114610425578063715018a61461044557600080fd5b80633ccfd60b1461036557806342842e0e1461037a578063453c23101461039a57806355f804b3146103b057600080fd5b806318160ddd116101ed57806318160ddd146102d057806323b872dd146102fc57806324a6ab0c1461031c57806324ec277c14610332578063375a069a1461034557600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611dc5565b6106ae565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b50610269610700565b60405161024b9190611f14565b34801561028257600080fd5b50610296610291366004611e48565b610792565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c9366004611cfc565b6107d6565b005b3480156102dc57600080fd5b506102ee600154600054036000190190565b60405190815260200161024b565b34801561030857600080fd5b506102ce610317366004611c1a565b6108a9565b34801561032857600080fd5b506102ee600b5481565b6102ce610340366004611e61565b6108b9565b34801561035157600080fd5b506102ce610360366004611e48565b610adf565b34801561037157600080fd5b506102ce610b77565b34801561038657600080fd5b506102ce610395366004611c1a565b610c23565b3480156103a657600080fd5b506102ee60095481565b3480156103bc57600080fd5b506102ce6103cb366004611dff565b610c3e565b3480156103dc57600080fd5b506102ce6103eb366004611daa565b610c7b565b3480156103fc57600080fd5b5061029661040b366004611e48565b610cbf565b34801561041c57600080fd5b50610269610cca565b34801561043157600080fd5b506102ee610440366004611bcc565b610d58565b34801561045157600080fd5b506102ce610da7565b34801561046657600080fd5b506102ce610475366004611bcc565b610ddd565b34801561048657600080fd5b506008546001600160a01b0316610296565b3480156104a457600080fd5b506102ce6104b3366004611e48565b610e81565b3480156104c457600080fd5b50610269610eb0565b3480156104d957600080fd5b506102ee600c5481565b6102ce6104f1366004611e48565b610ebf565b34801561050257600080fd5b506102ce610511366004611cd2565b61109b565b34801561052257600080fd5b50600d5461023f90610100900460ff1681565b34801561054157600080fd5b50600d5461023f9060ff1681565b34801561055b57600080fd5b506102ce61056a366004611c56565b611131565b34801561057b57600080fd5b506102ce61058a366004611daa565b61117b565b34801561059b57600080fd5b506102696105aa366004611e48565b6111b8565b3480156105bb57600080fd5b506102ee600a5481565b3480156105d157600080fd5b5061023f6105e0366004611be7565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561061a57600080fd5b506102ce610629366004611d26565b61123d565b34801561063a57600080fd5b506102ce610649366004611e48565b6112db565b34801561065a57600080fd5b506102ce610669366004611bcc565b61130a565b34801561067a57600080fd5b506102ce610689366004611e48565b6113a2565b34801561069a57600080fd5b506102ce6106a9366004611e48565b611422565b60006301ffc9a760e01b6001600160e01b0319831614806106df57506380ac58cd60e01b6001600160e01b03198316145b806106fa5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461070f9061201e565b80601f016020809104026020016040519081016040528092919081815260200182805461073b9061201e565b80156107885780601f1061075d57610100808354040283529160200191610788565b820191906000526020600020905b81548152906001019060200180831161076b57829003601f168201915b5050505050905090565b600061079d82611451565b6107ba576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107e182611486565b9050806001600160a01b0316836001600160a01b031614156108165760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461084d5761083081336105e0565b61084d576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108b48383836114ef565b505050565b600d5460ff16156109015760405162461bcd60e51b815260206004820152600d60248201526c29b0b632b99030b9329037b33360991b60448201526064015b60405180910390fd5b60095433600090815260056020526040908190205461092e911c67ffffffffffffffff1660ff8416611f5c565b11156109785760405162461bcd60e51b8152602060048201526019602482015278115e18d959591959081d1a19481dd85b1b195d081b1a5b5a5d603a1b60448201526064016108f8565b600a548160ff16610990600154600054036000190190565b61099a9190611f5c565b11156109e15760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016108f8565b336000908152600e602052604090205460ff9081169082161115610a595760405162461bcd60e51b815260206004820152602960248201527f4578636565646564206d617820617661696c61626c6520746f2070757263686160448201526839b29034b7102ba61760b91b60648201526084016108f8565b336000908152600e602052604081208054839290610a7b90849060ff16611fcf565b82546101009290920a60ff818102199093169183160217909155336000908152600f6020526040812080548594509092610ab791859116611f74565b92506101000a81548160ff021916908360ff160217905550610adc338260ff16611692565b50565b6008546001600160a01b03163314610b095760405162461bcd60e51b81526004016108f890611f27565b600a5481610b1e600154600054036000190190565b610b289190611f5c565b1115610b6d5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016108f8565b610adc3382611692565b6008546001600160a01b03163314610ba15760405162461bcd60e51b81526004016108f890611f27565b4780610be55760405162461bcd60e51b81526020600482015260136024820152724e6f7468696e6720746f20576974686472617760681b60448201526064016108f8565b6008546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610c1f573d6000803e3d6000fd5b5050565b6108b483838360405180602001604052806000815250611131565b6008546001600160a01b03163314610c685760405162461bcd60e51b81526004016108f890611f27565b8051610c1f906010906020840190611a80565b6008546001600160a01b03163314610ca55760405162461bcd60e51b81526004016108f890611f27565b600d80549115156101000261ff0019909216919091179055565b60006106fa82611486565b60108054610cd79061201e565b80601f0160208091040260200160405190810160405280929190818152602001828054610d039061201e565b8015610d505780601f10610d2557610100808354040283529160200191610d50565b820191906000526020600020905b815481529060010190602001808311610d3357829003601f168201915b505050505081565b60006001600160a01b038216610d81576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610dd15760405162461bcd60e51b81526004016108f890611f27565b610ddb60006116ac565b565b6008546001600160a01b03163314610e075760405162461bcd60e51b81526004016108f890611f27565b4780610e4b5760405162461bcd60e51b81526020600482015260136024820152724e6f7468696e6720746f20576974686472617760681b60448201526064016108f8565b6040516001600160a01b0383169082156108fc029083906000818181858888f193505050501580156108b4573d6000803e3d6000fd5b6008546001600160a01b03163314610eab5760405162461bcd60e51b81526004016108f890611f27565b600c55565b60606003805461070f9061201e565b600d5460ff1615610f025760405162461bcd60e51b815260206004820152600d60248201526c29b0b632b99030b9329037b33360991b60448201526064016108f8565b600d54610100900460ff16610f595760405162461bcd60e51b815260206004820152601b60248201527f5075626c69632053616c65206973206e6f74206f70656e20796574000000000060448201526064016108f8565b600954336000908152600f60209081526040808320546005909252918290205460ff909116911c67ffffffffffffffff16610f949084611f5c565b610f9e9190611fb8565b1115610fe85760405162461bcd60e51b8152602060048201526019602482015278115e18d959591959081d1a19481dd85b1b195d081b1a5b5a5d603a1b60448201526064016108f8565b600a5481610ffd600154600054036000190190565b6110079190611f5c565b111561104e5760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016108f8565b611057816116fe565b341015610b6d5760405162461bcd60e51b815260206004820152601260248201527124b739bab33334b1b4b2b73a10233ab7321760711b60448201526064016108f8565b6001600160a01b0382163314156110c55760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61113c8484846114ef565b6001600160a01b0383163b1561117557611158848484846117ba565b611175576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146111a55760405162461bcd60e51b81526004016108f890611f27565b600d805460ff1916911515919091179055565b60606111c382611451565b6111e057604051630a14c4b560e41b815260040160405180910390fd5b60006111ea6118b1565b905080516000141561120b5760405180602001604052806000815250611236565b80611215846118c0565b604051602001611226929190611ea8565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146112675760405162461bcd60e51b81526004016108f890611f27565b60005b828110156111755781600e60008686858181106112895761128961208a565b905060200201602081019061129e9190611bcc565b6001600160a01b031681526020810191909152604001600020805460ff191660ff92909216919091179055806112d381612059565b91505061126a565b6008546001600160a01b031633146113055760405162461bcd60e51b81526004016108f890611f27565b600955565b6008546001600160a01b031633146113345760405162461bcd60e51b81526004016108f890611f27565b6001600160a01b0381166113995760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108f8565b610adc816116ac565b6008546001600160a01b031633146113cc5760405162461bcd60e51b81526004016108f890611f27565b600a54811061141d5760405162461bcd60e51b815260206004820152601960248201527f626164756d6d206e6f20727567676965207363616d6d6965650000000000000060448201526064016108f8565b600a55565b6008546001600160a01b0316331461144c5760405162461bcd60e51b81526004016108f890611f27565b600b55565b600081600111158015611465575060005482105b80156106fa575050600090815260046020526040902054600160e01b161590565b600081806001116114d6576000548110156114d657600081815260046020526040902054600160e01b81166114d4575b806112365750600019016000818152600460205260409020546114b6565b505b604051636f96cda160e11b815260040160405180910390fd5b60006114fa82611486565b9050836001600160a01b0316816001600160a01b03161461152d5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061154b575061154b85336105e0565b8061156657503361155b84610792565b6001600160a01b0316145b90508061158657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166115ad57604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b86178117909155821661164a57600183016000818152600460205260409020546116485760005481146116485760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b610c1f82826040518060200160405280600081525061190f565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008082116117595760405162461bcd60e51b815260206004820152602160248201527f4d757374206265206d696e74696e67206174206c65617374203120746f6b656e6044820152601760f91b60648201526084016108f8565b6000826117696000546000190190565b6117739190611f5c565b9050600b5481116117875750600092915050565b6000600b54826117979190611fb8565b905080600c546117a79190611f99565b6117b2906000611f5c565b949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906117ef903390899088908890600401611ed7565b602060405180830381600087803b15801561180957600080fd5b505af1925050508015611839575060408051601f3d908101601f1916820190925261183691810190611de2565b60015b611894573d808015611867576040519150601f19603f3d011682016040523d82523d6000602084013e61186c565b606091505b50805161188c576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60606010805461070f9061201e565b604080516080810191829052607f0190826030600a8206018353600a90045b80156118fd57600183039250600a81066030018353600a90046118df565b50819003601f19909101908152919050565b6000546001600160a01b03841661193857604051622e076360e81b815260040160405180910390fd5b826119565760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611a2b575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46119f460008784806001019550876117ba565b611a11576040516368d2bf6b60e11b815260040160405180910390fd5b8082106119a9578260005414611a2657600080fd5b611a70565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611a2c575b5060009081556111759085838684565b828054611a8c9061201e565b90600052602060002090601f016020900481019282611aae5760008555611af4565b82601f10611ac757805160ff1916838001178555611af4565b82800160010185558215611af4579182015b82811115611af4578251825591602001919060010190611ad9565b50611b00929150611b04565b5090565b5b80821115611b005760008155600101611b05565b600067ffffffffffffffff80841115611b3457611b346120a0565b604051601f8501601f19908116603f01168101908282118183101715611b5c57611b5c6120a0565b81604052809350858152868686011115611b7557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611ba657600080fd5b919050565b80358015158114611ba657600080fd5b803560ff81168114611ba657600080fd5b600060208284031215611bde57600080fd5b61123682611b8f565b60008060408385031215611bfa57600080fd5b611c0383611b8f565b9150611c1160208401611b8f565b90509250929050565b600080600060608486031215611c2f57600080fd5b611c3884611b8f565b9250611c4660208501611b8f565b9150604084013590509250925092565b60008060008060808587031215611c6c57600080fd5b611c7585611b8f565b9350611c8360208601611b8f565b925060408501359150606085013567ffffffffffffffff811115611ca657600080fd5b8501601f81018713611cb757600080fd5b611cc687823560208401611b19565b91505092959194509250565b60008060408385031215611ce557600080fd5b611cee83611b8f565b9150611c1160208401611bab565b60008060408385031215611d0f57600080fd5b611d1883611b8f565b946020939093013593505050565b600080600060408486031215611d3b57600080fd5b833567ffffffffffffffff80821115611d5357600080fd5b818601915086601f830112611d6757600080fd5b813581811115611d7657600080fd5b8760208260051b8501011115611d8b57600080fd5b602092830195509350611da19186019050611bbb565b90509250925092565b600060208284031215611dbc57600080fd5b61123682611bab565b600060208284031215611dd757600080fd5b8135611236816120b6565b600060208284031215611df457600080fd5b8151611236816120b6565b600060208284031215611e1157600080fd5b813567ffffffffffffffff811115611e2857600080fd5b8201601f81018413611e3957600080fd5b6117b284823560208401611b19565b600060208284031215611e5a57600080fd5b5035919050565b600060208284031215611e7357600080fd5b61123682611bbb565b60008151808452611e94816020860160208601611ff2565b601f01601f19169290920160200192915050565b60008351611eba818460208801611ff2565b835190830190611ece818360208801611ff2565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f0a90830184611e7c565b9695505050505050565b6020815260006112366020830184611e7c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611f6f57611f6f612074565b500190565b600060ff821660ff84168060ff03821115611f9157611f91612074565b019392505050565b6000816000190483118215151615611fb357611fb3612074565b500290565b600082821015611fca57611fca612074565b500390565b600060ff821660ff841680821015611fe957611fe9612074565b90039392505050565b60005b8381101561200d578181015183820152602001611ff5565b838111156111755750506000910152565b600181811c9082168061203257607f821691505b6020821081141561205357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561206d5761206d612074565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610adc57600080fdfea2646970667358221220cb609fe017c4efaed4cae73336e9c00b01ecd0b0e3ec00632e2cec0678724f6f64736f6c63430008070033697066733a2f2f516d574b4b6f3873425243546f7a5671364c733756574b5a54654168476a55596771747071796e477469424c71412f

Deployed Bytecode

0x60806040526004361061021a5760003560e01c806372b0d90c11610123578063b88d4fde116100ab578063f064ef981161006f578063f064ef981461060e578063f1b0287a1461062e578063f2fde38b1461064e578063f4c445691461066e578063f676308a1461068e57600080fd5b8063b88d4fde1461054f578063bedb86fb1461056f578063c87b56dd1461058f578063d5abeb01146105af578063e985e9c5146105c557600080fd5b8063a035b1fe116100f2578063a035b1fe146104cd578063a0712d68146104e3578063a22cb465146104f6578063a5a865dc14610516578063b187bd261461053557600080fd5b806372b0d90c1461045a5780638da5cb5b1461047a57806391b7f5ed1461049857806395d89b41146104b857600080fd5b80633ccfd60b116101a65780635cbcec4e116101755780635cbcec4e146103d05780636352211e146103f05780636c0360eb1461041057806370a0823114610425578063715018a61461044557600080fd5b80633ccfd60b1461036557806342842e0e1461037a578063453c23101461039a57806355f804b3146103b057600080fd5b806318160ddd116101ed57806318160ddd146102d057806323b872dd146102fc57806324a6ab0c1461031c57806324ec277c14610332578063375a069a1461034557600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611dc5565b6106ae565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b50610269610700565b60405161024b9190611f14565b34801561028257600080fd5b50610296610291366004611e48565b610792565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c9366004611cfc565b6107d6565b005b3480156102dc57600080fd5b506102ee600154600054036000190190565b60405190815260200161024b565b34801561030857600080fd5b506102ce610317366004611c1a565b6108a9565b34801561032857600080fd5b506102ee600b5481565b6102ce610340366004611e61565b6108b9565b34801561035157600080fd5b506102ce610360366004611e48565b610adf565b34801561037157600080fd5b506102ce610b77565b34801561038657600080fd5b506102ce610395366004611c1a565b610c23565b3480156103a657600080fd5b506102ee60095481565b3480156103bc57600080fd5b506102ce6103cb366004611dff565b610c3e565b3480156103dc57600080fd5b506102ce6103eb366004611daa565b610c7b565b3480156103fc57600080fd5b5061029661040b366004611e48565b610cbf565b34801561041c57600080fd5b50610269610cca565b34801561043157600080fd5b506102ee610440366004611bcc565b610d58565b34801561045157600080fd5b506102ce610da7565b34801561046657600080fd5b506102ce610475366004611bcc565b610ddd565b34801561048657600080fd5b506008546001600160a01b0316610296565b3480156104a457600080fd5b506102ce6104b3366004611e48565b610e81565b3480156104c457600080fd5b50610269610eb0565b3480156104d957600080fd5b506102ee600c5481565b6102ce6104f1366004611e48565b610ebf565b34801561050257600080fd5b506102ce610511366004611cd2565b61109b565b34801561052257600080fd5b50600d5461023f90610100900460ff1681565b34801561054157600080fd5b50600d5461023f9060ff1681565b34801561055b57600080fd5b506102ce61056a366004611c56565b611131565b34801561057b57600080fd5b506102ce61058a366004611daa565b61117b565b34801561059b57600080fd5b506102696105aa366004611e48565b6111b8565b3480156105bb57600080fd5b506102ee600a5481565b3480156105d157600080fd5b5061023f6105e0366004611be7565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561061a57600080fd5b506102ce610629366004611d26565b61123d565b34801561063a57600080fd5b506102ce610649366004611e48565b6112db565b34801561065a57600080fd5b506102ce610669366004611bcc565b61130a565b34801561067a57600080fd5b506102ce610689366004611e48565b6113a2565b34801561069a57600080fd5b506102ce6106a9366004611e48565b611422565b60006301ffc9a760e01b6001600160e01b0319831614806106df57506380ac58cd60e01b6001600160e01b03198316145b806106fa5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461070f9061201e565b80601f016020809104026020016040519081016040528092919081815260200182805461073b9061201e565b80156107885780601f1061075d57610100808354040283529160200191610788565b820191906000526020600020905b81548152906001019060200180831161076b57829003601f168201915b5050505050905090565b600061079d82611451565b6107ba576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107e182611486565b9050806001600160a01b0316836001600160a01b031614156108165760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461084d5761083081336105e0565b61084d576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108b48383836114ef565b505050565b600d5460ff16156109015760405162461bcd60e51b815260206004820152600d60248201526c29b0b632b99030b9329037b33360991b60448201526064015b60405180910390fd5b60095433600090815260056020526040908190205461092e911c67ffffffffffffffff1660ff8416611f5c565b11156109785760405162461bcd60e51b8152602060048201526019602482015278115e18d959591959081d1a19481dd85b1b195d081b1a5b5a5d603a1b60448201526064016108f8565b600a548160ff16610990600154600054036000190190565b61099a9190611f5c565b11156109e15760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016108f8565b336000908152600e602052604090205460ff9081169082161115610a595760405162461bcd60e51b815260206004820152602960248201527f4578636565646564206d617820617661696c61626c6520746f2070757263686160448201526839b29034b7102ba61760b91b60648201526084016108f8565b336000908152600e602052604081208054839290610a7b90849060ff16611fcf565b82546101009290920a60ff818102199093169183160217909155336000908152600f6020526040812080548594509092610ab791859116611f74565b92506101000a81548160ff021916908360ff160217905550610adc338260ff16611692565b50565b6008546001600160a01b03163314610b095760405162461bcd60e51b81526004016108f890611f27565b600a5481610b1e600154600054036000190190565b610b289190611f5c565b1115610b6d5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016108f8565b610adc3382611692565b6008546001600160a01b03163314610ba15760405162461bcd60e51b81526004016108f890611f27565b4780610be55760405162461bcd60e51b81526020600482015260136024820152724e6f7468696e6720746f20576974686472617760681b60448201526064016108f8565b6008546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610c1f573d6000803e3d6000fd5b5050565b6108b483838360405180602001604052806000815250611131565b6008546001600160a01b03163314610c685760405162461bcd60e51b81526004016108f890611f27565b8051610c1f906010906020840190611a80565b6008546001600160a01b03163314610ca55760405162461bcd60e51b81526004016108f890611f27565b600d80549115156101000261ff0019909216919091179055565b60006106fa82611486565b60108054610cd79061201e565b80601f0160208091040260200160405190810160405280929190818152602001828054610d039061201e565b8015610d505780601f10610d2557610100808354040283529160200191610d50565b820191906000526020600020905b815481529060010190602001808311610d3357829003601f168201915b505050505081565b60006001600160a01b038216610d81576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610dd15760405162461bcd60e51b81526004016108f890611f27565b610ddb60006116ac565b565b6008546001600160a01b03163314610e075760405162461bcd60e51b81526004016108f890611f27565b4780610e4b5760405162461bcd60e51b81526020600482015260136024820152724e6f7468696e6720746f20576974686472617760681b60448201526064016108f8565b6040516001600160a01b0383169082156108fc029083906000818181858888f193505050501580156108b4573d6000803e3d6000fd5b6008546001600160a01b03163314610eab5760405162461bcd60e51b81526004016108f890611f27565b600c55565b60606003805461070f9061201e565b600d5460ff1615610f025760405162461bcd60e51b815260206004820152600d60248201526c29b0b632b99030b9329037b33360991b60448201526064016108f8565b600d54610100900460ff16610f595760405162461bcd60e51b815260206004820152601b60248201527f5075626c69632053616c65206973206e6f74206f70656e20796574000000000060448201526064016108f8565b600954336000908152600f60209081526040808320546005909252918290205460ff909116911c67ffffffffffffffff16610f949084611f5c565b610f9e9190611fb8565b1115610fe85760405162461bcd60e51b8152602060048201526019602482015278115e18d959591959081d1a19481dd85b1b195d081b1a5b5a5d603a1b60448201526064016108f8565b600a5481610ffd600154600054036000190190565b6110079190611f5c565b111561104e5760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016108f8565b611057816116fe565b341015610b6d5760405162461bcd60e51b815260206004820152601260248201527124b739bab33334b1b4b2b73a10233ab7321760711b60448201526064016108f8565b6001600160a01b0382163314156110c55760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61113c8484846114ef565b6001600160a01b0383163b1561117557611158848484846117ba565b611175576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146111a55760405162461bcd60e51b81526004016108f890611f27565b600d805460ff1916911515919091179055565b60606111c382611451565b6111e057604051630a14c4b560e41b815260040160405180910390fd5b60006111ea6118b1565b905080516000141561120b5760405180602001604052806000815250611236565b80611215846118c0565b604051602001611226929190611ea8565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146112675760405162461bcd60e51b81526004016108f890611f27565b60005b828110156111755781600e60008686858181106112895761128961208a565b905060200201602081019061129e9190611bcc565b6001600160a01b031681526020810191909152604001600020805460ff191660ff92909216919091179055806112d381612059565b91505061126a565b6008546001600160a01b031633146113055760405162461bcd60e51b81526004016108f890611f27565b600955565b6008546001600160a01b031633146113345760405162461bcd60e51b81526004016108f890611f27565b6001600160a01b0381166113995760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108f8565b610adc816116ac565b6008546001600160a01b031633146113cc5760405162461bcd60e51b81526004016108f890611f27565b600a54811061141d5760405162461bcd60e51b815260206004820152601960248201527f626164756d6d206e6f20727567676965207363616d6d6965650000000000000060448201526064016108f8565b600a55565b6008546001600160a01b0316331461144c5760405162461bcd60e51b81526004016108f890611f27565b600b55565b600081600111158015611465575060005482105b80156106fa575050600090815260046020526040902054600160e01b161590565b600081806001116114d6576000548110156114d657600081815260046020526040902054600160e01b81166114d4575b806112365750600019016000818152600460205260409020546114b6565b505b604051636f96cda160e11b815260040160405180910390fd5b60006114fa82611486565b9050836001600160a01b0316816001600160a01b03161461152d5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061154b575061154b85336105e0565b8061156657503361155b84610792565b6001600160a01b0316145b90508061158657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166115ad57604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b86178117909155821661164a57600183016000818152600460205260409020546116485760005481146116485760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b610c1f82826040518060200160405280600081525061190f565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008082116117595760405162461bcd60e51b815260206004820152602160248201527f4d757374206265206d696e74696e67206174206c65617374203120746f6b656e6044820152601760f91b60648201526084016108f8565b6000826117696000546000190190565b6117739190611f5c565b9050600b5481116117875750600092915050565b6000600b54826117979190611fb8565b905080600c546117a79190611f99565b6117b2906000611f5c565b949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906117ef903390899088908890600401611ed7565b602060405180830381600087803b15801561180957600080fd5b505af1925050508015611839575060408051601f3d908101601f1916820190925261183691810190611de2565b60015b611894573d808015611867576040519150601f19603f3d011682016040523d82523d6000602084013e61186c565b606091505b50805161188c576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60606010805461070f9061201e565b604080516080810191829052607f0190826030600a8206018353600a90045b80156118fd57600183039250600a81066030018353600a90046118df565b50819003601f19909101908152919050565b6000546001600160a01b03841661193857604051622e076360e81b815260040160405180910390fd5b826119565760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611a2b575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46119f460008784806001019550876117ba565b611a11576040516368d2bf6b60e11b815260040160405180910390fd5b8082106119a9578260005414611a2657600080fd5b611a70565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611a2c575b5060009081556111759085838684565b828054611a8c9061201e565b90600052602060002090601f016020900481019282611aae5760008555611af4565b82601f10611ac757805160ff1916838001178555611af4565b82800160010185558215611af4579182015b82811115611af4578251825591602001919060010190611ad9565b50611b00929150611b04565b5090565b5b80821115611b005760008155600101611b05565b600067ffffffffffffffff80841115611b3457611b346120a0565b604051601f8501601f19908116603f01168101908282118183101715611b5c57611b5c6120a0565b81604052809350858152868686011115611b7557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611ba657600080fd5b919050565b80358015158114611ba657600080fd5b803560ff81168114611ba657600080fd5b600060208284031215611bde57600080fd5b61123682611b8f565b60008060408385031215611bfa57600080fd5b611c0383611b8f565b9150611c1160208401611b8f565b90509250929050565b600080600060608486031215611c2f57600080fd5b611c3884611b8f565b9250611c4660208501611b8f565b9150604084013590509250925092565b60008060008060808587031215611c6c57600080fd5b611c7585611b8f565b9350611c8360208601611b8f565b925060408501359150606085013567ffffffffffffffff811115611ca657600080fd5b8501601f81018713611cb757600080fd5b611cc687823560208401611b19565b91505092959194509250565b60008060408385031215611ce557600080fd5b611cee83611b8f565b9150611c1160208401611bab565b60008060408385031215611d0f57600080fd5b611d1883611b8f565b946020939093013593505050565b600080600060408486031215611d3b57600080fd5b833567ffffffffffffffff80821115611d5357600080fd5b818601915086601f830112611d6757600080fd5b813581811115611d7657600080fd5b8760208260051b8501011115611d8b57600080fd5b602092830195509350611da19186019050611bbb565b90509250925092565b600060208284031215611dbc57600080fd5b61123682611bab565b600060208284031215611dd757600080fd5b8135611236816120b6565b600060208284031215611df457600080fd5b8151611236816120b6565b600060208284031215611e1157600080fd5b813567ffffffffffffffff811115611e2857600080fd5b8201601f81018413611e3957600080fd5b6117b284823560208401611b19565b600060208284031215611e5a57600080fd5b5035919050565b600060208284031215611e7357600080fd5b61123682611bbb565b60008151808452611e94816020860160208601611ff2565b601f01601f19169290920160200192915050565b60008351611eba818460208801611ff2565b835190830190611ece818360208801611ff2565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f0a90830184611e7c565b9695505050505050565b6020815260006112366020830184611e7c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611f6f57611f6f612074565b500190565b600060ff821660ff84168060ff03821115611f9157611f91612074565b019392505050565b6000816000190483118215151615611fb357611fb3612074565b500290565b600082821015611fca57611fca612074565b500390565b600060ff821660ff841680821015611fe957611fe9612074565b90039392505050565b60005b8381101561200d578181015183820152602001611ff5565b838111156111755750506000910152565b600181811c9082168061203257607f821691505b6020821081141561205357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561206d5761206d612074565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610adc57600080fdfea2646970667358221220cb609fe017c4efaed4cae73336e9c00b01ecd0b0e3ec00632e2cec0678724f6f64736f6c63430008070033

Deployed Bytecode Sourcemap

41872:4388:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16529:615;;;;;;;;;;-1:-1:-1;16529:615:0;;;;;:::i;:::-;;:::i;:::-;;;6947:14:1;;6940:22;6922:41;;6910:2;6895:18;16529:615:0;;;;;;;;21542:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23610:204::-;;;;;;;;;;-1:-1:-1;23610:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6245:32:1;;;6227:51;;6215:2;6200:18;23610:204:0;6081:203:1;23070:474:0;;;;;;;;;;-1:-1:-1;23070:474:0;;;;;:::i;:::-;;:::i;:::-;;15583:315;;;;;;;;;;;;44963:1;15849:12;15636:7;15833:13;:28;-1:-1:-1;;15833:46:0;;15583:315;;;;11725:25:1;;;11713:2;11698:18;15583:315:0;11579:177:1;24496:170:0;;;;;;;;;;-1:-1:-1;24496:170:0;;;;;:::i;:::-;;:::i;41994:31::-;;;;;;;;;;;;;;;;42397:727;;;;;;:::i;:::-;;:::i;45902:185::-;;;;;;;;;;-1:-1:-1;45902:185:0;;;;;:::i;:::-;;:::i;44980:181::-;;;;;;;;;;;;;:::i;24737:185::-;;;;;;;;;;-1:-1:-1;24737:185:0;;;;;:::i;:::-;;:::i;41918:31::-;;;;;;;;;;;;;;;;45365:96;;;;;;;;;;-1:-1:-1;45365:96:0;;;;;:::i;:::-;;:::i;44684:84::-;;;;;;;;;;-1:-1:-1;44684:84:0;;;;;:::i;:::-;;:::i;21331:144::-;;;;;;;;;;-1:-1:-1;21331:144:0;;;;;:::i;:::-;;:::i;42256:80::-;;;;;;;;;;;;;:::i;17208:224::-;;;;;;;;;;-1:-1:-1;17208:224:0;;;;;:::i;:::-;;:::i;2639:103::-;;;;;;;;;;;;;:::i;45169:188::-;;;;;;;;;;-1:-1:-1;45169:188:0;;;;;:::i;:::-;;:::i;1988:87::-;;;;;;;;;;-1:-1:-1;2061:6:0;;-1:-1:-1;;;;;2061:6:0;1988:87;;45577:84;;;;;;;;;;-1:-1:-1;45577:84:0;;;;;:::i;:::-;;:::i;21711:104::-;;;;;;;;;;;;;:::i;42032:34::-;;;;;;;;;;;;;;;;43132:643;;;;;;:::i;:::-;;:::i;23886:308::-;;;;;;;;;;-1:-1:-1;23886:308:0;;;;;:::i;:::-;;:::i;42107:32::-;;;;;;;;;;-1:-1:-1;42107:32:0;;;;;;;;;;;42073:27;;;;;;;;;;-1:-1:-1;42073:27:0;;;;;;;;24993:396;;;;;;;;;;-1:-1:-1;24993:396:0;;;;;:::i;:::-;;:::i;44597:79::-;;;;;;;;;;-1:-1:-1;44597:79:0;;;;;:::i;:::-;;:::i;21886:318::-;;;;;;;;;;-1:-1:-1;21886:318:0;;;;;:::i;:::-;;:::i;41956:31::-;;;;;;;;;;;;;;;;24265:164;;;;;;;;;;-1:-1:-1;24265:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24386:25:0;;;24362:4;24386:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24265:164;43783:233;;;;;;;;;;-1:-1:-1;43783:233:0;;;;;:::i;:::-;;:::i;45669:113::-;;;;;;;;;;-1:-1:-1;45669:113:0;;;;;:::i;:::-;;:::i;2897:201::-;;;;;;;;;;-1:-1:-1;2897:201:0;;;;;:::i;:::-;;:::i;46095:162::-;;;;;;;;;;-1:-1:-1;46095:162:0;;;;;:::i;:::-;;:::i;45790:104::-;;;;;;;;;;-1:-1:-1;45790:104:0;;;;;:::i;:::-;;:::i;16529:615::-;16614:4;-1:-1:-1;;;;;;;;;16914:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;16991:25:0;;;16914:102;:179;;;-1:-1:-1;;;;;;;;;;17068:25:0;;;16914:179;16894:199;16529:615;-1:-1:-1;;16529:615:0:o;21542:100::-;21596:13;21629:5;21622:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21542:100;:::o;23610:204::-;23678:7;23703:16;23711:7;23703;:16::i;:::-;23698:64;;23728:34;;-1:-1:-1;;;23728:34:0;;;;;;;;;;;23698:64;-1:-1:-1;23782:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23782:24:0;;23610:204::o;23070:474::-;23143:13;23175:27;23194:7;23175:18;:27::i;:::-;23143:61;;23225:5;-1:-1:-1;;;;;23219:11:0;:2;-1:-1:-1;;;;;23219:11:0;;23215:48;;;23239:24;;-1:-1:-1;;;23239:24:0;;;;;;;;;;;23215:48;39713:10;-1:-1:-1;;;;;23280:28:0;;;23276:175;;23328:44;23345:5;39713:10;24265:164;:::i;23328:44::-;23323:128;;23400:35;;-1:-1:-1;;;23400:35:0;;;;;;;;;;;23323:128;23463:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;23463:29:0;-1:-1:-1;;;;;23463:29:0;;;;;;;;;23508:28;;23463:24;;23508:28;;;;;;;23132:412;23070:474;;:::o;24496:170::-;24630:28;24640:4;24646:2;24650:7;24630:9;:28::i;:::-;24496:170;;;:::o;42397:727::-;42473:8;;;;42472:9;42464:35;;;;-1:-1:-1;;;42464:35:0;;8863:2:1;42464:35:0;;;8845:21:1;8902:2;8882:18;;;8875:30;-1:-1:-1;;;8921:18:1;;;8914:43;8974:18;;42464:35:0;;;;;;;;;42558:12;;42543:10;17575:7;17603:25;;;:18;:25;;12684:2;17603:25;;;;;42518:36;;17603:49;12547:13;17602:80;42518:36;;;;:::i;:::-;:52;;42510:90;;;;-1:-1:-1;;;42510:90:0;;8161:2:1;42510:90:0;;;8143:21:1;8200:2;8180:18;;;8173:30;-1:-1:-1;;;8219:18:1;;;8212:55;8284:18;;42510:90:0;7959:349:1;42510:90:0;42647:9;;42635:8;42619:24;;:13;44963:1;15849:12;15636:7;15833:13;:28;-1:-1:-1;;15833:46:0;;15583:315;42619:13;:24;;;;:::i;:::-;:37;;42611:72;;;;-1:-1:-1;;;42611:72:0;;9205:2:1;42611:72:0;;;9187:21:1;9244:2;9224:18;;;9217:30;-1:-1:-1;;;9263:18:1;;;9256:52;9325:18;;42611:72:0;9003:346:1;42611:72:0;42724:10;42714:21;;;;:9;:21;;;;;;;;;;42702:33;;;;;42694:87;;;;-1:-1:-1;;;42694:87:0;;10620:2:1;42694:87:0;;;10602:21:1;10659:2;10639:18;;;10632:30;10698:34;10678:18;;;10671:62;-1:-1:-1;;;10749:18:1;;;10742:39;10798:19;;42694:87:0;10418:405:1;42694:87:0;42983:10;42973:21;;;;:9;:21;;;;;:33;;42998:8;;42973:21;:33;;42998:8;;42973:33;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;43051:10;-1:-1:-1;43035:27:0;;;:15;:27;;;;;:39;;43066:8;;-1:-1:-1;43035:27:0;;:39;;43066:8;;43035:39;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;43085:31;43095:10;43107:8;43085:31;;:9;:31::i;:::-;42397:727;:::o;45902:185::-;2061:6;;-1:-1:-1;;;;;2061:6:0;39713:10;2208:23;2200:68;;;;-1:-1:-1;;;2200:68:0;;;;;;;:::i;:::-;46003:9:::1;;45991:8;45975:13;44963:1:::0;15849:12;15636:7;15833:13;:28;-1:-1:-1;;15833:46:0;;15583:315;45975:13:::1;:24;;;;:::i;:::-;:37;;45967:70;;;::::0;-1:-1:-1;;;45967:70:0;;11030:2:1;45967:70:0::1;::::0;::::1;11012:21:1::0;11069:2;11049:18;;;11042:30;-1:-1:-1;;;11088:18:1;;;11081:50;11148:18;;45967:70:0::1;10828:344:1::0;45967:70:0::1;46048:31;46058:10;46070:8;46048:9;:31::i;44980:181::-:0;2061:6;;-1:-1:-1;;;;;2061:6:0;39713:10;2208:23;2200:68;;;;-1:-1:-1;;;2200:68:0;;;;;;;:::i;:::-;45039:21:::1;45073:11:::0;45065:43:::1;;;::::0;-1:-1:-1;;;45065:43:0;;8515:2:1;45065:43:0::1;::::0;::::1;8497:21:1::0;8554:2;8534:18;;;8527:30;-1:-1:-1;;;8573:18:1;;;8566:49;8632:18;;45065:43:0::1;8313:343:1::0;45065:43:0::1;2061:6:::0;;45119:34:::1;::::0;-1:-1:-1;;;;;2061:6:0;;;;45119:34;::::1;;;::::0;45145:7;;45119:34:::1;::::0;;;45145:7;2061:6;45119:34;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;45019:142;44980:181::o:0;24737:185::-;24875:39;24892:4;24898:2;24902:7;24875:39;;;;;;;;;;;;:16;:39::i;45365:96::-;2061:6;;-1:-1:-1;;;;;2061:6:0;39713:10;2208:23;2200:68;;;;-1:-1:-1;;;2200:68:0;;;;;;;:::i;:::-;45437:16;;::::1;::::0;:7:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;44684:84::-:0;2061:6;;-1:-1:-1;;;;;2061:6:0;39713:10;2208:23;2200:68;;;;-1:-1:-1;;;2200:68:0;;;;;;;:::i;:::-;44741:12:::1;:20:::0;;;::::1;;;;-1:-1:-1::0;;44741:20:0;;::::1;::::0;;;::::1;::::0;;44684:84::o;21331:144::-;21395:7;21438:27;21457:7;21438:18;:27::i;42256:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;17208:224::-;17272:7;-1:-1:-1;;;;;17296:19:0;;17292:60;;17324:28;;-1:-1:-1;;;17324:28:0;;;;;;;;;;;17292:60;-1:-1:-1;;;;;;17370:25:0;;;;;:18;:25;;;;;;12547:13;17370:54;;17208:224::o;2639:103::-;2061:6;;-1:-1:-1;;;;;2061:6:0;39713:10;2208:23;2200:68;;;;-1:-1:-1;;;2200:68:0;;;;;;;:::i;:::-;2704:30:::1;2731:1;2704:18;:30::i;:::-;2639:103::o:0;45169:188::-;2061:6;;-1:-1:-1;;;;;2061:6:0;39713:10;2208:23;2200:68;;;;-1:-1:-1;;;2200:68:0;;;;;;;:::i;:::-;45240:21:::1;45274:11:::0;45266:43:::1;;;::::0;-1:-1:-1;;;45266:43:0;;8515:2:1;45266:43:0::1;::::0;::::1;8497:21:1::0;8554:2;8534:18;;;8527:30;-1:-1:-1;;;8573:18:1;;;8566:49;8632:18;;45266:43:0::1;8313:343:1::0;45266:43:0::1;45320:29;::::0;-1:-1:-1;;;;;45320:20:0;::::1;::::0;:29;::::1;;;::::0;45341:7;;45320:29:::1;::::0;;;45341:7;45320:20;:29;::::1;;;;;;;;;;;;;::::0;::::1;;;;45577:84:::0;2061:6;;-1:-1:-1;;;;;2061:6:0;39713:10;2208:23;2200:68;;;;-1:-1:-1;;;2200:68:0;;;;;;;:::i;:::-;45639:5:::1;:14:::0;45577:84::o;21711:104::-;21767:13;21800:7;21793:14;;;;;:::i;43132:643::-;43201:8;;;;43200:9;43192:35;;;;-1:-1:-1;;;43192:35:0;;8863:2:1;43192:35:0;;;8845:21:1;8902:2;8882:18;;;8875:30;-1:-1:-1;;;8921:18:1;;;8914:43;8974:18;;43192:35:0;8661:337:1;43192:35:0;43246:12;;;;;;;43238:52;;;;-1:-1:-1;;;43238:52:0;;9556:2:1;43238:52:0;;;9538:21:1;9595:2;9575:18;;;9568:30;9634:29;9614:18;;;9607:57;9681:18;;43238:52:0;9354:351:1;43238:52:0;43427:12;;43412:10;43396:27;;;;:15;:27;;;;;;;;;17603:18;:25;;;;;;;;43396:27;;;;;17603:49;12547:13;17602:80;43357:36;;:8;:36;:::i;:::-;:66;;;;:::i;:::-;:82;;43349:120;;;;-1:-1:-1;;;43349:120:0;;8161:2:1;43349:120:0;;;8143:21:1;8200:2;8180:18;;;8173:30;-1:-1:-1;;;8219:18:1;;;8212:55;8284:18;;43349:120:0;7959:349:1;43349:120:0;43526:9;;43514:8;43498:13;44963:1;15849:12;15636:7;15833:13;:28;-1:-1:-1;;15833:46:0;;15583:315;43498:13;:24;;;;:::i;:::-;:37;;43490:72;;;;-1:-1:-1;;;43490:72:0;;9205:2:1;43490:72:0;;;9187:21:1;9244:2;9224:18;;;9217:30;-1:-1:-1;;;9263:18:1;;;9256:52;9325:18;;43490:72:0;9003:346:1;43490:72:0;43659:18;43668:8;43659;:18::i;:::-;43646:9;:31;;43624:99;;;;-1:-1:-1;;;43624:99:0;;10273:2:1;43624:99:0;;;10255:21:1;10312:2;10292:18;;;10285:30;-1:-1:-1;;;10331:18:1;;;10324:48;10389:18;;43624:99:0;10071:342:1;23886:308:0;-1:-1:-1;;;;;23985:31:0;;39713:10;23985:31;23981:61;;;24025:17;;-1:-1:-1;;;24025:17:0;;;;;;;;;;;23981:61;39713:10;24055:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;24055:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;24055:60:0;;;;;;;;;;24131:55;;6922:41:1;;;24055:49:0;;39713:10;24131:55;;6895:18:1;24131:55:0;;;;;;;23886:308;;:::o;24993:396::-;25160:28;25170:4;25176:2;25180:7;25160:9;:28::i;:::-;-1:-1:-1;;;;;25203:14:0;;;:19;25199:183;;25242:56;25273:4;25279:2;25283:7;25292:5;25242:30;:56::i;:::-;25237:145;;25326:40;;-1:-1:-1;;;25326:40:0;;;;;;;;;;;25237:145;24993:396;;;;:::o;44597:79::-;2061:6;;-1:-1:-1;;;;;2061:6:0;39713:10;2208:23;2200:68;;;;-1:-1:-1;;;2200:68:0;;;;;;;:::i;:::-;44653:8:::1;:16:::0;;-1:-1:-1;;44653:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;44597:79::o;21886:318::-;21959:13;21990:16;21998:7;21990;:16::i;:::-;21985:59;;22015:29;;-1:-1:-1;;;22015:29:0;;;;;;;;;;;21985:59;22057:21;22081:10;:8;:10::i;:::-;22057:34;;22115:7;22109:21;22134:1;22109:26;;:87;;;;;;;;;;;;;;;;;22162:7;22171:18;22181:7;22171:9;:18::i;:::-;22145:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22109:87;22102:94;21886:318;-1:-1:-1;;;21886:318:0:o;43783:233::-;2061:6;;-1:-1:-1;;;;;2061:6:0;39713:10;2208:23;2200:68;;;;-1:-1:-1;;;2200:68:0;;;;;;;:::i;:::-;43898:9:::1;43893:116;43913:20:::0;;::::1;43893:116;;;43981:16;43955:9;:23;43965:9;;43975:1;43965:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;43955:23:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;43955:23:0;:42;;-1:-1:-1;;43955:42:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;43935:3;::::1;::::0;::::1;:::i;:::-;;;;43893:116;;45669:113:::0;2061:6;;-1:-1:-1;;;;;2061:6:0;39713:10;2208:23;2200:68;;;;-1:-1:-1;;;2200:68:0;;;;;;;:::i;:::-;45746:12:::1;:28:::0;45669:113::o;2897:201::-;2061:6;;-1:-1:-1;;;;;2061:6:0;39713:10;2208:23;2200:68;;;;-1:-1:-1;;;2200:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2986:22:0;::::1;2978:73;;;::::0;-1:-1:-1;;;2978:73:0;;7400:2:1;2978:73:0::1;::::0;::::1;7382:21:1::0;7439:2;7419:18;;;7412:30;7478:34;7458:18;;;7451:62;-1:-1:-1;;;7529:18:1;;;7522:36;7575:19;;2978:73:0::1;7198:402:1::0;2978:73:0::1;3062:28;3081:8;3062:18;:28::i;46095:162::-:0;2061:6;;-1:-1:-1;;;;;2061:6:0;39713:10;2208:23;2200:68;;;;-1:-1:-1;;;2200:68:0;;;;;;;:::i;:::-;46179:9:::1;;46166:10;:22;46158:61;;;::::0;-1:-1:-1;;;46158:61:0;;7807:2:1;46158:61:0::1;::::0;::::1;7789:21:1::0;7846:2;7826:18;;;7819:30;7885:27;7865:18;;;7858:55;7930:18;;46158:61:0::1;7605:349:1::0;46158:61:0::1;46230:9;:22:::0;46095:162::o;45790:104::-;2061:6;;-1:-1:-1;;;;;2061:6:0;39713:10;2208:23;2200:68;;;;-1:-1:-1;;;2200:68:0;;;;;;;:::i;:::-;45862:10:::1;:24:::0;45790:104::o;25644:273::-;25701:4;25757:7;44963:1;25738:26;;:66;;;;;25791:13;;25781:7;:23;25738:66;:152;;;;-1:-1:-1;;25842:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;25842:43:0;:48;;25644:273::o;18846:1129::-;18913:7;18948;;44963:1;18997:23;18993:915;;19050:13;;19043:4;:20;19039:869;;;19088:14;19105:23;;;:17;:23;;;;;;-1:-1:-1;;;19194:23:0;;19190:699;;19713:113;19720:11;19713:113;;-1:-1:-1;;;19791:6:0;19773:25;;;;:17;:25;;;;;;19713:113;;19190:699;19065:843;19039:869;19936:31;;-1:-1:-1;;;19936:31:0;;;;;;;;;;;30883:2515;30998:27;31028;31047:7;31028:18;:27::i;:::-;30998:57;;31113:4;-1:-1:-1;;;;;31072:45:0;31088:19;-1:-1:-1;;;;;31072:45:0;;31068:86;;31126:28;;-1:-1:-1;;;31126:28:0;;;;;;;;;;;31068:86;31167:22;39713:10;-1:-1:-1;;;;;31193:27:0;;;;:87;;-1:-1:-1;31237:43:0;31254:4;39713:10;24265:164;:::i;31237:43::-;31193:147;;;-1:-1:-1;39713:10:0;31297:20;31309:7;31297:11;:20::i;:::-;-1:-1:-1;;;;;31297:43:0;;31193:147;31167:174;;31359:17;31354:66;;31385:35;;-1:-1:-1;;;31385:35:0;;;;;;;;;;;31354:66;-1:-1:-1;;;;;31435:16:0;;31431:52;;31460:23;;-1:-1:-1;;;31460:23:0;;;;;;;;;;;31431:52;31612:24;;;;:15;:24;;;;;;;;31605:31;;-1:-1:-1;;;;;;31605:31:0;;;-1:-1:-1;;;;;32004:24:0;;;;;:18;:24;;;;;32002:26;;-1:-1:-1;;32002:26:0;;;32073:22;;;;;;;32071:24;;-1:-1:-1;32071:24:0;;;32366:26;;;:17;:26;;;;;-1:-1:-1;;;32454:15:0;13201:3;32454:41;32412:84;;:128;;32366:174;;;32660:46;;32656:626;;32764:1;32754:11;;32732:19;32887:30;;;:17;:30;;;;;;32883:384;;33025:13;;33010:11;:28;33006:242;;33172:30;;;;:17;:30;;;;;:52;;;33006:242;32713:569;32656:626;33329:7;33325:2;-1:-1:-1;;;;;33310:27:0;33319:4;-1:-1:-1;;;;;33310:27:0;;;;;;;;;;;30987:2411;;30883:2515;;;:::o;26001:104::-;26070:27;26080:2;26084:8;26070:27;;;;;;;;;;;;:9;:27::i;3258:191::-;3351:6;;;-1:-1:-1;;;;;3368:17:0;;;-1:-1:-1;;;;;;3368:17:0;;;;;;;3401:40;;3351:6;;;3368:17;3351:6;;3401:40;;3332:16;;3401:40;3321:128;3258:191;:::o;44024:565::-;44081:7;44128:1;44119:6;:10;44111:56;;;;-1:-1:-1;;;44111:56:0;;11379:2:1;44111:56:0;;;11361:21:1;11418:2;11398:18;;;11391:30;11457:34;11437:18;;;11430:62;-1:-1:-1;;;11508:18:1;;;11501:31;11549:19;;44111:56:0;11177:397:1;44111:56:0;44188:21;44229:6;44212:14;16043:7;16231:13;-1:-1:-1;;16231:31:0;;15996:285;44212:14;:23;;;;:::i;:::-;44188:47;;44405:10;;44387:13;:28;44384:68;;-1:-1:-1;44439:1:0;;44024:565;-1:-1:-1;;44024:565:0:o;44384:68::-;44472:29;44520:10;;44504:13;:26;;;;:::i;:::-;44472:58;;44562:21;44554:5;;:29;;;;:::i;:::-;44550:33;;:1;:33;:::i;:::-;44543:40;44024:565;-1:-1:-1;;;;44024:565:0:o;37095:716::-;37279:88;;-1:-1:-1;;;37279:88:0;;37258:4;;-1:-1:-1;;;;;37279:45:0;;;;;:88;;39713:10;;37346:4;;37352:7;;37361:5;;37279:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37279:88:0;;;;;;;;-1:-1:-1;;37279:88:0;;;;;;;;;;;;:::i;:::-;;;37275:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37562:13:0;;37558:235;;37608:40;;-1:-1:-1;;;37608:40:0;;;;;;;;;;;37558:235;37751:6;37745:13;37736:6;37732:2;37728:15;37721:38;37275:529;-1:-1:-1;;;;;;37438:64:0;-1:-1:-1;;;37438:64:0;;-1:-1:-1;37095:716:0;;;;;;:::o;45469:100::-;45521:13;45554:7;45547:14;;;;;:::i;39837:1959::-;40308:4;40302:11;;40315:3;40298:21;;40393:17;;;;41090:11;;;40969:5;41222:2;41236;41226:13;;41218:22;41090:11;41205:36;41277:2;41267:13;;40860:682;41296:4;40860:682;;;41471:1;41466:3;41462:11;41455:18;;41522:2;41516:4;41512:13;41508:2;41504:22;41499:3;41491:36;41392:2;41382:13;;40860:682;;;-1:-1:-1;41584:13:0;;;-1:-1:-1;;41699:12:0;;;41759:19;;;41699:12;39837:1959;-1:-1:-1;39837:1959:0:o;26478:2236::-;26601:20;26624:13;-1:-1:-1;;;;;26652:16:0;;26648:48;;26677:19;;-1:-1:-1;;;26677:19:0;;;;;;;;;;;26648:48;26711:13;26707:44;;26733:18;;-1:-1:-1;;;26733:18:0;;;;;;;;;;;26707:44;-1:-1:-1;;;;;27300:22:0;;;;;;:18;:22;;;;12684:2;27300:22;;;:70;;27338:31;27326:44;;27300:70;;;27613:31;;;:17;:31;;;;;27706:15;13201:3;27706:41;27664:84;;-1:-1:-1;27784:13:0;;13464:3;27769:56;27664:162;27613:213;;:31;;27907:23;;;;27951:14;:19;27947:635;;27991:313;28022:38;;28047:12;;-1:-1:-1;;;;;28022:38:0;;;28039:1;;28022:38;;28039:1;;28022:38;28088:69;28127:1;28131:2;28135:14;;;;;;28151:5;28088:30;:69::i;:::-;28083:174;;28193:40;;-1:-1:-1;;;28193:40:0;;;;;;;;;;;28083:174;28299:3;28284:12;:18;27991:313;;28385:12;28368:13;;:29;28364:43;;28399:8;;;28364:43;27947:635;;;28448:119;28479:40;;28504:14;;;;;-1:-1:-1;;;;;28479:40:0;;;28496:1;;28479:40;;28496:1;;28479:40;28562:3;28547:12;:18;28448:119;;27947:635;-1:-1:-1;28596:13:0;:28;;;28646:60;;28679:2;28683:12;28697:8;28646:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:156;1059:20;;1119:4;1108:16;;1098:27;;1088:55;;1139:1;1136;1129:12;1154:186;1213:6;1266:2;1254:9;1245:7;1241:23;1237:32;1234:52;;;1282:1;1279;1272:12;1234:52;1305:29;1324:9;1305:29;:::i;1345:260::-;1413:6;1421;1474:2;1462:9;1453:7;1449:23;1445:32;1442:52;;;1490:1;1487;1480:12;1442:52;1513:29;1532:9;1513:29;:::i;:::-;1503:39;;1561:38;1595:2;1584:9;1580:18;1561:38;:::i;:::-;1551:48;;1345:260;;;;;:::o;1610:328::-;1687:6;1695;1703;1756:2;1744:9;1735:7;1731:23;1727:32;1724:52;;;1772:1;1769;1762:12;1724:52;1795:29;1814:9;1795:29;:::i;:::-;1785:39;;1843:38;1877:2;1866:9;1862:18;1843:38;:::i;:::-;1833:48;;1928:2;1917:9;1913:18;1900:32;1890:42;;1610:328;;;;;:::o;1943:666::-;2038:6;2046;2054;2062;2115:3;2103:9;2094:7;2090:23;2086:33;2083:53;;;2132:1;2129;2122:12;2083:53;2155:29;2174:9;2155:29;:::i;:::-;2145:39;;2203:38;2237:2;2226:9;2222:18;2203:38;:::i;:::-;2193:48;;2288:2;2277:9;2273:18;2260:32;2250:42;;2343:2;2332:9;2328:18;2315:32;2370:18;2362:6;2359:30;2356:50;;;2402:1;2399;2392:12;2356:50;2425:22;;2478:4;2470:13;;2466:27;-1:-1:-1;2456:55:1;;2507:1;2504;2497:12;2456:55;2530:73;2595:7;2590:2;2577:16;2572:2;2568;2564:11;2530:73;:::i;:::-;2520:83;;;1943:666;;;;;;;:::o;2614:254::-;2679:6;2687;2740:2;2728:9;2719:7;2715:23;2711:32;2708:52;;;2756:1;2753;2746:12;2708:52;2779:29;2798:9;2779:29;:::i;:::-;2769:39;;2827:35;2858:2;2847:9;2843:18;2827:35;:::i;2873:254::-;2941:6;2949;3002:2;2990:9;2981:7;2977:23;2973:32;2970:52;;;3018:1;3015;3008:12;2970:52;3041:29;3060:9;3041:29;:::i;:::-;3031:39;3117:2;3102:18;;;;3089:32;;-1:-1:-1;;;2873:254:1:o;3132:691::-;3225:6;3233;3241;3294:2;3282:9;3273:7;3269:23;3265:32;3262:52;;;3310:1;3307;3300:12;3262:52;3350:9;3337:23;3379:18;3420:2;3412:6;3409:14;3406:34;;;3436:1;3433;3426:12;3406:34;3474:6;3463:9;3459:22;3449:32;;3519:7;3512:4;3508:2;3504:13;3500:27;3490:55;;3541:1;3538;3531:12;3490:55;3581:2;3568:16;3607:2;3599:6;3596:14;3593:34;;;3623:1;3620;3613:12;3593:34;3678:7;3671:4;3661:6;3658:1;3654:14;3650:2;3646:23;3642:34;3639:47;3636:67;;;3699:1;3696;3689:12;3636:67;3730:4;3722:13;;;;-1:-1:-1;3754:6:1;-1:-1:-1;3779:38:1;;3796:20;;;-1:-1:-1;3779:38:1;:::i;:::-;3769:48;;3132:691;;;;;:::o;3828:180::-;3884:6;3937:2;3925:9;3916:7;3912:23;3908:32;3905:52;;;3953:1;3950;3943:12;3905:52;3976:26;3992:9;3976:26;:::i;4013:245::-;4071:6;4124:2;4112:9;4103:7;4099:23;4095:32;4092:52;;;4140:1;4137;4130:12;4092:52;4179:9;4166:23;4198:30;4222:5;4198:30;:::i;4263:249::-;4332:6;4385:2;4373:9;4364:7;4360:23;4356:32;4353:52;;;4401:1;4398;4391:12;4353:52;4433:9;4427:16;4452:30;4476:5;4452:30;:::i;4517:450::-;4586:6;4639:2;4627:9;4618:7;4614:23;4610:32;4607:52;;;4655:1;4652;4645:12;4607:52;4695:9;4682:23;4728:18;4720:6;4717:30;4714:50;;;4760:1;4757;4750:12;4714:50;4783:22;;4836:4;4828:13;;4824:27;-1:-1:-1;4814:55:1;;4865:1;4862;4855:12;4814:55;4888:73;4953:7;4948:2;4935:16;4930:2;4926;4922:11;4888:73;:::i;4972:180::-;5031:6;5084:2;5072:9;5063:7;5059:23;5055:32;5052:52;;;5100:1;5097;5090:12;5052:52;-1:-1:-1;5123:23:1;;4972:180;-1:-1:-1;4972:180:1:o;5157:182::-;5214:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:52;;;5283:1;5280;5273:12;5235:52;5306:27;5323:9;5306:27;:::i;5344:257::-;5385:3;5423:5;5417:12;5450:6;5445:3;5438:19;5466:63;5522:6;5515:4;5510:3;5506:14;5499:4;5492:5;5488:16;5466:63;:::i;:::-;5583:2;5562:15;-1:-1:-1;;5558:29:1;5549:39;;;;5590:4;5545:50;;5344:257;-1:-1:-1;;5344:257:1:o;5606:470::-;5785:3;5823:6;5817:13;5839:53;5885:6;5880:3;5873:4;5865:6;5861:17;5839:53;:::i;:::-;5955:13;;5914:16;;;;5977:57;5955:13;5914:16;6011:4;5999:17;;5977:57;:::i;:::-;6050:20;;5606:470;-1:-1:-1;;;;5606:470:1:o;6289:488::-;-1:-1:-1;;;;;6558:15:1;;;6540:34;;6610:15;;6605:2;6590:18;;6583:43;6657:2;6642:18;;6635:34;;;6705:3;6700:2;6685:18;;6678:31;;;6483:4;;6726:45;;6751:19;;6743:6;6726:45;:::i;:::-;6718:53;6289:488;-1:-1:-1;;;;;;6289:488:1:o;6974:219::-;7123:2;7112:9;7105:21;7086:4;7143:44;7183:2;7172:9;7168:18;7160:6;7143:44;:::i;9710:356::-;9912:2;9894:21;;;9931:18;;;9924:30;9990:34;9985:2;9970:18;;9963:62;10057:2;10042:18;;9710:356::o;11761:128::-;11801:3;11832:1;11828:6;11825:1;11822:13;11819:39;;;11838:18;;:::i;:::-;-1:-1:-1;11874:9:1;;11761:128::o;11894:204::-;11932:3;11968:4;11965:1;11961:12;12000:4;11997:1;11993:12;12035:3;12029:4;12025:14;12020:3;12017:23;12014:49;;;12043:18;;:::i;:::-;12079:13;;11894:204;-1:-1:-1;;;11894:204:1:o;12103:168::-;12143:7;12209:1;12205;12201:6;12197:14;12194:1;12191:21;12186:1;12179:9;12172:17;12168:45;12165:71;;;12216:18;;:::i;:::-;-1:-1:-1;12256:9:1;;12103:168::o;12276:125::-;12316:4;12344:1;12341;12338:8;12335:34;;;12349:18;;:::i;:::-;-1:-1:-1;12386:9:1;;12276:125::o;12406:195::-;12444:4;12481;12478:1;12474:12;12513:4;12510:1;12506:12;12538:3;12533;12530:12;12527:38;;;12545:18;;:::i;:::-;12582:13;;;12406:195;-1:-1:-1;;;12406:195:1:o;12606:258::-;12678:1;12688:113;12702:6;12699:1;12696:13;12688:113;;;12778:11;;;12772:18;12759:11;;;12752:39;12724:2;12717:10;12688:113;;;12819:6;12816:1;12813:13;12810:48;;;-1:-1:-1;;12854:1:1;12836:16;;12829:27;12606:258::o;12869:380::-;12948:1;12944:12;;;;12991;;;13012:61;;13066:4;13058:6;13054:17;13044:27;;13012:61;13119:2;13111:6;13108:14;13088:18;13085:38;13082:161;;;13165:10;13160:3;13156:20;13153:1;13146:31;13200:4;13197:1;13190:15;13228:4;13225:1;13218:15;13082:161;;12869:380;;;:::o;13254:135::-;13293:3;-1:-1:-1;;13314:17:1;;13311:43;;;13334:18;;:::i;:::-;-1:-1:-1;13381:1:1;13370:13;;13254:135::o;13394:127::-;13455:10;13450:3;13446:20;13443:1;13436:31;13486:4;13483:1;13476:15;13510:4;13507:1;13500:15;13526:127;13587:10;13582:3;13578:20;13575:1;13568:31;13618:4;13615:1;13608:15;13642:4;13639:1;13632:15;13658:127;13719:10;13714:3;13710:20;13707:1;13700:31;13750:4;13747:1;13740:15;13774:4;13771:1;13764:15;13790:131;-1:-1:-1;;;;;;13864:32:1;;13854:43;;13844:71;;13911:1;13908;13901:12

Swarm Source

ipfs://cb609fe017c4efaed4cae73336e9c00b01ecd0b0e3ec00632e2cec0678724f6f
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.