ETH Price: $2,626.52 (-5.41%)

Token

The Almighty Sparrows (Sparrows)
 

Overview

Max Total Supply

777 Sparrows

Holders

192

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Sparrows
0x1a48c87e5b0f5c4df3021ce02172a2c5c6ebf99a
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
BlueSparrowNFT

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 24 : BlueSparrowNFT.sol
// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.13;

 /* 
      The offcial  



    ____  __          _____                                    
   / __ )/ /_  _____ / ___/____  ____ _______________ _      __
  / __  / / / / / _ \\__ \/ __ \/ __ `/ ___/ ___/ __ \ | /| / /
 / /_/ / / /_/ /  __/__/ / /_/ / /_/ / /  / /  / /_/ / |/ |/ / 
/_____/_/\__,_/\___/____/ .___/\__,_/_/  /_/   \____/|__/|__/  
                       /_/                                     


                                                NFT Collection

      Websites: 
        https://nft.bluebit.io/
        https://bluebit.io/
        https://bluesparrowtoken.com/
 */

import "operator-filter-registry/src/DefaultOperatorFilterer.sol";


import { ERC721A } from "@thirdweb-dev/contracts/eip/ERC721A.sol";

import "@thirdweb-dev/contracts/extension/ContractMetadata.sol";
import "@thirdweb-dev/contracts/extension/Multicall.sol";
import "@thirdweb-dev/contracts/extension/Ownable.sol";
import "@thirdweb-dev/contracts/extension/Royalty.sol";
import "@thirdweb-dev/contracts/extension/BatchMintMetadata.sol";

import "@thirdweb-dev/contracts/lib/TWStrings.sol";

/**
 *  The `ERC721Base` smart contract implements the ERC721 NFT standard, along with the ERC721A optimization to the standard.
 *  It includes the following additions to standard ERC721 logic:
 *
 *      - Ability to mint NFTs via the provided `mint` function.
 *
 *      - Contract metadata for royalty support on platforms such as OpenSea that use
 *        off-chain information to distribute roaylties.
 *
 *      - Ownership of the contract, with the ability to restrict certain functions to
 *        only be called by the contract's owner.
 *
 *      - Multicall capability to perform multiple actions atomically
 *
 *      - EIP 2981 compliance for royalty support on NFT marketplaces.
 */

contract BlueSparrowNFT is ERC721A, ContractMetadata, Multicall, Ownable, Royalty, BatchMintMetadata, DefaultOperatorFilterer {
    using TWStrings for uint256;

    /*//////////////////////////////////////////////////////////////
                            Mappings
    //////////////////////////////////////////////////////////////*/

    mapping(uint256 => string) private fullURI;

    /*//////////////////////////////////////////////////////////////
                            Constructor
    //////////////////////////////////////////////////////////////*/

    constructor(
        string memory _name,
        string memory _symbol,
        address _royaltyRecipient,
        uint128 _royaltyBps
    ) ERC721A(_name, _symbol) {
        _setupOwner(msg.sender);
        _setupDefaultRoyaltyInfo(_royaltyRecipient, _royaltyBps);
    }

    /*//////////////////////////////////////////////////////////////
                            ERC165 Logic
    //////////////////////////////////////////////////////////////*/

    /// @dev See ERC165: https://eips.ethereum.org/EIPS/eip-165
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, IERC165) returns (bool) {
        return
            interfaceId == 0x01ffc9a7 || // ERC165 Interface ID for ERC165
            interfaceId == 0x80ac58cd || // ERC165 Interface ID for ERC721
            interfaceId == 0x5b5e139f || // ERC165 Interface ID for ERC721Metadata
            interfaceId == type(IERC2981).interfaceId; // ERC165 ID for ERC2981
    }

    /*//////////////////////////////////////////////////////////////
                        Overriden ERC721 logic
    //////////////////////////////////////////////////////////////*/

    /**
     *  @notice         Returns the metadata URI for an NFT.
     *  @dev            See `BatchMintMetadata` for handling of metadata in this contract.
     *
     *  @param _tokenId The tokenId of an NFT.
     */
    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        string memory fullUriForToken = fullURI[_tokenId];
        if (bytes(fullUriForToken).length > 0) {
            return fullUriForToken;
        }

        string memory batchUri = _getBaseURI(_tokenId);
        return string(abi.encodePacked(batchUri, _tokenId.toString()));
    }

    /*//////////////////////////////////////////////////////////////
                            Minting logic
    //////////////////////////////////////////////////////////////*/

    /**
     *  @notice          Lets an authorized address mint an NFT to a recipient.
     *  @dev             The logic in the `_canMint` function determines whether the caller is authorized to mint NFTs.
     *
     *  @param _to       The recipient of the NFT to mint.
     *  @param _tokenURI The full metadata URI for the NFT minted.
     */
    function mintTo(address _to, string memory _tokenURI) public virtual {
        require(_canMint(), "Not authorized to mint.");
        _setTokenURI(nextTokenIdToMint(), _tokenURI);
        _safeMint(_to, 1, "");
    }

    /**
     *  @notice          Lets an authorized address mint multiple NFTs at once to a recipient.
     *  @dev             The logic in the `_canMint` function determines whether the caller is authorized to mint NFTs.
     *
     *  @param _to       The recipient of the NFT to mint.
     *  @param _quantity The number of NFTs to mint.
     *  @param _baseURI  The baseURI for the `n` number of NFTs minted. The metadata for each NFT is `baseURI/tokenId`
     *  @param _data     Additional data to pass along during the minting of the NFT.
     */
    function batchMintTo(
        address _to,
        uint256 _quantity,
        string memory _baseURI,
        bytes memory _data
    ) public virtual {
        require(_canMint(), "Not authorized to mint.");
        _batchMintMetadata(nextTokenIdToMint(), _quantity, _baseURI);
        _safeMint(_to, _quantity, _data);
    }

    /**
     *  @notice         Lets an owner or approved operator burn the NFT of the given tokenId.
     *  @dev            ERC721A's `_burn(uint256,bool)` internally checks for token approvals.
     *
     *  @param _tokenId The tokenId of the NFT to burn.
     */
    function burnByTokenID(uint256 _tokenId) external virtual {
        _burn(_tokenId, true);
    }

    /*//////////////////////////////////////////////////////////////
                        Public getters
    //////////////////////////////////////////////////////////////*/


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

    /// @notice The tokenId assigned to the next new NFT to be minted.
    function nextTokenIdToMint() public view virtual returns (uint256) {
        return _currentIndex;
    }

    /// @notice Returns whether a given address is the owner, or approved to transfer an NFT.
    function _isApprovedOrOwner(address _operator, uint256 _tokenId)
        public
        view
        virtual
        returns (bool isApprovedOrOwnerOf)
    {
        address owner = ownerOf(_tokenId);
        isApprovedOrOwnerOf = (_operator == owner ||
            isApprovedForAll(owner, _operator) ||
            getApproved(_tokenId) == _operator);
    }

    /*//////////////////////////////////////////////////////////////
                        Internal (overrideable) functions
    //////////////////////////////////////////////////////////////*/

    function _setTokenURI(uint256 _tokenId, string memory _tokenURI) internal virtual {
        require(bytes(fullURI[_tokenId]).length == 0, "URI already set");
        fullURI[_tokenId] = _tokenURI;
    }

    /// @dev Returns whether contract metadata can be set in the given execution context.
    function _canSetContractURI() internal view virtual override returns (bool) {
        return msg.sender == owner();
    }

    /// @dev Returns whether a token can be minted in the given execution context.
    function _canMint() internal view virtual returns (bool) {
        return msg.sender == owner();
    }

    /// @dev Returns whether owner can be set in the given execution context.
    function _canSetOwner() internal view virtual override returns (bool) {
        return msg.sender == owner();
    }

    /// @dev Returns whether royalty info can be set in the given execution context.
    function _canSetRoyaltyInfo() internal view virtual override returns (bool) {
        return msg.sender == owner();
    }

    /*//////////////////////////////////////////////////////////////
        Override the ERC721 transfer and approval methods 
    //////////////////////////////////////////////////////////////*/

    function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

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

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

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

File 2 of 24 : TWStrings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library TWStrings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

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

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

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

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

File 3 of 24 : BatchMintMetadata.sol
// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.0;

/**
 *  @title   Batch-mint Metadata
 *  @notice  The `BatchMintMetadata` is a contract extension for any base NFT contract. It lets the smart contract
 *           using this extension set metadata for `n` number of NFTs all at once. This is enabled by storing a single
 *           base URI for a batch of `n` NFTs, where the metadata for each NFT in a relevant batch is `baseURI/tokenId`.
 */

contract BatchMintMetadata {
    /// @dev Largest tokenId of each batch of tokens with the same baseURI.
    uint256[] private batchIds;

    /// @dev Mapping from id of a batch of tokens => to base URI for the respective batch of tokens.
    mapping(uint256 => string) private baseURI;

    /**
     *  @notice         Returns the count of batches of NFTs.
     *  @dev            Each batch of tokens has an in ID and an associated `baseURI`.
     *                  See {batchIds}.
     */
    function getBaseURICount() public view returns (uint256) {
        return batchIds.length;
    }

    /**
     *  @notice         Returns the ID for the batch of tokens the given tokenId belongs to.
     *  @dev            See {getBaseURICount}.
     *  @param _index   ID of a token.
     */
    function getBatchIdAtIndex(uint256 _index) public view returns (uint256) {
        if (_index >= getBaseURICount()) {
            revert("Invalid index");
        }
        return batchIds[_index];
    }

    /// @dev Returns the id for the batch of tokens the given tokenId belongs to.
    function _getBatchId(uint256 _tokenId) internal view returns (uint256 batchId, uint256 index) {
        uint256 numOfTokenBatches = getBaseURICount();
        uint256[] memory indices = batchIds;

        for (uint256 i = 0; i < numOfTokenBatches; i += 1) {
            if (_tokenId < indices[i]) {
                index = i;
                batchId = indices[i];

                return (batchId, index);
            }
        }

        revert("Invalid tokenId");
    }

    /// @dev Returns the baseURI for a token. The intended metadata URI for the token is baseURI + tokenId.
    function _getBaseURI(uint256 _tokenId) internal view returns (string memory) {
        uint256 numOfTokenBatches = getBaseURICount();
        uint256[] memory indices = batchIds;

        for (uint256 i = 0; i < numOfTokenBatches; i += 1) {
            if (_tokenId < indices[i]) {
                return baseURI[indices[i]];
            }
        }
        revert("Invalid tokenId");
    }

    /// @dev Sets the base URI for the batch of tokens with the given batchId.
    function _setBaseURI(uint256 _batchId, string memory _baseURI) internal {
        baseURI[_batchId] = _baseURI;
    }

    /// @dev Mints a batch of tokenIds and associates a common baseURI to all those Ids.
    function _batchMintMetadata(
        uint256 _startId,
        uint256 _amountToMint,
        string memory _baseURIForTokens
    ) internal returns (uint256 nextTokenIdToMint, uint256 batchId) {
        batchId = _startId + _amountToMint;
        nextTokenIdToMint = batchId;

        batchIds.push(batchId);

        baseURI[batchId] = _baseURIForTokens;
    }
}

File 4 of 24 : Royalty.sol
// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.0;

import "./interface/IRoyalty.sol";

/**
 *  @title   Royalty
 *  @notice  Thirdweb's `Royalty` is a contract extension to be used with any base contract. It exposes functions for setting and reading
 *           the recipient of royalty fee and the royalty fee basis points, and lets the inheriting contract perform conditional logic
 *           that uses information about royalty fees, if desired.
 *
 *  @dev     The `Royalty` contract is ERC2981 compliant.
 */

abstract contract Royalty is IRoyalty {
    /// @dev The (default) address that receives all royalty value.
    address private royaltyRecipient;

    /// @dev The (default) % of a sale to take as royalty (in basis points).
    uint16 private royaltyBps;

    /// @dev Token ID => royalty recipient and bps for token
    mapping(uint256 => RoyaltyInfo) private royaltyInfoForToken;

    /**
     *  @notice   View royalty info for a given token and sale price.
     *  @dev      Returns royalty amount and recipient for `tokenId` and `salePrice`.
     *  @param tokenId          The tokenID of the NFT for which to query royalty info.
     *  @param salePrice        Sale price of the token.
     *
     *  @return receiver        Address of royalty recipient account.
     *  @return royaltyAmount   Royalty amount calculated at current royaltyBps value.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        virtual
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        (address recipient, uint256 bps) = getRoyaltyInfoForToken(tokenId);
        receiver = recipient;
        royaltyAmount = (salePrice * bps) / 10_000;
    }

    /**
     *  @notice          View royalty info for a given token.
     *  @dev             Returns royalty recipient and bps for `_tokenId`.
     *  @param _tokenId  The tokenID of the NFT for which to query royalty info.
     */
    function getRoyaltyInfoForToken(uint256 _tokenId) public view override returns (address, uint16) {
        RoyaltyInfo memory royaltyForToken = royaltyInfoForToken[_tokenId];

        return
            royaltyForToken.recipient == address(0)
                ? (royaltyRecipient, uint16(royaltyBps))
                : (royaltyForToken.recipient, uint16(royaltyForToken.bps));
    }

    /**
     *  @notice Returns the defualt royalty recipient and BPS for this contract's NFTs.
     */
    function getDefaultRoyaltyInfo() external view override returns (address, uint16) {
        return (royaltyRecipient, uint16(royaltyBps));
    }

    /**
     *  @notice         Updates default royalty recipient and bps.
     *  @dev            Caller should be authorized to set royalty info.
     *                  See {_canSetRoyaltyInfo}.
     *                  Emits {DefaultRoyalty Event}; See {_setupDefaultRoyaltyInfo}.
     *
     *  @param _royaltyRecipient   Address to be set as default royalty recipient.
     *  @param _royaltyBps         Updated royalty bps.
     */
    function setDefaultRoyaltyInfo(address _royaltyRecipient, uint256 _royaltyBps) external override {
        if (!_canSetRoyaltyInfo()) {
            revert("Not authorized");
        }

        _setupDefaultRoyaltyInfo(_royaltyRecipient, _royaltyBps);
    }

    /// @dev Lets a contract admin update the default royalty recipient and bps.
    function _setupDefaultRoyaltyInfo(address _royaltyRecipient, uint256 _royaltyBps) internal {
        if (_royaltyBps > 10_000) {
            revert("Exceeds max bps");
        }

        royaltyRecipient = _royaltyRecipient;
        royaltyBps = uint16(_royaltyBps);

        emit DefaultRoyalty(_royaltyRecipient, _royaltyBps);
    }

    /**
     *  @notice         Updates default royalty recipient and bps for a particular token.
     *  @dev            Sets royalty info for `_tokenId`. Caller should be authorized to set royalty info.
     *                  See {_canSetRoyaltyInfo}.
     *                  Emits {RoyaltyForToken Event}; See {_setupRoyaltyInfoForToken}.
     *
     *  @param _recipient   Address to be set as royalty recipient for given token Id.
     *  @param _bps         Updated royalty bps for the token Id.
     */
    function setRoyaltyInfoForToken(
        uint256 _tokenId,
        address _recipient,
        uint256 _bps
    ) external override {
        if (!_canSetRoyaltyInfo()) {
            revert("Not authorized");
        }

        _setupRoyaltyInfoForToken(_tokenId, _recipient, _bps);
    }

    /// @dev Lets a contract admin set the royalty recipient and bps for a particular token Id.
    function _setupRoyaltyInfoForToken(
        uint256 _tokenId,
        address _recipient,
        uint256 _bps
    ) internal {
        if (_bps > 10_000) {
            revert("Exceeds max bps");
        }

        royaltyInfoForToken[_tokenId] = RoyaltyInfo({ recipient: _recipient, bps: _bps });

        emit RoyaltyForToken(_tokenId, _recipient, _bps);
    }

    /// @dev Returns whether royalty info can be set in the given execution context.
    function _canSetRoyaltyInfo() internal view virtual returns (bool);
}

File 5 of 24 : Ownable.sol
// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.0;

import "./interface/IOwnable.sol";

/**
 *  @title   Ownable
 *  @notice  Thirdweb's `Ownable` is a contract extension to be used with any base contract. It exposes functions for setting and reading
 *           who the 'owner' of the inheriting smart contract is, and lets the inheriting contract perform conditional logic that uses
 *           information about who the contract's owner is.
 */

abstract contract Ownable is IOwnable {
    /// @dev Owner of the contract (purpose: OpenSea compatibility)
    address private _owner;

    /// @dev Reverts if caller is not the owner.
    modifier onlyOwner() {
        if (msg.sender != _owner) {
            revert("Not authorized");
        }
        _;
    }

    /**
     *  @notice Returns the owner of the contract.
     */
    function owner() public view override returns (address) {
        return _owner;
    }

    /**
     *  @notice Lets an authorized wallet set a new owner for the contract.
     *  @param _newOwner The address to set as the new owner of the contract.
     */
    function setOwner(address _newOwner) external override {
        if (!_canSetOwner()) {
            revert("Not authorized");
        }
        _setupOwner(_newOwner);
    }

    /// @dev Lets a contract admin set a new owner for the contract. The new owner must be a contract admin.
    function _setupOwner(address _newOwner) internal {
        address _prevOwner = _owner;
        _owner = _newOwner;

        emit OwnerUpdated(_prevOwner, _newOwner);
    }

    /// @dev Returns whether owner can be set in the given execution context.
    function _canSetOwner() internal view virtual returns (bool);
}

File 6 of 24 : Multicall.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Multicall.sol)

pragma solidity ^0.8.0;

import "../lib/TWAddress.sol";
import "./interface/IMulticall.sol";

/**
 * @dev Provides a function to batch together multiple calls in a single external call.
 *
 * _Available since v4.1._
 */
contract Multicall is IMulticall {
    /**
     *  @notice Receives and executes a batch of function calls on this contract.
     *  @dev Receives and executes a batch of function calls on this contract.
     *
     *  @param data The bytes data that makes up the batch of function calls to execute.
     *  @return results The bytes data that makes up the result of the batch of function calls executed.
     */
    function multicall(bytes[] calldata data) external virtual override returns (bytes[] memory results) {
        results = new bytes[](data.length);
        for (uint256 i = 0; i < data.length; i++) {
            results[i] = TWAddress.functionDelegateCall(address(this), data[i]);
        }
        return results;
    }
}

File 7 of 24 : ContractMetadata.sol
// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.0;

import "./interface/IContractMetadata.sol";

/**
 *  @title   Contract Metadata
 *  @notice  Thirdweb's `ContractMetadata` is a contract extension for any base contracts. It lets you set a metadata URI
 *           for you contract.
 *           Additionally, `ContractMetadata` is necessary for NFT contracts that want royalties to get distributed on OpenSea.
 */

abstract contract ContractMetadata is IContractMetadata {
    /// @notice Returns the contract metadata URI.
    string public override contractURI;

    /**
     *  @notice         Lets a contract admin set the URI for contract-level metadata.
     *  @dev            Caller should be authorized to setup contractURI, e.g. contract admin.
     *                  See {_canSetContractURI}.
     *                  Emits {ContractURIUpdated Event}.
     *
     *  @param _uri     keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE")
     */
    function setContractURI(string memory _uri) external override {
        if (!_canSetContractURI()) {
            revert("Not authorized");
        }

        _setupContractURI(_uri);
    }

    /// @dev Lets a contract admin set the URI for contract-level metadata.
    function _setupContractURI(string memory _uri) internal {
        string memory prevURI = contractURI;
        contractURI = _uri;

        emit ContractURIUpdated(prevURI, _uri);
    }

    /// @dev Returns whether contract metadata can be set in the given execution context.
    function _canSetContractURI() internal view virtual returns (bool);
}

File 8 of 24 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import "./interface/IERC721A.sol";
import "../openzeppelin-presets/token/ERC721/IERC721Receiver.sol";
import "../lib/TWAddress.sol";
import "../openzeppelin-presets/utils/Context.sol";
import "../lib/TWStrings.sol";
import "./ERC165.sol";

/**
 * @dev Implementation of [ERC721](https://eips.ethereum.org/EIPS/eip-721) 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 Context, ERC165, IERC721A {
    using TWAddress for address;
    using TWStrings for uint256;

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

    // The number of tokens burned.
    uint256 internal _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 _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    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();
        }
    }

    /**
     * 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 See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

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

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].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 {
        _addressData[owner].aux = aux;
    }

    /**
     * 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) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    TokenOwnership memory ownership = _ownerships[curr];
                    if (!ownership.burned) {
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                        // 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.
                        while (true) {
                            curr--;
                            ownership = _ownerships[curr];
                            if (ownership.addr != address(0)) {
                                return ownership;
                            }
                        }
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

    /**
     * @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, tokenId.toString())) : "";
    }

    /**
     * @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 See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

    /**
     * @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 == _msgSender()) revert ApproveToCaller();

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), 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.isContract())
            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 && !_ownerships[tokenId].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 {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

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

            if (to.isContract()) {
                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 {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            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 {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // 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 {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        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 {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // 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 {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        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 Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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 IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == 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 {}
}

File 9 of 24 : DefaultOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {OperatorFilterer} from "./OperatorFilterer.sol";

/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

File 10 of 24 : OperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";

/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

File 11 of 24 : IRoyalty.sol
// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.0;

import "../../eip/interface/IERC2981.sol";

/**
 *  Thirdweb's `Royalty` is a contract extension to be used with any base contract. It exposes functions for setting and reading
 *  the recipient of royalty fee and the royalty fee basis points, and lets the inheriting contract perform conditional logic
 *  that uses information about royalty fees, if desired.
 *
 *  The `Royalty` contract is ERC2981 compliant.
 */

interface IRoyalty is IERC2981 {
    struct RoyaltyInfo {
        address recipient;
        uint256 bps;
    }

    /// @dev Returns the royalty recipient and fee bps.
    function getDefaultRoyaltyInfo() external view returns (address, uint16);

    /// @dev Lets a module admin update the royalty bps and recipient.
    function setDefaultRoyaltyInfo(address _royaltyRecipient, uint256 _royaltyBps) external;

    /// @dev Lets a module admin set the royalty recipient for a particular token Id.
    function setRoyaltyInfoForToken(
        uint256 tokenId,
        address recipient,
        uint256 bps
    ) external;

    /// @dev Returns the royalty recipient for a particular token Id.
    function getRoyaltyInfoForToken(uint256 tokenId) external view returns (address, uint16);

    /// @dev Emitted when royalty info is updated.
    event DefaultRoyalty(address indexed newRoyaltyRecipient, uint256 newRoyaltyBps);

    /// @dev Emitted when royalty recipient for tokenId is set
    event RoyaltyForToken(uint256 indexed tokenId, address indexed royaltyRecipient, uint256 royaltyBps);
}

File 12 of 24 : IOwnable.sol
// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.0;

/**
 *  Thirdweb's `Ownable` is a contract extension to be used with any base contract. It exposes functions for setting and reading
 *  who the 'owner' of the inheriting smart contract is, and lets the inheriting contract perform conditional logic that uses
 *  information about who the contract's owner is.
 */

interface IOwnable {
    /// @dev Returns the owner of the contract.
    function owner() external view returns (address);

    /// @dev Lets a module admin set a new owner for the contract. The new owner must be a module admin.
    function setOwner(address _newOwner) external;

    /// @dev Emitted when a new Owner is set.
    event OwnerUpdated(address indexed prevOwner, address indexed newOwner);
}

File 13 of 24 : IMulticall.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Multicall.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides a function to batch together multiple calls in a single external call.
 *
 * _Available since v4.1._
 */
interface IMulticall {
    /**
     * @dev Receives and executes a batch of function calls on this contract.
     */
    function multicall(bytes[] calldata data) external returns (bytes[] memory results);
}

File 14 of 24 : TWAddress.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.0;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 15 of 24 : IContractMetadata.sol
// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.0;

/**
 *  Thirdweb's `ContractMetadata` is a contract extension for any base contracts. It lets you set a metadata URI
 *  for you contract.
 *
 *  Additionally, `ContractMetadata` is necessary for NFT contracts that want royalties to get distributed on OpenSea.
 */

interface IContractMetadata {
    /// @dev Returns the metadata URI of the contract.
    function contractURI() external view returns (string memory);

    /**
     *  @dev Sets contract URI for the storefront-level metadata of the contract.
     *       Only module admin can call this function.
     */
    function setContractURI(string calldata _uri) external;

    /// @dev Emitted when the contract URI is updated.
    event ContractURIUpdated(string prevURI, string newURI);
}

File 16 of 24 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./interface/IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 17 of 24 : Context.sol
// SPDX-License-Identifier: MIT
// 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 18 of 24 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 19 of 24 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import "./IERC721.sol";
import "./IERC721Metadata.sol";

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * 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();

    // Compiler will pack this into a single 256bit word.
    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;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

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

File 20 of 24 : IOperatorFilterRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

File 21 of 24 : IERC2981.sol
// SPDX-License-Identifier: Apache 2.0
pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be payed in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

File 22 of 24 : IERC721Metadata.sol
// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.0;

/// @title ERC-721 Non-Fungible Token Standard, optional metadata extension
/// @dev See https://eips.ethereum.org/EIPS/eip-721
///  Note: the ERC-165 identifier for this interface is 0x5b5e139f.
/* is ERC721 */
interface IERC721Metadata {
    /// @notice A descriptive name for a collection of NFTs in this contract
    function name() external view returns (string memory);

    /// @notice An abbreviated name for NFTs in this contract
    function symbol() external view returns (string memory);

    /// @notice A distinct Uniform Resource Identifier (URI) for a given asset.
    /// @dev Throws if `_tokenId` is not a valid NFT. URIs are defined in RFC
    ///  3986. The URI may point to a JSON file that conforms to the "ERC721
    ///  Metadata JSON Schema".
    function tokenURI(uint256 _tokenId) external view returns (string memory);
}

File 23 of 24 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface 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);

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

    /**
     * @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 Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address);

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

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

File 24 of 24 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * [EIP](https://eips.ethereum.org/EIPS/eip-165).
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_royaltyRecipient","type":"address"},{"internalType":"uint128","name":"_royaltyBps","type":"uint128"}],"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":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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":false,"internalType":"string","name":"prevURI","type":"string"},{"indexed":false,"internalType":"string","name":"newURI","type":"string"}],"name":"ContractURIUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newRoyaltyRecipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"newRoyaltyBps","type":"uint256"}],"name":"DefaultRoyalty","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"prevOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnerUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"royaltyRecipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"royaltyBps","type":"uint256"}],"name":"RoyaltyForToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"_isApprovedOrOwner","outputs":[{"internalType":"bool","name":"isApprovedOrOwnerOf","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"batchMintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burnByTokenID","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURICount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"getBatchIdAtIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDefaultRoyaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getRoyaltyInfoForToken","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"multicall","outputs":[{"internalType":"bytes[]","name":"results","type":"bytes[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextTokenIdToMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"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":"_uri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_royaltyRecipient","type":"address"},{"internalType":"uint256","name":"_royaltyBps","type":"uint256"}],"name":"setDefaultRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"setOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_bps","type":"uint256"}],"name":"setRoyaltyInfoForToken","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"}]

60806040523480156200001157600080fd5b50604051620054e7380380620054e78339818101604052810190620000379190620006d0565b733cc6cdda760b79bafa08df41ecfa224f810dceb6600185858160029081620000619190620009cb565b508060039081620000739190620009cb565b5062000084620002c260201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200028157801562000147576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200010d92919062000ac3565b600060405180830381600087803b1580156200012857600080fd5b505af11580156200013d573d6000803e3d6000fd5b5050505062000280565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000201576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620001c792919062000ac3565b600060405180830381600087803b158015620001e257600080fd5b505af1158015620001f7573d6000803e3d6000fd5b505050506200027f565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200024a919062000af0565b600060405180830381600087803b1580156200026557600080fd5b505af11580156200027a573d6000803e3d6000fd5b505050505b5b5b50506200029433620002cb60201b60201c565b620002b882826fffffffffffffffffffffffffffffffff166200039160201b60201c565b5050505062000bbe565b60006001905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8292fce18fa69edf4db7b94ea2e58241df0ae57f97e0a6c9b29067028bf92d7660405160405180910390a35050565b612710811115620003d9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003d09062000b6e565b60405180910390fd5b81600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600a60146101000a81548161ffff021916908361ffff1602179055508173ffffffffffffffffffffffffffffffffffffffff167f90d7ec04bcb8978719414f82e52e4cb651db41d0e6f8cea6118c2191e6183adb826040516200047f919062000ba1565b60405180910390a25050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620004f482620004a9565b810181811067ffffffffffffffff82111715620005165762000515620004ba565b5b80604052505050565b60006200052b6200048b565b9050620005398282620004e9565b919050565b600067ffffffffffffffff8211156200055c576200055b620004ba565b5b6200056782620004a9565b9050602081019050919050565b60005b838110156200059457808201518184015260208101905062000577565b60008484015250505050565b6000620005b7620005b1846200053e565b6200051f565b905082815260208101848484011115620005d657620005d5620004a4565b5b620005e384828562000574565b509392505050565b600082601f8301126200060357620006026200049f565b5b815162000615848260208601620005a0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200064b826200061e565b9050919050565b6200065d816200063e565b81146200066957600080fd5b50565b6000815190506200067d8162000652565b92915050565b60006fffffffffffffffffffffffffffffffff82169050919050565b620006aa8162000683565b8114620006b657600080fd5b50565b600081519050620006ca816200069f565b92915050565b60008060008060808587031215620006ed57620006ec62000495565b5b600085015167ffffffffffffffff8111156200070e576200070d6200049a565b5b6200071c87828801620005eb565b945050602085015167ffffffffffffffff81111562000740576200073f6200049a565b5b6200074e87828801620005eb565b935050604062000761878288016200066c565b92505060606200077487828801620006b9565b91505092959194509250565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007d357607f821691505b602082108103620007e957620007e86200078b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620008537fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000814565b6200085f868362000814565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008ac620008a6620008a08462000877565b62000881565b62000877565b9050919050565b6000819050919050565b620008c8836200088b565b620008e0620008d782620008b3565b84845462000821565b825550505050565b600090565b620008f7620008e8565b62000904818484620008bd565b505050565b5b818110156200092c5762000920600082620008ed565b6001810190506200090a565b5050565b601f8211156200097b576200094581620007ef565b620009508462000804565b8101602085101562000960578190505b620009786200096f8562000804565b83018262000909565b50505b505050565b600082821c905092915050565b6000620009a06000198460080262000980565b1980831691505092915050565b6000620009bb83836200098d565b9150826002028217905092915050565b620009d68262000780565b67ffffffffffffffff811115620009f257620009f1620004ba565b5b620009fe8254620007ba565b62000a0b82828562000930565b600060209050601f83116001811462000a43576000841562000a2e578287015190505b62000a3a8582620009ad565b86555062000aaa565b601f19841662000a5386620007ef565b60005b8281101562000a7d5784890151825560018201915060208501945060208101905062000a56565b8683101562000a9d578489015162000a99601f8916826200098d565b8355505b6001600288020188555050505b505050505050565b62000abd816200063e565b82525050565b600060408201905062000ada600083018562000ab2565b62000ae9602083018462000ab2565b9392505050565b600060208201905062000b07600083018462000ab2565b92915050565b600082825260208201905092915050565b7f45786365656473206d6178206270730000000000000000000000000000000000600082015250565b600062000b56600f8362000b0d565b915062000b638262000b1e565b602082019050919050565b6000602082019050818103600083015262000b898162000b47565b9050919050565b62000b9b8162000877565b82525050565b600060208201905062000bb8600083018462000b90565b92915050565b6149198062000bce6000396000f3fe608060405234801561001057600080fd5b50600436106101ef5760003560e01c80636352211e1161010f5780639bcf7a15116100a2578063b88d4fde11610071578063b88d4fde146105cb578063c87b56dd146105e7578063e8a3d48514610617578063e985e9c514610635576101ef565b80639bcf7a1514610544578063a22cb46514610560578063ac9650d81461057c578063b24f2d39146105ac576101ef565b806381c59f9c116100de57806381c59f9c146104d05780638da5cb5b146104ec578063938e3d7b1461050a57806395d89b4114610526576101ef565b80636352211e1461043657806363b45e2d1461046657806370a0823114610484578063754a81d9146104b4576101ef565b80632419f51b1161018757806342842e0e1161015657806342842e0e1461039d5780634cc157df146103b95780634cdc9549146103ea578063600dd5ea1461041a576101ef565b80632419f51b146103005780632a55205a146103305780633b1475a71461036157806341f434341461037f576101ef565b8063095ea7b3116101c3578063095ea7b31461028e57806313af4035146102aa57806318160ddd146102c657806323b872dd146102e4576101ef565b806275a317146101f457806301ffc9a71461021057806306fdde0314610240578063081812fc1461025e575b600080fd5b61020e60048036038101906102099190613505565b610665565b005b61022a600480360381019061022591906135b9565b6106dc565b6040516102379190613601565b60405180910390f35b6102486107d6565b604051610255919061369b565b60405180910390f35b610278600480360381019061027391906136f3565b610868565b604051610285919061372f565b60405180910390f35b6102a860048036038101906102a3919061374a565b6108e4565b005b6102c460048036038101906102bf919061378a565b6108fd565b005b6102ce610950565b6040516102db91906137c6565b60405180910390f35b6102fe60048036038101906102f991906137e1565b610967565b005b61031a600480360381019061031591906136f3565b6109b6565b60405161032791906137c6565b60405180910390f35b61034a60048036038101906103459190613834565b610a27565b604051610358929190613874565b60405180910390f35b610369610a65565b60405161037691906137c6565b60405180910390f35b610387610a6e565b60405161039491906138fc565b60405180910390f35b6103b760048036038101906103b291906137e1565b610a80565b005b6103d360048036038101906103ce91906136f3565b610acf565b6040516103e1929190613934565b60405180910390f35b61040460048036038101906103ff919061374a565b610bda565b6040516104119190613601565b60405180910390f35b610434600480360381019061042f919061374a565b610c6f565b005b610450600480360381019061044b91906136f3565b610cc4565b60405161045d919061372f565b60405180910390f35b61046e610cda565b60405161047b91906137c6565b60405180910390f35b61049e6004803603810190610499919061378a565b610ce7565b6040516104ab91906137c6565b60405180910390f35b6104ce60048036038101906104c991906139fe565b610db6565b005b6104ea60048036038101906104e591906136f3565b610e22565b005b6104f4610e30565b604051610501919061372f565b60405180910390f35b610524600480360381019061051f9190613a9d565b610e5a565b005b61052e610ead565b60405161053b919061369b565b60405180910390f35b61055e60048036038101906105599190613ae6565b610f3f565b005b61057a60048036038101906105759190613b65565b610f96565b005b61059660048036038101906105919190613c05565b610faf565b6040516105a39190613d69565b60405180910390f35b6105b46110bb565b6040516105c2929190613934565b60405180910390f35b6105e560048036038101906105e09190613d8b565b6110fa565b005b61060160048036038101906105fc91906136f3565b61114b565b60405161060e919061369b565b60405180910390f35b61061f611241565b60405161062c919061369b565b60405180910390f35b61064f600480360381019061064a9190613e0e565b6112cf565b60405161065c9190613601565b60405180910390f35b61066d611363565b6106ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a390613e9a565b60405180910390fd5b6106bd6106b7610a65565b826113a0565b6106d882600160405180602001604052806000815250611427565b5050565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107675750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107cf57507f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107e590613ee9565b80601f016020809104026020016040519081016040528092919081815260200182805461081190613ee9565b801561085e5780601f106108335761010080835404028352916020019161085e565b820191906000526020600020905b81548152906001019060200180831161084157829003601f168201915b5050505050905090565b6000610873826117e7565b6108a9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b816108ee81611835565b6108f88383611932565b505050565b610905611a36565b610944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093b90613f66565b60405180910390fd5b61094d81611a73565b50565b600061095a611b39565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109a5576109a433611835565b5b6109b0848484611b42565b50505050565b60006109c0610cda565b8210610a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f890613fd2565b60405180910390fd5b600c8281548110610a1557610a14613ff2565b5b90600052602060002001549050919050565b600080600080610a3686610acf565b61ffff16915091508193506127108186610a509190614050565b610a5a91906140c1565b925050509250929050565b60008054905090565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610abe57610abd33611835565b5b610ac9848484611b52565b50505050565b6000806000600b60008581526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016001820154815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610b9b5780600001518160200151610bd0565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a60149054906101000a900461ffff165b9250925050915091565b600080610be683610cc4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610c285750610c2781856112cf565b5b80610c6657508373ffffffffffffffffffffffffffffffffffffffff16610c4e84610868565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b610c77611b72565b610cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cad90613f66565b60405180910390fd5b610cc08282611baf565b5050565b6000610ccf82611ca4565b600001519050919050565b6000600c80549050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d4e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610dbe611363565b610dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df490613e9a565b60405180910390fd5b610e0f610e08610a65565b8484611f2f565b5050610e1c848483611427565b50505050565b610e2d816001611f95565b50565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e62612384565b610ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9890613f66565b60405180910390fd5b610eaa816123c1565b50565b606060038054610ebc90613ee9565b80601f0160208091040260200160405190810160405280929190818152602001828054610ee890613ee9565b8015610f355780601f10610f0a57610100808354040283529160200191610f35565b820191906000526020600020905b815481529060010190602001808311610f1857829003601f168201915b5050505050905090565b610f47611b72565b610f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7d90613f66565b60405180910390fd5b610f9183838361249d565b505050565b81610fa081611835565b610faa83836125c8565b505050565b60608282905067ffffffffffffffff811115610fce57610fcd6133da565b5b60405190808252806020026020018201604052801561100157816020015b6060815260200190600190039081610fec5790505b50905060005b838390508110156110b4576110833085858481811061102957611028613ff2565b5b905060200281019061103b9190614101565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505061273f565b82828151811061109657611095613ff2565b5b602002602001018190525080806110ac90614164565b915050611007565b5092915050565b600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a60149054906101000a900461ffff16915091509091565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111385761113733611835565b5b6111448585858561276c565b5050505050565b60606000600e6000848152602001908152602001600020805461116d90613ee9565b80601f016020809104026020016040519081016040528092919081815260200182805461119990613ee9565b80156111e65780601f106111bb576101008083540402835291602001916111e6565b820191906000526020600020905b8154815290600101906020018083116111c957829003601f168201915b50505050509050600081511115611200578091505061123c565b600061120b846127e4565b90508061121785612989565b6040516020016112289291906141e8565b604051602081830303815290604052925050505b919050565b6008805461124e90613ee9565b80601f016020809104026020016040519081016040528092919081815260200182805461127a90613ee9565b80156112c75780601f1061129c576101008083540402835291602001916112c7565b820191906000526020600020905b8154815290600101906020018083116112aa57829003601f168201915b505050505081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600061136d610e30565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b6000600e600084815260200190815260200160002080546113c090613ee9565b905014611402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f990614258565b60405180910390fd5b80600e60008481526020019081526020016000209081611422919061441a565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611493576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083036114cd576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114da6000858386612ae9565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000848201905061169b8673ffffffffffffffffffffffffffffffffffffffff16612aef565b15611760575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117106000878480600101955087612b12565b611746576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106116a157826000541461175b57600080fd5b6117cb565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611761575b8160008190555050506117e16000858386612c62565b50505050565b6000816117f2611b39565b11158015611801575060005482105b801561182e575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561192f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016118ac9291906144ec565b602060405180830381865afa1580156118c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118ed919061452a565b61192e57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611925919061372f565b60405180910390fd5b5b50565b600061193d82610cc4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119a4576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166119c3612c68565b73ffffffffffffffffffffffffffffffffffffffff1614611a26576119ef816119ea612c68565b6112cf565b611a25576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b611a31838383612c70565b505050565b6000611a40610e30565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8292fce18fa69edf4db7b94ea2e58241df0ae57f97e0a6c9b29067028bf92d7660405160405180910390a35050565b60006001905090565b611b4d838383612d22565b505050565b611b6d838383604051806020016040528060008152506110fa565b505050565b6000611b7c610e30565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b612710811115611bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611beb906145a3565b60405180910390fd5b81600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600a60146101000a81548161ffff021916908361ffff1602179055508173ffffffffffffffffffffffffffffffffffffffff167f90d7ec04bcb8978719414f82e52e4cb651db41d0e6f8cea6118c2191e6183adb82604051611c9891906137c6565b60405180910390a25050565b611cac61330a565b600082905080611cba611b39565b11611ef857600054811015611ef7576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611ef557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611dd9578092505050611f2a565b5b600115611ef457818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611eef578092505050611f2a565b611dda565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000808385611f3e91906145c3565b9050809150600c81908060018154018082558091505060019003906000526020600020016000909190919091505582600d60008381526020019081526020016000209081611f8c919061441a565b50935093915050565b6000611fa083611ca4565b905060008160000151905082156120815760008173ffffffffffffffffffffffffffffffffffffffff16611fd2612c68565b73ffffffffffffffffffffffffffffffffffffffff161480612001575061200082611ffb612c68565b6112cf565b5b80612046575061200f612c68565b73ffffffffffffffffffffffffffffffffffffffff1661202e86610868565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061207f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b61208f816000866001612ae9565b61209b60008583612c70565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060018160000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060018160000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008781526020019081526020016000209050828160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600181600001601c6101000a81548160ff02191690831515021790555060006001870190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036122fe5760005482146122fd57848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5050505083600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461236c816000866001612c62565b60016000815480929190600101919050555050505050565b600061238e610e30565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b6000600880546123d090613ee9565b80601f01602080910402602001604051908101604052809291908181526020018280546123fc90613ee9565b80156124495780601f1061241e57610100808354040283529160200191612449565b820191906000526020600020905b81548152906001019060200180831161242c57829003601f168201915b50505050509050816008908161245f919061441a565b507fc9c7c3fe08b88b4df9d4d47ef47d2c43d55c025a0ba88ca442580ed9e7348a1681836040516124919291906145f7565b60405180910390a15050565b6127108111156124e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d9906145a3565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff16815260200182815250600b600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550602082015181600101559050508173ffffffffffffffffffffffffffffffffffffffff16837f7365cf4122f072a3365c20d54eff9b38d73c096c28e1892ec8f5b0e403a0f12d836040516125bb91906137c6565b60405180910390a3505050565b6125d0612c68565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612634576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000612641612c68565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166126ee612c68565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516127339190613601565b60405180910390a35050565b606061276483836040518060600160405280602781526020016148bd602791396131d6565b905092915050565b612777848484612d22565b6127968373ffffffffffffffffffffffffffffffffffffffff16612aef565b156127de576127a784848484612b12565b6127dd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060006127f0610cda565b90506000600c80548060200260200160405190810160405280929190818152602001828054801561284057602002820191906000526020600020905b81548152602001906001019080831161282c575b5050505050905060005b828110156129485781818151811061286557612864613ff2565b5b602002602001015185101561293457600d600083838151811061288b5761288a613ff2565b5b6020026020010151815260200190815260200160002080546128ac90613ee9565b80601f01602080910402602001604051908101604052809291908181526020018280546128d890613ee9565b80156129255780601f106128fa57610100808354040283529160200191612925565b820191906000526020600020905b81548152906001019060200180831161290857829003601f168201915b50505050509350505050612984565b60018161294191906145c3565b905061284a565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297b9061467a565b60405180910390fd5b919050565b6060600082036129d0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ae4565b600082905060005b60008214612a025780806129eb90614164565b915050600a826129fb91906140c1565b91506129d8565b60008167ffffffffffffffff811115612a1e57612a1d6133da565b5b6040519080825280601f01601f191660200182016040528015612a505781602001600182028036833780820191505090505b5090505b60008514612add57600182612a69919061469a565b9150600a85612a7891906146ce565b6030612a8491906145c3565b60f81b818381518110612a9a57612a99613ff2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ad691906140c1565b9450612a54565b8093505050505b919050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b38612c68565b8786866040518563ffffffff1660e01b8152600401612b5a9493929190614749565b6020604051808303816000875af1925050508015612b9657506040513d601f19601f82011682018060405250810190612b9391906147aa565b60015b612c0f573d8060008114612bc6576040519150601f19603f3d011682016040523d82523d6000602084013e612bcb565b606091505b506000815103612c07576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612d2d82611ca4565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612d98576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612db9612c68565b73ffffffffffffffffffffffffffffffffffffffff161480612de85750612de785612de2612c68565b6112cf565b5b80612e2d5750612df6612c68565b73ffffffffffffffffffffffffffffffffffffffff16612e1584610868565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612e66576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612ecc576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ed98585856001612ae9565b612ee560008487612c70565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361316457600054821461316357878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46131cf8585856001612c62565b5050505050565b60606131e184612aef565b613220576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321790614849565b60405180910390fd5b6000808573ffffffffffffffffffffffffffffffffffffffff168560405161324891906148a5565b600060405180830381855af49150503d8060008114613283576040519150601f19603f3d011682016040523d82523d6000602084013e613288565b606091505b50915091506132988282866132a3565b925050509392505050565b606083156132b357829050613303565b6000835111156132c65782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132fa919061369b565b60405180910390fd5b9392505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061338c82613361565b9050919050565b61339c81613381565b81146133a757600080fd5b50565b6000813590506133b981613393565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613412826133c9565b810181811067ffffffffffffffff82111715613431576134306133da565b5b80604052505050565b600061344461334d565b90506134508282613409565b919050565b600067ffffffffffffffff8211156134705761346f6133da565b5b613479826133c9565b9050602081019050919050565b82818337600083830152505050565b60006134a86134a384613455565b61343a565b9050828152602081018484840111156134c4576134c36133c4565b5b6134cf848285613486565b509392505050565b600082601f8301126134ec576134eb6133bf565b5b81356134fc848260208601613495565b91505092915050565b6000806040838503121561351c5761351b613357565b5b600061352a858286016133aa565b925050602083013567ffffffffffffffff81111561354b5761354a61335c565b5b613557858286016134d7565b9150509250929050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61359681613561565b81146135a157600080fd5b50565b6000813590506135b38161358d565b92915050565b6000602082840312156135cf576135ce613357565b5b60006135dd848285016135a4565b91505092915050565b60008115159050919050565b6135fb816135e6565b82525050565b600060208201905061361660008301846135f2565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561365657808201518184015260208101905061363b565b60008484015250505050565b600061366d8261361c565b6136778185613627565b9350613687818560208601613638565b613690816133c9565b840191505092915050565b600060208201905081810360008301526136b58184613662565b905092915050565b6000819050919050565b6136d0816136bd565b81146136db57600080fd5b50565b6000813590506136ed816136c7565b92915050565b60006020828403121561370957613708613357565b5b6000613717848285016136de565b91505092915050565b61372981613381565b82525050565b60006020820190506137446000830184613720565b92915050565b6000806040838503121561376157613760613357565b5b600061376f858286016133aa565b9250506020613780858286016136de565b9150509250929050565b6000602082840312156137a05761379f613357565b5b60006137ae848285016133aa565b91505092915050565b6137c0816136bd565b82525050565b60006020820190506137db60008301846137b7565b92915050565b6000806000606084860312156137fa576137f9613357565b5b6000613808868287016133aa565b9350506020613819868287016133aa565b925050604061382a868287016136de565b9150509250925092565b6000806040838503121561384b5761384a613357565b5b6000613859858286016136de565b925050602061386a858286016136de565b9150509250929050565b60006040820190506138896000830185613720565b61389660208301846137b7565b9392505050565b6000819050919050565b60006138c26138bd6138b884613361565b61389d565b613361565b9050919050565b60006138d4826138a7565b9050919050565b60006138e6826138c9565b9050919050565b6138f6816138db565b82525050565b600060208201905061391160008301846138ed565b92915050565b600061ffff82169050919050565b61392e81613917565b82525050565b60006040820190506139496000830185613720565b6139566020830184613925565b9392505050565b600067ffffffffffffffff821115613978576139776133da565b5b613981826133c9565b9050602081019050919050565b60006139a161399c8461395d565b61343a565b9050828152602081018484840111156139bd576139bc6133c4565b5b6139c8848285613486565b509392505050565b600082601f8301126139e5576139e46133bf565b5b81356139f584826020860161398e565b91505092915050565b60008060008060808587031215613a1857613a17613357565b5b6000613a26878288016133aa565b9450506020613a37878288016136de565b935050604085013567ffffffffffffffff811115613a5857613a5761335c565b5b613a64878288016134d7565b925050606085013567ffffffffffffffff811115613a8557613a8461335c565b5b613a91878288016139d0565b91505092959194509250565b600060208284031215613ab357613ab2613357565b5b600082013567ffffffffffffffff811115613ad157613ad061335c565b5b613add848285016134d7565b91505092915050565b600080600060608486031215613aff57613afe613357565b5b6000613b0d868287016136de565b9350506020613b1e868287016133aa565b9250506040613b2f868287016136de565b9150509250925092565b613b42816135e6565b8114613b4d57600080fd5b50565b600081359050613b5f81613b39565b92915050565b60008060408385031215613b7c57613b7b613357565b5b6000613b8a858286016133aa565b9250506020613b9b85828601613b50565b9150509250929050565b600080fd5b600080fd5b60008083601f840112613bc557613bc46133bf565b5b8235905067ffffffffffffffff811115613be257613be1613ba5565b5b602083019150836020820283011115613bfe57613bfd613baa565b5b9250929050565b60008060208385031215613c1c57613c1b613357565b5b600083013567ffffffffffffffff811115613c3a57613c3961335c565b5b613c4685828601613baf565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b600081519050919050565b600082825260208201905092915050565b6000613ca582613c7e565b613caf8185613c89565b9350613cbf818560208601613638565b613cc8816133c9565b840191505092915050565b6000613cdf8383613c9a565b905092915050565b6000602082019050919050565b6000613cff82613c52565b613d098185613c5d565b935083602082028501613d1b85613c6e565b8060005b85811015613d575784840389528151613d388582613cd3565b9450613d4383613ce7565b925060208a01995050600181019050613d1f565b50829750879550505050505092915050565b60006020820190508181036000830152613d838184613cf4565b905092915050565b60008060008060808587031215613da557613da4613357565b5b6000613db3878288016133aa565b9450506020613dc4878288016133aa565b9350506040613dd5878288016136de565b925050606085013567ffffffffffffffff811115613df657613df561335c565b5b613e02878288016139d0565b91505092959194509250565b60008060408385031215613e2557613e24613357565b5b6000613e33858286016133aa565b9250506020613e44858286016133aa565b9150509250929050565b7f4e6f7420617574686f72697a656420746f206d696e742e000000000000000000600082015250565b6000613e84601783613627565b9150613e8f82613e4e565b602082019050919050565b60006020820190508181036000830152613eb381613e77565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613f0157607f821691505b602082108103613f1457613f13613eba565b5b50919050565b7f4e6f7420617574686f72697a6564000000000000000000000000000000000000600082015250565b6000613f50600e83613627565b9150613f5b82613f1a565b602082019050919050565b60006020820190508181036000830152613f7f81613f43565b9050919050565b7f496e76616c696420696e64657800000000000000000000000000000000000000600082015250565b6000613fbc600d83613627565b9150613fc782613f86565b602082019050919050565b60006020820190508181036000830152613feb81613faf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061405b826136bd565b9150614066836136bd565b9250828202614074816136bd565b9150828204841483151761408b5761408a614021565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006140cc826136bd565b91506140d7836136bd565b9250826140e7576140e6614092565b5b828204905092915050565b600080fd5b600080fd5b600080fd5b6000808335600160200384360303811261411e5761411d6140f2565b5b80840192508235915067ffffffffffffffff8211156141405761413f6140f7565b5b60208301925060018202360383131561415c5761415b6140fc565b5b509250929050565b600061416f826136bd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036141a1576141a0614021565b5b600182019050919050565b600081905092915050565b60006141c28261361c565b6141cc81856141ac565b93506141dc818560208601613638565b80840191505092915050565b60006141f482856141b7565b915061420082846141b7565b91508190509392505050565b7f55524920616c7265616479207365740000000000000000000000000000000000600082015250565b6000614242600f83613627565b915061424d8261420c565b602082019050919050565b6000602082019050818103600083015261427181614235565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026142da7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261429d565b6142e4868361429d565b95508019841693508086168417925050509392505050565b600061431761431261430d846136bd565b61389d565b6136bd565b9050919050565b6000819050919050565b614331836142fc565b61434561433d8261431e565b8484546142aa565b825550505050565b600090565b61435a61434d565b614365818484614328565b505050565b5b818110156143895761437e600082614352565b60018101905061436b565b5050565b601f8211156143ce5761439f81614278565b6143a88461428d565b810160208510156143b7578190505b6143cb6143c38561428d565b83018261436a565b50505b505050565b600082821c905092915050565b60006143f1600019846008026143d3565b1980831691505092915050565b600061440a83836143e0565b9150826002028217905092915050565b6144238261361c565b67ffffffffffffffff81111561443c5761443b6133da565b5b6144468254613ee9565b61445182828561438d565b600060209050601f8311600181146144845760008415614472578287015190505b61447c85826143fe565b8655506144e4565b601f19841661449286614278565b60005b828110156144ba57848901518255600182019150602085019450602081019050614495565b868310156144d757848901516144d3601f8916826143e0565b8355505b6001600288020188555050505b505050505050565b60006040820190506145016000830185613720565b61450e6020830184613720565b9392505050565b60008151905061452481613b39565b92915050565b6000602082840312156145405761453f613357565b5b600061454e84828501614515565b91505092915050565b7f45786365656473206d6178206270730000000000000000000000000000000000600082015250565b600061458d600f83613627565b915061459882614557565b602082019050919050565b600060208201905081810360008301526145bc81614580565b9050919050565b60006145ce826136bd565b91506145d9836136bd565b92508282019050808211156145f1576145f0614021565b5b92915050565b600060408201905081810360008301526146118185613662565b905081810360208301526146258184613662565b90509392505050565b7f496e76616c696420746f6b656e49640000000000000000000000000000000000600082015250565b6000614664600f83613627565b915061466f8261462e565b602082019050919050565b6000602082019050818103600083015261469381614657565b9050919050565b60006146a5826136bd565b91506146b0836136bd565b92508282039050818111156146c8576146c7614021565b5b92915050565b60006146d9826136bd565b91506146e4836136bd565b9250826146f4576146f3614092565b5b828206905092915050565b600082825260208201905092915050565b600061471b82613c7e565b61472581856146ff565b9350614735818560208601613638565b61473e816133c9565b840191505092915050565b600060808201905061475e6000830187613720565b61476b6020830186613720565b61477860408301856137b7565b818103606083015261478a8184614710565b905095945050505050565b6000815190506147a48161358d565b92915050565b6000602082840312156147c0576147bf613357565b5b60006147ce84828501614795565b91505092915050565b7f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f60008201527f6e74726163740000000000000000000000000000000000000000000000000000602082015250565b6000614833602683613627565b915061483e826147d7565b604082019050919050565b6000602082019050818103600083015261486281614826565b9050919050565b600081905092915050565b600061487f82613c7e565b6148898185614869565b9350614899818560208601613638565b80840191505092915050565b60006148b18284614874565b91508190509291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220b1cec427d21b7b8572ae70c72ab909b205b554b41d0b65bbb1d55f460b5b0d4964736f6c63430008110033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000ceaeecf9b3ba04b70bd7d64e267a5a36472a1ca800000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000000000000000000000000000000000000000001554686520416c6d69676874792053706172726f77730000000000000000000000000000000000000000000000000000000000000000000000000000000000000853706172726f7773000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101ef5760003560e01c80636352211e1161010f5780639bcf7a15116100a2578063b88d4fde11610071578063b88d4fde146105cb578063c87b56dd146105e7578063e8a3d48514610617578063e985e9c514610635576101ef565b80639bcf7a1514610544578063a22cb46514610560578063ac9650d81461057c578063b24f2d39146105ac576101ef565b806381c59f9c116100de57806381c59f9c146104d05780638da5cb5b146104ec578063938e3d7b1461050a57806395d89b4114610526576101ef565b80636352211e1461043657806363b45e2d1461046657806370a0823114610484578063754a81d9146104b4576101ef565b80632419f51b1161018757806342842e0e1161015657806342842e0e1461039d5780634cc157df146103b95780634cdc9549146103ea578063600dd5ea1461041a576101ef565b80632419f51b146103005780632a55205a146103305780633b1475a71461036157806341f434341461037f576101ef565b8063095ea7b3116101c3578063095ea7b31461028e57806313af4035146102aa57806318160ddd146102c657806323b872dd146102e4576101ef565b806275a317146101f457806301ffc9a71461021057806306fdde0314610240578063081812fc1461025e575b600080fd5b61020e60048036038101906102099190613505565b610665565b005b61022a600480360381019061022591906135b9565b6106dc565b6040516102379190613601565b60405180910390f35b6102486107d6565b604051610255919061369b565b60405180910390f35b610278600480360381019061027391906136f3565b610868565b604051610285919061372f565b60405180910390f35b6102a860048036038101906102a3919061374a565b6108e4565b005b6102c460048036038101906102bf919061378a565b6108fd565b005b6102ce610950565b6040516102db91906137c6565b60405180910390f35b6102fe60048036038101906102f991906137e1565b610967565b005b61031a600480360381019061031591906136f3565b6109b6565b60405161032791906137c6565b60405180910390f35b61034a60048036038101906103459190613834565b610a27565b604051610358929190613874565b60405180910390f35b610369610a65565b60405161037691906137c6565b60405180910390f35b610387610a6e565b60405161039491906138fc565b60405180910390f35b6103b760048036038101906103b291906137e1565b610a80565b005b6103d360048036038101906103ce91906136f3565b610acf565b6040516103e1929190613934565b60405180910390f35b61040460048036038101906103ff919061374a565b610bda565b6040516104119190613601565b60405180910390f35b610434600480360381019061042f919061374a565b610c6f565b005b610450600480360381019061044b91906136f3565b610cc4565b60405161045d919061372f565b60405180910390f35b61046e610cda565b60405161047b91906137c6565b60405180910390f35b61049e6004803603810190610499919061378a565b610ce7565b6040516104ab91906137c6565b60405180910390f35b6104ce60048036038101906104c991906139fe565b610db6565b005b6104ea60048036038101906104e591906136f3565b610e22565b005b6104f4610e30565b604051610501919061372f565b60405180910390f35b610524600480360381019061051f9190613a9d565b610e5a565b005b61052e610ead565b60405161053b919061369b565b60405180910390f35b61055e60048036038101906105599190613ae6565b610f3f565b005b61057a60048036038101906105759190613b65565b610f96565b005b61059660048036038101906105919190613c05565b610faf565b6040516105a39190613d69565b60405180910390f35b6105b46110bb565b6040516105c2929190613934565b60405180910390f35b6105e560048036038101906105e09190613d8b565b6110fa565b005b61060160048036038101906105fc91906136f3565b61114b565b60405161060e919061369b565b60405180910390f35b61061f611241565b60405161062c919061369b565b60405180910390f35b61064f600480360381019061064a9190613e0e565b6112cf565b60405161065c9190613601565b60405180910390f35b61066d611363565b6106ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a390613e9a565b60405180910390fd5b6106bd6106b7610a65565b826113a0565b6106d882600160405180602001604052806000815250611427565b5050565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107675750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107cf57507f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107e590613ee9565b80601f016020809104026020016040519081016040528092919081815260200182805461081190613ee9565b801561085e5780601f106108335761010080835404028352916020019161085e565b820191906000526020600020905b81548152906001019060200180831161084157829003601f168201915b5050505050905090565b6000610873826117e7565b6108a9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b816108ee81611835565b6108f88383611932565b505050565b610905611a36565b610944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093b90613f66565b60405180910390fd5b61094d81611a73565b50565b600061095a611b39565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109a5576109a433611835565b5b6109b0848484611b42565b50505050565b60006109c0610cda565b8210610a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f890613fd2565b60405180910390fd5b600c8281548110610a1557610a14613ff2565b5b90600052602060002001549050919050565b600080600080610a3686610acf565b61ffff16915091508193506127108186610a509190614050565b610a5a91906140c1565b925050509250929050565b60008054905090565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610abe57610abd33611835565b5b610ac9848484611b52565b50505050565b6000806000600b60008581526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016001820154815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610b9b5780600001518160200151610bd0565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a60149054906101000a900461ffff165b9250925050915091565b600080610be683610cc4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610c285750610c2781856112cf565b5b80610c6657508373ffffffffffffffffffffffffffffffffffffffff16610c4e84610868565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b610c77611b72565b610cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cad90613f66565b60405180910390fd5b610cc08282611baf565b5050565b6000610ccf82611ca4565b600001519050919050565b6000600c80549050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d4e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610dbe611363565b610dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df490613e9a565b60405180910390fd5b610e0f610e08610a65565b8484611f2f565b5050610e1c848483611427565b50505050565b610e2d816001611f95565b50565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e62612384565b610ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9890613f66565b60405180910390fd5b610eaa816123c1565b50565b606060038054610ebc90613ee9565b80601f0160208091040260200160405190810160405280929190818152602001828054610ee890613ee9565b8015610f355780601f10610f0a57610100808354040283529160200191610f35565b820191906000526020600020905b815481529060010190602001808311610f1857829003601f168201915b5050505050905090565b610f47611b72565b610f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7d90613f66565b60405180910390fd5b610f9183838361249d565b505050565b81610fa081611835565b610faa83836125c8565b505050565b60608282905067ffffffffffffffff811115610fce57610fcd6133da565b5b60405190808252806020026020018201604052801561100157816020015b6060815260200190600190039081610fec5790505b50905060005b838390508110156110b4576110833085858481811061102957611028613ff2565b5b905060200281019061103b9190614101565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505061273f565b82828151811061109657611095613ff2565b5b602002602001018190525080806110ac90614164565b915050611007565b5092915050565b600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a60149054906101000a900461ffff16915091509091565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111385761113733611835565b5b6111448585858561276c565b5050505050565b60606000600e6000848152602001908152602001600020805461116d90613ee9565b80601f016020809104026020016040519081016040528092919081815260200182805461119990613ee9565b80156111e65780601f106111bb576101008083540402835291602001916111e6565b820191906000526020600020905b8154815290600101906020018083116111c957829003601f168201915b50505050509050600081511115611200578091505061123c565b600061120b846127e4565b90508061121785612989565b6040516020016112289291906141e8565b604051602081830303815290604052925050505b919050565b6008805461124e90613ee9565b80601f016020809104026020016040519081016040528092919081815260200182805461127a90613ee9565b80156112c75780601f1061129c576101008083540402835291602001916112c7565b820191906000526020600020905b8154815290600101906020018083116112aa57829003601f168201915b505050505081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600061136d610e30565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b6000600e600084815260200190815260200160002080546113c090613ee9565b905014611402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f990614258565b60405180910390fd5b80600e60008481526020019081526020016000209081611422919061441a565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611493576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083036114cd576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114da6000858386612ae9565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000848201905061169b8673ffffffffffffffffffffffffffffffffffffffff16612aef565b15611760575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117106000878480600101955087612b12565b611746576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106116a157826000541461175b57600080fd5b6117cb565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611761575b8160008190555050506117e16000858386612c62565b50505050565b6000816117f2611b39565b11158015611801575060005482105b801561182e575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561192f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016118ac9291906144ec565b602060405180830381865afa1580156118c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118ed919061452a565b61192e57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611925919061372f565b60405180910390fd5b5b50565b600061193d82610cc4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119a4576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166119c3612c68565b73ffffffffffffffffffffffffffffffffffffffff1614611a26576119ef816119ea612c68565b6112cf565b611a25576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b611a31838383612c70565b505050565b6000611a40610e30565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8292fce18fa69edf4db7b94ea2e58241df0ae57f97e0a6c9b29067028bf92d7660405160405180910390a35050565b60006001905090565b611b4d838383612d22565b505050565b611b6d838383604051806020016040528060008152506110fa565b505050565b6000611b7c610e30565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b612710811115611bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611beb906145a3565b60405180910390fd5b81600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600a60146101000a81548161ffff021916908361ffff1602179055508173ffffffffffffffffffffffffffffffffffffffff167f90d7ec04bcb8978719414f82e52e4cb651db41d0e6f8cea6118c2191e6183adb82604051611c9891906137c6565b60405180910390a25050565b611cac61330a565b600082905080611cba611b39565b11611ef857600054811015611ef7576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611ef557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611dd9578092505050611f2a565b5b600115611ef457818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611eef578092505050611f2a565b611dda565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000808385611f3e91906145c3565b9050809150600c81908060018154018082558091505060019003906000526020600020016000909190919091505582600d60008381526020019081526020016000209081611f8c919061441a565b50935093915050565b6000611fa083611ca4565b905060008160000151905082156120815760008173ffffffffffffffffffffffffffffffffffffffff16611fd2612c68565b73ffffffffffffffffffffffffffffffffffffffff161480612001575061200082611ffb612c68565b6112cf565b5b80612046575061200f612c68565b73ffffffffffffffffffffffffffffffffffffffff1661202e86610868565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061207f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b61208f816000866001612ae9565b61209b60008583612c70565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060018160000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060018160000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008781526020019081526020016000209050828160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600181600001601c6101000a81548160ff02191690831515021790555060006001870190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036122fe5760005482146122fd57848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5050505083600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461236c816000866001612c62565b60016000815480929190600101919050555050505050565b600061238e610e30565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b6000600880546123d090613ee9565b80601f01602080910402602001604051908101604052809291908181526020018280546123fc90613ee9565b80156124495780601f1061241e57610100808354040283529160200191612449565b820191906000526020600020905b81548152906001019060200180831161242c57829003601f168201915b50505050509050816008908161245f919061441a565b507fc9c7c3fe08b88b4df9d4d47ef47d2c43d55c025a0ba88ca442580ed9e7348a1681836040516124919291906145f7565b60405180910390a15050565b6127108111156124e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d9906145a3565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff16815260200182815250600b600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550602082015181600101559050508173ffffffffffffffffffffffffffffffffffffffff16837f7365cf4122f072a3365c20d54eff9b38d73c096c28e1892ec8f5b0e403a0f12d836040516125bb91906137c6565b60405180910390a3505050565b6125d0612c68565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612634576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000612641612c68565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166126ee612c68565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516127339190613601565b60405180910390a35050565b606061276483836040518060600160405280602781526020016148bd602791396131d6565b905092915050565b612777848484612d22565b6127968373ffffffffffffffffffffffffffffffffffffffff16612aef565b156127de576127a784848484612b12565b6127dd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060006127f0610cda565b90506000600c80548060200260200160405190810160405280929190818152602001828054801561284057602002820191906000526020600020905b81548152602001906001019080831161282c575b5050505050905060005b828110156129485781818151811061286557612864613ff2565b5b602002602001015185101561293457600d600083838151811061288b5761288a613ff2565b5b6020026020010151815260200190815260200160002080546128ac90613ee9565b80601f01602080910402602001604051908101604052809291908181526020018280546128d890613ee9565b80156129255780601f106128fa57610100808354040283529160200191612925565b820191906000526020600020905b81548152906001019060200180831161290857829003601f168201915b50505050509350505050612984565b60018161294191906145c3565b905061284a565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297b9061467a565b60405180910390fd5b919050565b6060600082036129d0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ae4565b600082905060005b60008214612a025780806129eb90614164565b915050600a826129fb91906140c1565b91506129d8565b60008167ffffffffffffffff811115612a1e57612a1d6133da565b5b6040519080825280601f01601f191660200182016040528015612a505781602001600182028036833780820191505090505b5090505b60008514612add57600182612a69919061469a565b9150600a85612a7891906146ce565b6030612a8491906145c3565b60f81b818381518110612a9a57612a99613ff2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ad691906140c1565b9450612a54565b8093505050505b919050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b38612c68565b8786866040518563ffffffff1660e01b8152600401612b5a9493929190614749565b6020604051808303816000875af1925050508015612b9657506040513d601f19601f82011682018060405250810190612b9391906147aa565b60015b612c0f573d8060008114612bc6576040519150601f19603f3d011682016040523d82523d6000602084013e612bcb565b606091505b506000815103612c07576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612d2d82611ca4565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612d98576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612db9612c68565b73ffffffffffffffffffffffffffffffffffffffff161480612de85750612de785612de2612c68565b6112cf565b5b80612e2d5750612df6612c68565b73ffffffffffffffffffffffffffffffffffffffff16612e1584610868565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612e66576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612ecc576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ed98585856001612ae9565b612ee560008487612c70565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361316457600054821461316357878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46131cf8585856001612c62565b5050505050565b60606131e184612aef565b613220576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321790614849565b60405180910390fd5b6000808573ffffffffffffffffffffffffffffffffffffffff168560405161324891906148a5565b600060405180830381855af49150503d8060008114613283576040519150601f19603f3d011682016040523d82523d6000602084013e613288565b606091505b50915091506132988282866132a3565b925050509392505050565b606083156132b357829050613303565b6000835111156132c65782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132fa919061369b565b60405180910390fd5b9392505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061338c82613361565b9050919050565b61339c81613381565b81146133a757600080fd5b50565b6000813590506133b981613393565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613412826133c9565b810181811067ffffffffffffffff82111715613431576134306133da565b5b80604052505050565b600061344461334d565b90506134508282613409565b919050565b600067ffffffffffffffff8211156134705761346f6133da565b5b613479826133c9565b9050602081019050919050565b82818337600083830152505050565b60006134a86134a384613455565b61343a565b9050828152602081018484840111156134c4576134c36133c4565b5b6134cf848285613486565b509392505050565b600082601f8301126134ec576134eb6133bf565b5b81356134fc848260208601613495565b91505092915050565b6000806040838503121561351c5761351b613357565b5b600061352a858286016133aa565b925050602083013567ffffffffffffffff81111561354b5761354a61335c565b5b613557858286016134d7565b9150509250929050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61359681613561565b81146135a157600080fd5b50565b6000813590506135b38161358d565b92915050565b6000602082840312156135cf576135ce613357565b5b60006135dd848285016135a4565b91505092915050565b60008115159050919050565b6135fb816135e6565b82525050565b600060208201905061361660008301846135f2565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561365657808201518184015260208101905061363b565b60008484015250505050565b600061366d8261361c565b6136778185613627565b9350613687818560208601613638565b613690816133c9565b840191505092915050565b600060208201905081810360008301526136b58184613662565b905092915050565b6000819050919050565b6136d0816136bd565b81146136db57600080fd5b50565b6000813590506136ed816136c7565b92915050565b60006020828403121561370957613708613357565b5b6000613717848285016136de565b91505092915050565b61372981613381565b82525050565b60006020820190506137446000830184613720565b92915050565b6000806040838503121561376157613760613357565b5b600061376f858286016133aa565b9250506020613780858286016136de565b9150509250929050565b6000602082840312156137a05761379f613357565b5b60006137ae848285016133aa565b91505092915050565b6137c0816136bd565b82525050565b60006020820190506137db60008301846137b7565b92915050565b6000806000606084860312156137fa576137f9613357565b5b6000613808868287016133aa565b9350506020613819868287016133aa565b925050604061382a868287016136de565b9150509250925092565b6000806040838503121561384b5761384a613357565b5b6000613859858286016136de565b925050602061386a858286016136de565b9150509250929050565b60006040820190506138896000830185613720565b61389660208301846137b7565b9392505050565b6000819050919050565b60006138c26138bd6138b884613361565b61389d565b613361565b9050919050565b60006138d4826138a7565b9050919050565b60006138e6826138c9565b9050919050565b6138f6816138db565b82525050565b600060208201905061391160008301846138ed565b92915050565b600061ffff82169050919050565b61392e81613917565b82525050565b60006040820190506139496000830185613720565b6139566020830184613925565b9392505050565b600067ffffffffffffffff821115613978576139776133da565b5b613981826133c9565b9050602081019050919050565b60006139a161399c8461395d565b61343a565b9050828152602081018484840111156139bd576139bc6133c4565b5b6139c8848285613486565b509392505050565b600082601f8301126139e5576139e46133bf565b5b81356139f584826020860161398e565b91505092915050565b60008060008060808587031215613a1857613a17613357565b5b6000613a26878288016133aa565b9450506020613a37878288016136de565b935050604085013567ffffffffffffffff811115613a5857613a5761335c565b5b613a64878288016134d7565b925050606085013567ffffffffffffffff811115613a8557613a8461335c565b5b613a91878288016139d0565b91505092959194509250565b600060208284031215613ab357613ab2613357565b5b600082013567ffffffffffffffff811115613ad157613ad061335c565b5b613add848285016134d7565b91505092915050565b600080600060608486031215613aff57613afe613357565b5b6000613b0d868287016136de565b9350506020613b1e868287016133aa565b9250506040613b2f868287016136de565b9150509250925092565b613b42816135e6565b8114613b4d57600080fd5b50565b600081359050613b5f81613b39565b92915050565b60008060408385031215613b7c57613b7b613357565b5b6000613b8a858286016133aa565b9250506020613b9b85828601613b50565b9150509250929050565b600080fd5b600080fd5b60008083601f840112613bc557613bc46133bf565b5b8235905067ffffffffffffffff811115613be257613be1613ba5565b5b602083019150836020820283011115613bfe57613bfd613baa565b5b9250929050565b60008060208385031215613c1c57613c1b613357565b5b600083013567ffffffffffffffff811115613c3a57613c3961335c565b5b613c4685828601613baf565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b600081519050919050565b600082825260208201905092915050565b6000613ca582613c7e565b613caf8185613c89565b9350613cbf818560208601613638565b613cc8816133c9565b840191505092915050565b6000613cdf8383613c9a565b905092915050565b6000602082019050919050565b6000613cff82613c52565b613d098185613c5d565b935083602082028501613d1b85613c6e565b8060005b85811015613d575784840389528151613d388582613cd3565b9450613d4383613ce7565b925060208a01995050600181019050613d1f565b50829750879550505050505092915050565b60006020820190508181036000830152613d838184613cf4565b905092915050565b60008060008060808587031215613da557613da4613357565b5b6000613db3878288016133aa565b9450506020613dc4878288016133aa565b9350506040613dd5878288016136de565b925050606085013567ffffffffffffffff811115613df657613df561335c565b5b613e02878288016139d0565b91505092959194509250565b60008060408385031215613e2557613e24613357565b5b6000613e33858286016133aa565b9250506020613e44858286016133aa565b9150509250929050565b7f4e6f7420617574686f72697a656420746f206d696e742e000000000000000000600082015250565b6000613e84601783613627565b9150613e8f82613e4e565b602082019050919050565b60006020820190508181036000830152613eb381613e77565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613f0157607f821691505b602082108103613f1457613f13613eba565b5b50919050565b7f4e6f7420617574686f72697a6564000000000000000000000000000000000000600082015250565b6000613f50600e83613627565b9150613f5b82613f1a565b602082019050919050565b60006020820190508181036000830152613f7f81613f43565b9050919050565b7f496e76616c696420696e64657800000000000000000000000000000000000000600082015250565b6000613fbc600d83613627565b9150613fc782613f86565b602082019050919050565b60006020820190508181036000830152613feb81613faf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061405b826136bd565b9150614066836136bd565b9250828202614074816136bd565b9150828204841483151761408b5761408a614021565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006140cc826136bd565b91506140d7836136bd565b9250826140e7576140e6614092565b5b828204905092915050565b600080fd5b600080fd5b600080fd5b6000808335600160200384360303811261411e5761411d6140f2565b5b80840192508235915067ffffffffffffffff8211156141405761413f6140f7565b5b60208301925060018202360383131561415c5761415b6140fc565b5b509250929050565b600061416f826136bd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036141a1576141a0614021565b5b600182019050919050565b600081905092915050565b60006141c28261361c565b6141cc81856141ac565b93506141dc818560208601613638565b80840191505092915050565b60006141f482856141b7565b915061420082846141b7565b91508190509392505050565b7f55524920616c7265616479207365740000000000000000000000000000000000600082015250565b6000614242600f83613627565b915061424d8261420c565b602082019050919050565b6000602082019050818103600083015261427181614235565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026142da7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261429d565b6142e4868361429d565b95508019841693508086168417925050509392505050565b600061431761431261430d846136bd565b61389d565b6136bd565b9050919050565b6000819050919050565b614331836142fc565b61434561433d8261431e565b8484546142aa565b825550505050565b600090565b61435a61434d565b614365818484614328565b505050565b5b818110156143895761437e600082614352565b60018101905061436b565b5050565b601f8211156143ce5761439f81614278565b6143a88461428d565b810160208510156143b7578190505b6143cb6143c38561428d565b83018261436a565b50505b505050565b600082821c905092915050565b60006143f1600019846008026143d3565b1980831691505092915050565b600061440a83836143e0565b9150826002028217905092915050565b6144238261361c565b67ffffffffffffffff81111561443c5761443b6133da565b5b6144468254613ee9565b61445182828561438d565b600060209050601f8311600181146144845760008415614472578287015190505b61447c85826143fe565b8655506144e4565b601f19841661449286614278565b60005b828110156144ba57848901518255600182019150602085019450602081019050614495565b868310156144d757848901516144d3601f8916826143e0565b8355505b6001600288020188555050505b505050505050565b60006040820190506145016000830185613720565b61450e6020830184613720565b9392505050565b60008151905061452481613b39565b92915050565b6000602082840312156145405761453f613357565b5b600061454e84828501614515565b91505092915050565b7f45786365656473206d6178206270730000000000000000000000000000000000600082015250565b600061458d600f83613627565b915061459882614557565b602082019050919050565b600060208201905081810360008301526145bc81614580565b9050919050565b60006145ce826136bd565b91506145d9836136bd565b92508282019050808211156145f1576145f0614021565b5b92915050565b600060408201905081810360008301526146118185613662565b905081810360208301526146258184613662565b90509392505050565b7f496e76616c696420746f6b656e49640000000000000000000000000000000000600082015250565b6000614664600f83613627565b915061466f8261462e565b602082019050919050565b6000602082019050818103600083015261469381614657565b9050919050565b60006146a5826136bd565b91506146b0836136bd565b92508282039050818111156146c8576146c7614021565b5b92915050565b60006146d9826136bd565b91506146e4836136bd565b9250826146f4576146f3614092565b5b828206905092915050565b600082825260208201905092915050565b600061471b82613c7e565b61472581856146ff565b9350614735818560208601613638565b61473e816133c9565b840191505092915050565b600060808201905061475e6000830187613720565b61476b6020830186613720565b61477860408301856137b7565b818103606083015261478a8184614710565b905095945050505050565b6000815190506147a48161358d565b92915050565b6000602082840312156147c0576147bf613357565b5b60006147ce84828501614795565b91505092915050565b7f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f60008201527f6e74726163740000000000000000000000000000000000000000000000000000602082015250565b6000614833602683613627565b915061483e826147d7565b604082019050919050565b6000602082019050818103600083015261486281614826565b9050919050565b600081905092915050565b600061487f82613c7e565b6148898185614869565b9350614899818560208601613638565b80840191505092915050565b60006148b18284614874565b91508190509291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220b1cec427d21b7b8572ae70c72ab909b205b554b41d0b65bbb1d55f460b5b0d4964736f6c63430008110033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000ceaeecf9b3ba04b70bd7d64e267a5a36472a1ca800000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000000000000000000000000000000000000000001554686520416c6d69676874792053706172726f77730000000000000000000000000000000000000000000000000000000000000000000000000000000000000853706172726f7773000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): The Almighty Sparrows
Arg [1] : _symbol (string): Sparrows
Arg [2] : _royaltyRecipient (address): 0xceaeEcf9b3BA04B70BD7D64E267A5A36472a1CA8
Arg [3] : _royaltyBps (uint128): 500

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000ceaeecf9b3ba04b70bd7d64e267a5a36472a1ca8
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000015
Arg [5] : 54686520416c6d69676874792053706172726f77730000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [7] : 53706172726f7773000000000000000000000000000000000000000000000000


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.