ETH Price: $3,473.45 (+1.60%)
Gas: 11 Gwei

Token

DigiDaigakuVillains (DIDV)
 

Overview

Max Total Supply

0 DIDV

Holders

742

Market

Volume (24H)

0.015 ETH

Min Price (24H)

$52.10 @ 0.015000 ETH

Max Price (24H)

$52.10 @ 0.015000 ETH
Filtered by Token Holder
slums.eth
Balance
1 DIDV
0xf5a6bd45240cd607a3673492b66c2a7675b8a030
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

DigiDaigaku Villains is a collection of unique characters developed by Limit Break.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DigiDaigakuVillains

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 33 : AdventureERC721.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "./IAdventurous.sol";
import "./AdventureWhitelist.sol";
import "../initializable/IAdventureERC721Initializer.sol";
import "../utils/tokens/InitializableERC721.sol";

error AdventureApprovalToCaller();
error AlreadyInitializedAdventureERC721();
error AlreadyOnQuest();
error AnActiveQuestIsPreventingTransfers();
error CallerNotApprovedForAdventure();
error CallerNotTokenOwner();
error MaxSimultaneousQuestsCannotBeZero();
error MaxSimultaneousQuestsExceeded();
error NotOnQuest();
error QuestIdOutOfRange();
error TooManyActiveQuests();

/**
 * @title AdventureERC721
 * @author Limit Break, Inc.
 * @notice Implements the {IAdventurous} token standard for ERC721-compliant tokens.
 * Includes a user approval mechanism specific to {IAdventurous} functionality.
 * @dev Inherits {InitializableERC721} to provide the option to support EIP-1167.
 */
abstract contract AdventureERC721 is InitializableERC721, AdventureWhitelist, IAdventurous, IAdventureERC721Initializer {

    /// @notice Specifies an upper bound for the maximum number of simultaneous quests per adventure.
    uint256 private constant MAX_CONCURRENT_QUESTS = 100;

    /// @dev A value denoting a transfer originating from transferFrom or safeTransferFrom
    uint256 internal constant TRANSFERRING_VIA_ERC721 = 1;

    /// @dev A value denoting a transfer originating from adventureTransferFrom or adventureSafeTransferFrom
    uint256 internal constant TRANSFERRING_VIA_ADVENTURE = 2;

    /// @notice Specifies whether or not the contract is initialized
    bool private initializedAdventureERC721;

    /// @dev Specifies the type of transfer that is actively being used
    uint256 internal transferType;

    /// @dev The most simultaneous quests the token may participate in at a time
    uint256 private _maxSimultaneousQuests;

    /// @dev Maps each token id to the number of blocking quests it is currently entered into
    mapping (uint256 => uint256) internal blockingQuestCounts;

    /// @dev Mapping from owner to operator approvals for special gameplay behavior
    mapping (address => mapping (address => bool)) private operatorAdventureApprovals;

    /// @dev Maps each token id to a mapping that can enumerate all active quests within an adventure
    mapping (uint256 => mapping (address => uint32[])) public activeQuestList;

    /// @dev Maps each token id to a mapping from adventure address to a mapping of quest ids to quest details
    mapping (uint256 => mapping (address => mapping (uint32 => Quest))) public activeQuestLookup;

    /// @dev Initializes parameters of AdventureERC721 tokens.
    /// These cannot be set in the constructor because this contract is optionally compatible with EIP-1167.
    function initializeAdventureERC721(uint256 maxSimultaneousQuests_) public override onlyOwner {
        if(initializedAdventureERC721) {
            revert AlreadyInitializedAdventureERC721();
        }

        _validateMaxSimultaneousQuests(maxSimultaneousQuests_);
        _maxSimultaneousQuests = maxSimultaneousQuests_;

        initializedAdventureERC721 = true;
        transferType = TRANSFERRING_VIA_ERC721;
    }

    /// @dev ERC-165 interface support
    function supportsInterface(bytes4 interfaceId) public view virtual override (InitializableERC721, IERC165) returns (bool) {
        return 
        interfaceId == type(IAdventurous).interfaceId || 
        interfaceId == type(IAdventureERC721Initializer).interfaceId ||
        super.supportsInterface(interfaceId);
    }

    /// @notice Transfers a player's token if they have opted into an authorized, whitelisted adventure.
    function adventureTransferFrom(address from, address to, uint256 tokenId) external override {
        _requireCallerIsWhitelistedAdventure();
        _requireCallerApprovedForAdventure(tokenId);
        transferType = TRANSFERRING_VIA_ADVENTURE;
        _transfer(from, to, tokenId);
        transferType = TRANSFERRING_VIA_ERC721;
    }

    /// @notice Safe transfers a player's token if they have opted into an authorized, whitelisted adventure.
    function adventureSafeTransferFrom(address from, address to, uint256 tokenId) external override {
        _requireCallerIsWhitelistedAdventure();
        _requireCallerApprovedForAdventure(tokenId);
        transferType = TRANSFERRING_VIA_ADVENTURE;
        _safeTransfer(from, to, tokenId, "");
        transferType = TRANSFERRING_VIA_ERC721;
    }

    /// @notice Burns a player's token if they have opted into an authorized, whitelisted adventure.
    function adventureBurn(uint256 tokenId) external override {
        _requireCallerIsWhitelistedAdventure();
        _requireCallerApprovedForAdventure(tokenId);
        transferType = TRANSFERRING_VIA_ADVENTURE;
        _burn(tokenId);
        transferType = TRANSFERRING_VIA_ERC721;
    }

    /// @notice Enters a player's token into a quest if they have opted into an authorized, whitelisted adventure.
    function enterQuest(uint256 tokenId, uint256 questId) external override {
        _requireCallerIsWhitelistedAdventure();
        _requireCallerApprovedForAdventure(tokenId);
        _enterQuest(tokenId, _msgSender(), questId);
    }

    /// @notice Exits a player's token from a quest if they have opted into an authorized, whitelisted adventure.
    /// For developers of adventure contracts that perform adventure burns, be aware that the adventure must exitQuest
    /// before the adventure burn occurs, as _exitQuest emits the owner of the token, which would revert after burning.
    function exitQuest(uint256 tokenId, uint256 questId) external override {
        _requireCallerIsWhitelistedAdventure();
        _requireCallerApprovedForAdventure(tokenId);
        _exitQuest(tokenId, _msgSender(), questId);
    }

    /// @notice Admin-only ability to boot a token from all quests on an adventure.
    /// This ability is only unlocked in the event that an adventure has been unwhitelisted, as early exiting
    /// from quests can cause out of sync state between the ERC721 token contract and the adventure/quest.
    function bootFromAllQuests(uint256 tokenId, address adventure) external onlyOwner {
        _requireAdventureRemovedFromWhitelist(adventure);
        _exitAllQuests(tokenId, adventure, true);
    }

    /// @notice Gives the player the ability to exit a quest without interacting directly with the approved, whitelisted adventure
    /// This ability is only unlocked in the event that an adventure has been unwhitelisted, as early exiting
    /// from quests can cause out of sync state between the ERC721 token contract and the adventure/quest.
    function userExitQuest(uint256 tokenId, address adventure, uint256 questId) external {
        _requireAdventureRemovedFromWhitelist(adventure);
        _requireCallerOwnsToken(tokenId);
        _exitQuest(tokenId, adventure, questId);
    }

    /// @notice Gives the player the ability to exit all quests on an adventure without interacting directly with the approved, whitelisted adventure
    /// This ability is only unlocked in the event that an adventure has been unwhitelisted, as early exiting
    /// from quests can cause out of sync state between the ERC721 token contract and the adventure/quest.
    function userExitAllQuests(uint256 tokenId, address adventure) external {
        _requireAdventureRemovedFromWhitelist(adventure);
        _requireCallerOwnsToken(tokenId);
        _exitAllQuests(tokenId, adventure, false);
    }

    /// @notice Similar to {IERC721-setApprovalForAll}, but for special in-game adventures only
    function setAdventuresApprovedForAll(address operator, bool approved) external {
        address tokenOwner = _msgSender();

        if(tokenOwner == operator) {
            revert AdventureApprovalToCaller();
        }
        operatorAdventureApprovals[tokenOwner][operator] = approved;
        emit AdventureApprovalForAll(tokenOwner, operator, approved);
    }

    /// @notice Similar to {IERC721-isApprovedForAll}, but for special in-game adventures only
    function areAdventuresApprovedForAll(address owner, address operator) public view returns (bool) {
        return operatorAdventureApprovals[owner][operator];
    }    
    
    /// @notice Returns the number of quests a token is actively participating in for a specified adventure
    function getQuestCount(uint256 tokenId, address adventure) public override view returns (uint256) {
        return activeQuestList[tokenId][adventure].length;
    }

    /// @notice Returns the amount of time a token has been participating in the specified quest
    function getTimeOnQuest(uint256 tokenId, address adventure, uint256 questId) public override view returns (uint256) {
        (bool participatingInQuest, uint256 startTimestamp,) = isParticipatingInQuest(tokenId, adventure, questId);
        return participatingInQuest ? (block.timestamp - startTimestamp) : 0;
    } 

    /// @notice Returns whether or not a token is currently participating in the specified quest as well as the time it was started and the quest index
    function isParticipatingInQuest(uint256 tokenId, address adventure, uint256 questId) public override view returns (bool participatingInQuest, uint256 startTimestamp, uint256 index) {
        if(questId > type(uint32).max) {
            revert QuestIdOutOfRange();
        }

        Quest storage quest = activeQuestLookup[tokenId][adventure][uint32(questId)];
        participatingInQuest = quest.isActive;
        startTimestamp = quest.startTimestamp;
        index = quest.arrayIndex;
        return (participatingInQuest, startTimestamp, index);
    }

    /// @notice Returns a list of all active quests for the specified token id and adventure
    function getActiveQuests(uint256 tokenId, address adventure) public override view returns (Quest[] memory activeQuests) {
        uint256 questCount = getQuestCount(tokenId, adventure);
        activeQuests = new Quest[](questCount);
        uint32[] memory activeQuestIdList = activeQuestList[tokenId][adventure];

        for(uint256 i = 0; i < questCount; ++i) {
            activeQuests[i] = activeQuestLookup[tokenId][adventure][activeQuestIdList[i]];
        }

        return activeQuests;
    }

    /// @notice Returns the maximum number of simultaneous quests the token can be in per adventure.
    function maxSimultaneousQuests() public view returns (uint256) {
        return _maxSimultaneousQuests;
    }

    /// @dev Enters the specified quest for a token id.
    /// Throws if the token is already participating in the specified quest.
    /// Throws if the number of active quests exceeds the max allowable for the given adventure.
    /// Emits a QuestUpdated event for off-chain processing.
    function _enterQuest(uint256 tokenId, address adventure, uint256 questId) internal {
        (bool participatingInQuest,,) = isParticipatingInQuest(tokenId, adventure, questId);
        if(participatingInQuest) {
            revert AlreadyOnQuest();
        }

        uint256 currentQuestCount = getQuestCount(tokenId, adventure);
        if(currentQuestCount >= _maxSimultaneousQuests) {
            revert TooManyActiveQuests();
        }

        uint32 castedQuestId = uint32(questId);
        activeQuestList[tokenId][adventure].push(castedQuestId);
        activeQuestLookup[tokenId][adventure][castedQuestId].isActive = true;
        activeQuestLookup[tokenId][adventure][castedQuestId].startTimestamp = uint64(block.timestamp);
        activeQuestLookup[tokenId][adventure][castedQuestId].questId = castedQuestId;
        activeQuestLookup[tokenId][adventure][castedQuestId].arrayIndex = uint32(currentQuestCount);

        address ownerOfToken = ownerOf(tokenId);
        emit QuestUpdated(tokenId, ownerOfToken, adventure, questId, true, false);

        if(IAdventure(adventure).questsLockTokens()) {
            unchecked {
                ++blockingQuestCounts[tokenId];
            }
        }

        // Invoke callback to the adventure to facilitate state synchronization as needed
        IAdventure(adventure).onQuestEntered(ownerOfToken, tokenId, questId);
    }

    /// @dev Exits the specified quest for a token id.
    /// Throws if the token is not currently participating on the specified quest.
    /// Emits a QuestUpdated event for off-chain processing.
    function _exitQuest(uint256 tokenId, address adventure, uint256 questId) internal {
        (bool participatingInQuest, uint256 startTimestamp, uint256 index) = isParticipatingInQuest(tokenId, adventure, questId);
        if(!participatingInQuest) {
            revert NotOnQuest();
        }

        uint32 castedQuestId = uint32(questId);
        uint256 lastArrayIndex = getQuestCount(tokenId, adventure) - 1;
        if(index != lastArrayIndex) {
            activeQuestList[tokenId][adventure][index] = activeQuestList[tokenId][adventure][lastArrayIndex];
            activeQuestLookup[tokenId][adventure][activeQuestList[tokenId][adventure][lastArrayIndex]].arrayIndex = uint32(index);
        }

        activeQuestList[tokenId][adventure].pop();
        delete activeQuestLookup[tokenId][adventure][castedQuestId];

        address ownerOfToken = ownerOf(tokenId);
        emit QuestUpdated(tokenId, ownerOfToken, adventure, questId, false, false);

        if(IAdventure(adventure).questsLockTokens()) {
            --blockingQuestCounts[tokenId];
        }

        // Invoke callback to the adventure to facilitate state synchronization as needed
        IAdventure(adventure).onQuestExited(ownerOfToken, tokenId, questId, startTimestamp);
    }

    /// @dev Removes the specified token id from all quests on the specified adventure
    function _exitAllQuests(uint256 tokenId, address adventure, bool booted) internal {
        address tokenOwner = ownerOf(tokenId);
        uint256 questCount = getQuestCount(tokenId, adventure);

        if(IAdventure(adventure).questsLockTokens()) {
            blockingQuestCounts[tokenId] -= questCount;
        }

        for(uint256 i = 0; i < questCount;) {
            uint32 questId = activeQuestList[tokenId][adventure][i];

            Quest memory quest = activeQuestLookup[tokenId][adventure][questId];
            uint256 startTimestamp = quest.startTimestamp;

            emit QuestUpdated(tokenId, tokenOwner, adventure, questId, false, booted);
            delete activeQuestLookup[tokenId][adventure][questId];
            
            // Invoke callback to the adventure to facilitate state synchronization as needed
            IAdventure(adventure).onQuestExited(tokenOwner, tokenId, questId, startTimestamp);

            unchecked {
                ++i;
            }
        }

        delete activeQuestList[tokenId][adventure];
    }

    /// @dev By default, tokens that are participating in quests are transferrable.  However, if a token is participating
    /// in a quest on an adventure that was designated as a token locker, the transfer will revert and keep the token
    /// locked.
    function _beforeTokenTransfer(address /*from*/, address /*to*/, uint256 tokenId) internal virtual override {
        if(blockingQuestCounts[tokenId] > 0) {
            revert AnActiveQuestIsPreventingTransfers();
        }
    }

    /// @dev Validates that the caller is approved for adventure on the specified token id
    /// Throws when the caller has not been approved by the user.
    function _requireCallerApprovedForAdventure(uint256 tokenId) internal view {
        if(!areAdventuresApprovedForAll(ownerOf(tokenId), _msgSender())) {
            revert CallerNotApprovedForAdventure();
        }
    }

    /// @dev Validates that the caller owns the specified token
    /// Throws when the caller does not own the specified token.
    function _requireCallerOwnsToken(uint256 tokenId) internal view {
        if(ownerOf(tokenId) != _msgSender()) {
            revert CallerNotTokenOwner();
        }
    }

    /// @dev Validates that the specified value of max simultaneous quests is in range [1-MAX_CONCURRENT_QUESTS]
    /// Throws when `maxSimultaneousQuests_` is zero.
    /// Throws when `maxSimultaneousQuests_` is more than MAX_CONCURRENT_QUESTS.
    function _validateMaxSimultaneousQuests(uint256 maxSimultaneousQuests_) internal pure {
        if(maxSimultaneousQuests_ == 0) {
            revert MaxSimultaneousQuestsCannotBeZero();
        }

        if(maxSimultaneousQuests_ > MAX_CONCURRENT_QUESTS) {
            revert MaxSimultaneousQuestsExceeded();
        }
    }
}

File 2 of 33 : AdventureNFT.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "./AdventureERC721.sol";
import "../initializable/IRoyaltiesInitializer.sol";
import "../initializable/IURIInitializer.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";

error AlreadyInitializedRoyalties();
error AlreadyInitializedURI();
error ExceedsMaxRoyaltyFee();
error NonexistentToken();

/**
 * @title AdventureNFT
 * @author Limit Break, Inc.
 * @notice Standardizes commonly shared boilerplate code that adds base/suffix URI and EIP-2981 royalties to {AdventureERC721} contracts.
 */
abstract contract AdventureNFT is AdventureERC721, ERC2981, IRoyaltiesInitializer, IURIInitializer {
    using Strings for uint256;

    /// @dev The maximum allowable royalty fee is 10%
    uint96 private constant MAX_ROYALTY_FEE_NUMERATOR = 1000;

    /// @notice Specifies whether or not the contract is initialized
    bool private initializedRoyalties;

    /// @notice Specifies whether or not the contract is initialized
    bool private initializedURI;

    /// @dev Base token uri
    string public baseTokenURI;

    /// @dev Token uri suffix/extension
    string public suffixURI = ".json";

    /// @dev Emitted when base URI is set.
    event BaseURISet(string baseTokenURI);

    /// @dev Emitted when suffix URI is set.
    event SuffixURISet(string suffixURI);

    /// @dev Emitted when royalty is set.
    event RoyaltySet(address receiver, uint96 feeNumerator);

    /// @dev Initializes parameters of tokens with royalties.
    /// These cannot be set in the constructor because this contract is optionally compatible with EIP-1167.
    function initializeRoyalties(address receiver, uint96 feeNumerator) public override onlyOwner {
        if(initializedRoyalties) {
            revert AlreadyInitializedRoyalties();
        }

        setRoyaltyInfo(receiver, feeNumerator);

        initializedRoyalties = true;
    }

    /// @dev Initializes parameters of tokens with uri values.
    /// These cannot be set in the constructor because this contract is optionally compatible with EIP-1167.
    function initializeURI(string memory baseURI_, string memory suffixURI_) public override onlyOwner {
        if(initializedURI) {
            revert AlreadyInitializedURI();
        }

        setBaseURI(baseURI_);
        setSuffixURI(suffixURI_);

        initializedURI = true;
    }

    /// @dev Required to return baseTokenURI for tokenURI
    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }

    /// @notice Sets base URI
    function setBaseURI(string memory baseTokenURI_) public onlyOwner {
        baseTokenURI = baseTokenURI_;

        emit BaseURISet(baseTokenURI_);
    }

    /// @notice Sets suffix URI
    function setSuffixURI(string memory suffixURI_) public onlyOwner {
        suffixURI = suffixURI_;

        emit SuffixURISet(suffixURI_);
    }

    /// @notice Sets royalty information
    function setRoyaltyInfo(address receiver, uint96 feeNumerator) public onlyOwner {
        if(feeNumerator > MAX_ROYALTY_FEE_NUMERATOR) {
            revert ExceedsMaxRoyaltyFee();
        }
        _setDefaultRoyalty(receiver, feeNumerator);

        emit RoyaltySet(receiver, feeNumerator);
    }

    /// @notice Returns tokenURI if baseURI is set
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if(!_exists(tokenId)) {
            revert NonexistentToken();
        }

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0
            ? string(abi.encodePacked(baseURI, tokenId.toString(), suffixURI))
            : "";
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override (AdventureERC721, ERC2981, IERC165) returns (bool) {
        return
        interfaceId == type(IRoyaltiesInitializer).interfaceId ||
        interfaceId == type(IURIInitializer).interfaceId ||
        super.supportsInterface(interfaceId);
    }
}

File 3 of 33 : AdventureWhitelist.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "./IAdventure.sol";
import "../utils/access/InitializableOwnable.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";

error AdventureIsStillWhitelisted();
error AlreadyWhitelisted();
error ArrayIndexOverflowsUint128();
error CallerNotAWhitelistedAdventure();
error InvalidAdventureContract();
error NotWhitelisted();

/**
 * @title AdventureWhitelist
 * @author Limit Break, Inc.
 * @notice Implements the basic security features of the {IAdventurous} token standard for ERC721-compliant tokens.
 * This includes a whitelist for trusted Adventure contracts designed to interoperate with this token.
 */
abstract contract AdventureWhitelist is InitializableOwnable {

    struct AdventureDetails {
        bool isWhitelisted;
        uint128 arrayIndex;
    }

    /// @dev Emitted when the adventure whitelist is updated
    event AdventureWhitelistUpdated(address indexed adventure, bool whitelisted);
    
    /// @dev Whitelist array for iteration
    address[] public whitelistedAdventureList;

    /// @dev Whitelist mapping
    mapping (address => AdventureDetails) public whitelistedAdventures;

    /// @notice Returns whether the specified account is a whitelisted adventure
    function isAdventureWhitelisted(address account) public view returns (bool) {
        return whitelistedAdventures[account].isWhitelisted;
    }

    /// @notice Whitelists an adventure and specifies whether or not the quests in that adventure lock token transfers
    /// Throws when the adventure is already in the whitelist.
    /// Throws when the specified address does not implement the IAdventure interface.
    ///
    /// Postconditions:
    /// The specified adventure contract is in the whitelist.
    /// An `AdventureWhitelistUpdate` event has been emitted.
    function whitelistAdventure(address adventure) external onlyOwner {
        if(isAdventureWhitelisted(adventure)) {
            revert AlreadyWhitelisted();
        }

        if(!IERC165(adventure).supportsInterface(type(IAdventure).interfaceId)) {
            revert InvalidAdventureContract();
        }

        uint256 arrayIndex = whitelistedAdventureList.length;
        if(arrayIndex > type(uint128).max) {
            revert ArrayIndexOverflowsUint128();
        }

        whitelistedAdventures[adventure].isWhitelisted = true;
        whitelistedAdventures[adventure].arrayIndex = uint128(arrayIndex);
        whitelistedAdventureList.push(adventure);

        emit AdventureWhitelistUpdated(adventure, true);
    }

    /// @notice Removes an adventure from the whitelist
    /// Throws when the adventure is not in the whitelist.
    ///
    /// Postconditions:
    /// The specified adventure contract is no longer in the whitelist.
    /// An `AdventureWhitelistUpdate` event has been emitted.
    function unwhitelistAdventure(address adventure) external onlyOwner {
        if(!isAdventureWhitelisted(adventure)) {
            revert NotWhitelisted();
        }
        
        uint128 itemPositionToDelete = whitelistedAdventures[adventure].arrayIndex;
        uint256 arrayEndIndex = whitelistedAdventureList.length - 1;
        if(itemPositionToDelete != arrayEndIndex) {
            whitelistedAdventureList[itemPositionToDelete] = whitelistedAdventureList[arrayEndIndex];
            whitelistedAdventures[whitelistedAdventureList[itemPositionToDelete]].arrayIndex = itemPositionToDelete;
        }

        whitelistedAdventureList.pop();
        delete whitelistedAdventures[adventure];

        emit AdventureWhitelistUpdated(adventure, false);
    }

    /// @dev Validates that the caller is a whitelisted adventure
    /// Throws when the caller is not in the adventure whitelist.
    function _requireCallerIsWhitelistedAdventure() internal view {
        if(!isAdventureWhitelisted(_msgSender())) {
            revert CallerNotAWhitelistedAdventure();
        }
    }

    /// @dev Validates that the specified adventure has been removed from the whitelist
    /// to prevent early backdoor exiting from adventures.
    /// Throws when specified adventure is still whitelisted.
    function _requireAdventureRemovedFromWhitelist(address adventure) internal view {
        if(isAdventureWhitelisted(adventure)) {
            revert AdventureIsStillWhitelisted();
        }
    }
}

File 4 of 33 : IAdventure.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "@openzeppelin/contracts/utils/introspection/IERC165.sol";

/**
 * @title IAdventure
 * @author Limit Break, Inc.
 * @notice The base interface that all `Adventure` contracts must conform to.
 * @dev All contracts that implement the adventure/quest system and interact with an {IAdventurous} token are required to implement this interface.
 */
interface IAdventure is IERC165 {

    /**
     * @dev Returns whether or not quests on this adventure lock tokens.
     * Developers of adventure contract should ensure that this is immutable 
     * after deployment of the adventure contract.  Failure to do so
     * can lead to error that deadlock token transfers.
     */
    function questsLockTokens() external view returns (bool);

    /**
     * @dev A callback function that AdventureERC721 must invoke when a quest has been successfully entered.
     * Throws if the caller is not an expected AdventureERC721 contract designed to work with the Adventure.
     * Not permitted to throw in any other case, as this could lead to tokens being locked in quests.
     */
    function onQuestEntered(address adventurer, uint256 tokenId, uint256 questId) external;

    /**
     * @dev A callback function that AdventureERC721 must invoke when a quest has been successfully exited.
     * Throws if the caller is not an expected AdventureERC721 contract designed to work with the Adventure.
     * Not permitted to throw in any other case, as this could lead to tokens being locked in quests.
     */
    function onQuestExited(address adventurer, uint256 tokenId, uint256 questId, uint256 questStartTimestamp) external;
}

File 5 of 33 : IAdventurous.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "./Quest.sol";
import "@openzeppelin/contracts/utils/introspection/IERC165.sol";

/**
 * @title IAdventurous
 * @author Limit Break, Inc.
 * @notice The base interface that all `Adventurous` token contracts must conform to in order to support adventures and quests.
 * @dev All contracts that support adventures and quests are required to implement this interface.
 */
interface IAdventurous is IERC165 {

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets, for special in-game adventures.
     */ 
    event AdventureApprovalForAll(address indexed tokenOwner, address indexed operator, bool approved);

    /**
     * @dev Emitted when a token enters or exits a quest
     */
    event QuestUpdated(uint256 indexed tokenId, address indexed tokenOwner, address indexed adventure, uint256 questId, bool active, bool booted);

    /**
     * @notice Transfers a player's token if they have opted into an authorized, whitelisted adventure.
     */
    function adventureTransferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @notice Safe transfers a player's token if they have opted into an authorized, whitelisted adventure.
     */
    function adventureSafeTransferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @notice Burns a player's token if they have opted into an authorized, whitelisted adventure.
     */
    function adventureBurn(uint256 tokenId) external;

    /**
     * @notice Enters a player's token into a quest if they have opted into an authorized, whitelisted adventure.
     */
    function enterQuest(uint256 tokenId, uint256 questId) external;

    /**
     * @notice Exits a player's token from a quest if they have opted into an authorized, whitelisted adventure.
     */
    function exitQuest(uint256 tokenId, uint256 questId) external;

    /**
     * @notice Returns the number of quests a token is actively participating in for a specified adventure
     */
    function getQuestCount(uint256 tokenId, address adventure) external view returns (uint256);

    /**
     * @notice Returns the amount of time a token has been participating in the specified quest
     */
    function getTimeOnQuest(uint256 tokenId, address adventure, uint256 questId) external view returns (uint256);

    /**
     * @notice Returns whether or not a token is currently participating in the specified quest as well as the time it was started and the quest index
     */
    function isParticipatingInQuest(uint256 tokenId, address adventure, uint256 questId) external view returns (bool participatingInQuest, uint256 startTimestamp, uint256 index);

    /**
     * @notice Returns a list of all active quests for the specified token id and adventure
     */
    function getActiveQuests(uint256 tokenId, address adventure) external view returns (Quest[] memory activeQuests);
}

File 6 of 33 : Quest.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

/**
 * @title Quest
 * @author Limit Break, Inc.
 * @notice Quest data structure for {IAdventurous} contracts.
 */
struct Quest {
    bool isActive;
    uint32 questId;
    uint64 startTimestamp;
    uint32 arrayIndex;
}

File 7 of 33 : IAdventureERC721Initializer.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import "@openzeppelin/contracts/utils/introspection/IERC165.sol";

/**
 * @title IAdventureERC721Initializer
 * @author Limit Break, Inc.
 * @notice Allows cloneable contracts to include Adventure ERC721 functionality.
 * @dev See https://eips.ethereum.org/EIPS/eip-1167 for details.
 */
interface IAdventureERC721Initializer is IERC165 {

    /**
     * @notice Initializes parameters of {AdventureERC721} contracts
     */
    function initializeAdventureERC721(uint256 maxSimultaneousQuests_) external;
}

File 8 of 33 : IERC721Initializer.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";

/**
 * @title IERC721Initializer
 * @author Limit Break, Inc.
 * @notice Allows cloneable contracts to include OpenZeppelin ERC721 functionality.
 * @dev See https://eips.ethereum.org/EIPS/eip-1167 for details.
 */
interface IERC721Initializer is IERC721 {

    /**
     * @notice Initializes parameters of {ERC721} contracts
     */
    function initializeERC721(string memory name_, string memory symbol_) external;
}

File 9 of 33 : IMaxSupplyInitializer.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import "@openzeppelin/contracts/utils/introspection/IERC165.sol";

/**
 * @title IMaxSupplyInitializer
 * @author Limit Break, Inc.
 * @notice Allows cloneable contracts to include a maximum supply.
 * @dev See https://eips.ethereum.org/EIPS/eip-1167 for details.
 */
interface IMaxSupplyInitializer is IERC165 {

    /**
     * @notice Initializes max supply parameters
     */
    function initializeMaxSupply(uint256 maxSupply_) external;
}

File 10 of 33 : IOperatorFiltererInitializer.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";

/**
 * @title IOperatorFiltererInitializer
 * @author Limit Break, Inc.
 * @notice Allows cloneable contracts to include OpenSea's OperatorFilterer functionality.
 * @dev See https://eips.ethereum.org/EIPS/eip-1167 for details.
 */
interface IOperatorFiltererInitializer {

    /**
     * @notice Initializes parameters of OperatorFilterer contracts
     */
    function initializeOperatorFilterer(address subscriptionOrRegistrantToCopy, bool subscribe) external;
}

File 11 of 33 : IOwnableInitializer.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import "@openzeppelin/contracts/utils/introspection/IERC165.sol";

/**
 * @title IOwnableInitializer
 * @author Limit Break, Inc.
 * @notice Allows cloneable contracts to include OpenZeppelin Ownable functionality.
 * @dev See https://eips.ethereum.org/EIPS/eip-1167 for details.
 */
interface IOwnableInitializer is IERC165 {

    /**
     * @notice Initializes the contract owner to the specified address
     */
    function initializeOwner(address owner_) external;

    /**
     * @notice Transfers ownership of the contract to the specified owner
     */
    function transferOwnership(address newOwner) external;
}

File 12 of 33 : IRoyaltiesInitializer.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import "@openzeppelin/contracts/utils/introspection/IERC165.sol";

/**
 * @title IRoyaltiesInitializer
 * @author Limit Break, Inc.
 * @notice Allows cloneable contracts to include OpenZeppelin ERC2981 functionality.
 * @dev See https://eips.ethereum.org/EIPS/eip-1167 for details.
 */
interface IRoyaltiesInitializer is IERC165 {

    /**
     * @notice Initializes royalty parameters
     */
    function initializeRoyalties(address receiver, uint96 feeNumerator) external;
}

File 13 of 33 : IURIInitializer.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import "@openzeppelin/contracts/utils/introspection/IERC165.sol";

/**
 * @title IURIInitializer
 * @author Limit Break, Inc.
 * @notice Allows cloneable contracts to include a base uri and suffix uri.
 * @dev See https://eips.ethereum.org/EIPS/eip-1167 for details.
 */
interface IURIInitializer is IERC165 {

    /**
     * @notice Initializes uri parameters
     */
    function initializeURI(string memory baseURI_, string memory suffixURI_) external;
}

File 14 of 33 : IOperatorFilterRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

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 15 of 33 : InitializableDefaultOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

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

/**
 * @title  InitializableDefaultOperatorFilterer
 * @notice Inherits from InitializableOperatorFilterer and automatically subscribes to the default OpenSea subscription during initialization.
 */
abstract contract InitializableDefaultOperatorFilterer is InitializableOperatorFilterer {
    
    /// @dev The default subscription address
    address internal constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    /// @dev The parameters are ignored, and the default subscription values are used instead.
    function initializeOperatorFilterer(address /*subscriptionOrRegistrantToCopy*/, bool /*subscribe*/) public virtual override {
        super.initializeOperatorFilterer(DEFAULT_SUBSCRIPTION, true);
    }
}

File 16 of 33 : InitializableOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

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

/**
 * @title  InitializableOperatorFilterer
 * @notice Abstract contract whose initializer function 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.
 *         This is safe for use in EIP-1167 clones
 */
abstract contract InitializableOperatorFilterer is IOperatorFiltererInitializer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    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 initializeOperatorFilterer(address subscriptionOrRegistrantToCopy, bool subscribe) public virtual override {
        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));
                }
            }
        }
    }

    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 17 of 33 : BlacklistedTransferAdventureNFT.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "../adventures/AdventureNFT.sol";
import "../opensea/operator-filter-registry/InitializableDefaultOperatorFilterer.sol";

/**
 * @title BlacklistedTransferAdventureNFT
 * @author Limit Break, Inc.
 * @notice Extends AdventureNFT, adding whitelisted transfer mechanisms.
 */
abstract contract BlacklistedTransferAdventureNFT is AdventureNFT, InitializableDefaultOperatorFilterer {

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

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

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

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

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

File 18 of 33 : InitializableOwnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import "../../initializable/IOwnableInitializer.sol";
import "@openzeppelin/contracts/utils/Context.sol";

error CallerIsNotTheContractOwner();
error NewOwnerIsTheZeroAddress();
error OwnerAlreadyInitialized();

/**
 * @title InitializableOwnable
 * @author Limit Break, Inc. and OpenZeppelin
 * @notice A tailored version of the {Ownable}  permissions component from OpenZeppelin that is compatible with EIP-1167.
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * Based on OpenZeppelin contracts commit hash 3dac7bbed7b4c0dbf504180c33e8ed8e350b93eb.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 *
 * This version adds an `initializeOwner` call for use with EIP-1167, 
 * as the constructor will not be called during an EIP-1167 operation.
 * Because initializeOwner should only be called once and requires that 
 * the owner is not assigned, the `renounceOwnership` function has been removed to avoid
 * a scenario where a contract could be left without an owner to perform admin protected functions.
 */
abstract contract InitializableOwnable is Context, IOwnableInitializer {
    address private _owner;

    /// @dev Emitted when contract ownership has been transferred.
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

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

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

    /**
     * @dev When EIP-1167 is used to clone a contract that inherits Ownable permissions,
     * this is required to assign the initial contract owner, as the constructor is
     * not called during the cloning process.
     */
    function initializeOwner(address owner_) public override {
      if(_owner != address(0)) {
          revert OwnerAlreadyInitialized();
      }

      _transferOwnership(owner_);
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if(owner() != _msgSender()) {
            revert CallerIsNotTheContractOwner();
        }
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual override onlyOwner {
        if(newOwner == address(0)) {
            revert NewOwnerIsTheZeroAddress();
        }

        _transferOwnership(newOwner);
    }

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

File 19 of 33 : InitializableERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import "../access/InitializableOwnable.sol";
import "../../initializable/IERC721Initializer.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";

error AlreadyInitializedERC721();

/**
 * @title InitializableERC721
 * @author Limit Break, Inc.
 * @notice Wraps OpenZeppelin ERC721 implementation and makes it compatible with EIP-1167.
 * @dev Because OpenZeppelin's `_name` and `_symbol` storage variables are private and inaccessible, 
 * this contract defines two new storage variables `_contractName` and `_contractSymbol` and returns them
 * from the `name()` and `symbol()` functions instead.
 */
abstract contract InitializableERC721 is InitializableOwnable, ERC721, IERC721Initializer {

    /// @notice Specifies whether or not the contract is initialized
    bool private initializedERC721;

    // Token name
    string internal _contractName;

    // Token symbol
    string internal _contractSymbol;

    /// @dev Initializes parameters of ERC721 tokens.
    /// These cannot be set in the constructor because this contract is optionally compatible with EIP-1167.
    function initializeERC721(string memory name_, string memory symbol_) public override onlyOwner {
        if(initializedERC721) {
            revert AlreadyInitializedERC721();
        }

        _contractName = name_;
        _contractSymbol = symbol_;

        initializedERC721 = true;
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721Initializer).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    function name() public view virtual override returns (string memory) {
        return _contractName;
    }

    function symbol() public view virtual override returns (string memory) {
        return _contractSymbol;
    }
}

File 20 of 33 : SequentialRoleBasedMint.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "../access/InitializableOwnable.sol";
import "../../initializable/IMaxSupplyInitializer.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";

error CannotMintToZeroAddress();
error MaxSupplyAlreadyInitialized();
error MaxSupplyCannotBeSetToMaxUint256();
error MaxSupplyCannotBeSetToZero();
error MaxSupplyExceeded(uint256 supplyAfterMint, uint256 maxSupply);
error MintedQuantityMustBeGreaterThanZero();
error MinterAlreadyWhitelisted();
error MinterNotWhitelisted();

/**
 * @title SequentialRoleBasedMint
 * @author Limit Break, Inc.
 * @notice A contract mix-in that may optionally be used to extend ERC-721 tokens with sequential role-based minting capabilities.
 * @dev Inheriting contracts must implement `_mintToken` and implement EIP-165 support as shown:
 *
 * function supportsInterface(bytes4 interfaceId) public view virtual override(AdventureNFT, IERC165) returns (bool) {
 *     return
 *     interfaceId == type(IMaxSupplyInitializer).interfaceId ||
 *     super.supportsInterface(interfaceId);
 *  }
 *
 */
abstract contract SequentialRoleBasedMint is InitializableOwnable, IMaxSupplyInitializer {

    /// @dev The next token id that will be minted - if zero, the next minted token id will be 1
    uint256 public nextTokenId;

    /// @dev The maximum token supply
    uint256 private _maxSupply;

    /// @dev Whitelisted minter mapping
    mapping (address => bool) public whitelistedMinters;

    /// @dev Emitted when the minter whitelist is updated
    event MinterWhitelistUpdated(address indexed minter, bool indexed whitelisted);

    /// @dev Initializes parameters of tokens with maximum supplies.
    /// This cannot be set in the constructor because this contract is optionally compatible with EIP-1167.
    /// Throws if maxSupply has already been set to a non-zero value.
    /// Throws if specified maxSupply_ is zero.
    /// Throws if specified maxSupply_ is set to max uint256.
    function initializeMaxSupply(uint256 maxSupply_) public override onlyOwner {
        if(_maxSupply > 0) {
            revert MaxSupplyAlreadyInitialized();
        }

        if(maxSupply_ == 0) {
            revert MaxSupplyCannotBeSetToZero();
        }

        if(maxSupply_ == type(uint256).max) {
            revert MaxSupplyCannotBeSetToMaxUint256();
        }

        _maxSupply = maxSupply_;
    }

    /// @notice Whitelists a minter
    function whitelistMinter(address minter) external onlyOwner {
        _requireMinterIsNotWhitelisted(minter);
        whitelistedMinters[minter] = true;
        emit MinterWhitelistUpdated(minter, true);
    }

    /// @notice Removes a minter from the whitelist
    function unwhitelistMinter(address minter) external onlyOwner {
        _requireMinterIsWhitelisted(minter);
        delete whitelistedMinters[minter];
        emit MinterWhitelistUpdated(minter, false);
    }

    function mint(address to, uint256 quantity) public virtual returns (uint256 firstTokenId, uint256 lastTokenId) {
        if(to == address(0)) {
            revert CannotMintToZeroAddress();
        }

        if(quantity == 0) {
            revert MintedQuantityMustBeGreaterThanZero();
        }

        _requireMinterIsWhitelisted(_msgSender());

        uint256 tokenIdToMint = nextTokenId;
        if(tokenIdToMint == 0) {
            tokenIdToMint = 1;
        }

        firstTokenId = tokenIdToMint;
        
        uint256 supplyAfterMint = tokenIdToMint + quantity - 1;
        uint256 maxSupply_ = _maxSupply;
        if(supplyAfterMint > maxSupply_) {
            revert MaxSupplyExceeded(supplyAfterMint, maxSupply_);
        }

        unchecked {
            nextTokenId = tokenIdToMint + quantity;

            for(uint256 i = 0; i < quantity; ++i) {
                _mintToken(to, tokenIdToMint + i);
            }
        }

        lastTokenId = supplyAfterMint;

        return (firstTokenId, lastTokenId);
    }

    /// @notice Returns the maximum mintable supply
    function maxSupply() public view returns (uint256) {
        return _maxSupply;
    }

    /// @dev Inheriting contracts must implement the token minting logic
    function _mintToken(address to, uint256 tokenId) internal virtual;

    function _requireMinterIsWhitelisted(address minter) private view {
        if(!whitelistedMinters[minter]) {
            revert MinterNotWhitelisted();
        }
    }

    function _requireMinterIsNotWhitelisted(address minter) private view {
        if(whitelistedMinters[minter]) {
            revert MinterAlreadyWhitelisted();
        }
    }
}

File 21 of 33 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

import "../utils/introspection/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 paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

File 22 of 33 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // 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;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

    /**
     * @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) {
        _requireMinted(tokenId);

        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 overridden 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 = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @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.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 23 of 33 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

File 24 of 33 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 25 of 33 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

File 26 of 33 : ERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;

import "../../interfaces/IERC2981.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) {
        return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

File 27 of 33 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 28 of 33 : 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 29 of 33 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./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 31 of 33 : 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
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * 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
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 32 of 33 : DigiDaigakuVillains.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.9;

import "./IMintableVillain.sol";
import "@limit-break/presets/BlacklistedTransferAdventureNFT.sol";
import "@limit-break/utils/tokens/SequentialRoleBasedMint.sol";

error VillainInputArrayLengthMismatch();
error UseOfMintEntrypointProhibittedUseUnmaskVillainsBatch();

/**
 * @title DigiDaigakuVillains
 * @author Limit Break, Inc.
 * @notice Villains unmasked by going on the DigiDaigaku Unmasking Quest.
 */
contract DigiDaigakuVillains is BlacklistedTransferAdventureNFT, SequentialRoleBasedMint, IMintableVillain {

    uint256 private constant ENTRYPOINT_UNMASK = 1;
    uint256 private constant ENTRYPOINT_UNMASK_VILLAINS_BATCH = 2;

    uint256 private unmaskFunctionEntrypoint;

    /// @dev Emitted when a villain is minted
    event UnmaskVillain(address indexed to, uint256 indexed superVillainId, uint256 maskedVillainId, uint256 potionTokenId);

    constructor(uint256 maxSupply_, address royaltyReceiver_, uint96 royaltyFeeNumerator_) ERC721("", "") {
        initializeERC721("DigiDaigakuVillains", "DIDV");
        initializeURI("https://digidaigaku.com/villains/metadata/", ".json");
        initializeAdventureERC721(100);
        initializeRoyalties(royaltyReceiver_, royaltyFeeNumerator_);
        initializeMaxSupply(maxSupply_);
        initializeOperatorFilterer(address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6), true);

        unmaskFunctionEntrypoint = ENTRYPOINT_UNMASK;
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(AdventureNFT, IERC165) returns (bool) {
        return interfaceId == type(IMaxSupplyInitializer).interfaceId || super.supportsInterface(interfaceId);
    }

    /// @notice Mints multiple villains unmasked with the specified masked villain tokens.
    ///
    /// Throws if `to` address is zero address.
    /// Throws if the quantity is zero.
    /// Throws if the caller is not a whitelisted minter.
    /// Throws if minting would exceed the max supply.
    ///
    /// Postconditions:
    /// ---------------
    /// `quantity` villains have been minted to the specified `to` address, where `quantity` is the length of the token id arrays.
    /// `quantity` UnmaskVillain events has been emitted, where `quantity` is the length of the token id arrays.
    function unmaskVillainsBatch(address to, uint256[] calldata maskedVillainTokenIds, uint256[] calldata potionTokenIds) external override {

        if(maskedVillainTokenIds.length != potionTokenIds.length) {
            revert VillainInputArrayLengthMismatch();
        }

        unmaskFunctionEntrypoint = ENTRYPOINT_UNMASK_VILLAINS_BATCH;
        (uint256 firstVillainId,) = mint(to, potionTokenIds.length);
        unmaskFunctionEntrypoint = ENTRYPOINT_UNMASK;
        
        unchecked {
            for(uint256 i = 0; i < potionTokenIds.length; ++i) {
                if(potionTokenIds[i] > 0) { 
                    emit UnmaskVillain(to, firstVillainId + i, maskedVillainTokenIds[i], potionTokenIds[i]);
                }
            }
        }
    }

    /// @notice Direct use of the mint function is prohibitted in this contract.
    /// Throws if not called from unmaskVillainsBatch.
    /// Otherwise, functions according to the base contract mint implementation.
    function mint(address to, uint256 quantity) public override returns (uint256 firstTokenId, uint256 lastTokenId) {
        if(unmaskFunctionEntrypoint != ENTRYPOINT_UNMASK_VILLAINS_BATCH) {
            revert UseOfMintEntrypointProhibittedUseUnmaskVillainsBatch();
        }

        return super.mint(to, quantity);
    }

    /// @dev Mints a token
    function _mintToken(address to, uint256 tokenId) internal virtual override {
        _mint(to, tokenId);
    }
}

File 33 of 33 : IMintableVillain.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.9;

/**
 * @dev Required interface of mintable villain contracts.
 */
interface IMintableVillain {

    /**
     * @notice Mints multiple villains unmasked with the specified masked villain token ids
     */
    function unmaskVillainsBatch(address to, uint256[] calldata villainTokenIds, uint256[] calldata potionTokenIds) external;
}

Settings
{
  "remappings": [
    "@limit-break/=lib/limit-break/",
    "@openzeppelin/=lib/openzeppelin-contracts/",
    "ds-test/=lib/forge-std/lib/ds-test/src/",
    "forge-std/=lib/forge-std/src/",
    "limit-break/=lib/limit-break/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "metadata": {
    "bytecodeHash": "ipfs"
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "london",
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxSupply_","type":"uint256"},{"internalType":"address","name":"royaltyReceiver_","type":"address"},{"internalType":"uint96","name":"royaltyFeeNumerator_","type":"uint96"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AdventureApprovalToCaller","type":"error"},{"inputs":[],"name":"AdventureIsStillWhitelisted","type":"error"},{"inputs":[],"name":"AlreadyInitializedAdventureERC721","type":"error"},{"inputs":[],"name":"AlreadyInitializedERC721","type":"error"},{"inputs":[],"name":"AlreadyInitializedRoyalties","type":"error"},{"inputs":[],"name":"AlreadyInitializedURI","type":"error"},{"inputs":[],"name":"AlreadyOnQuest","type":"error"},{"inputs":[],"name":"AlreadyWhitelisted","type":"error"},{"inputs":[],"name":"AnActiveQuestIsPreventingTransfers","type":"error"},{"inputs":[],"name":"ArrayIndexOverflowsUint128","type":"error"},{"inputs":[],"name":"CallerIsNotTheContractOwner","type":"error"},{"inputs":[],"name":"CallerNotAWhitelistedAdventure","type":"error"},{"inputs":[],"name":"CallerNotApprovedForAdventure","type":"error"},{"inputs":[],"name":"CallerNotTokenOwner","type":"error"},{"inputs":[],"name":"CannotMintToZeroAddress","type":"error"},{"inputs":[],"name":"ExceedsMaxRoyaltyFee","type":"error"},{"inputs":[],"name":"InvalidAdventureContract","type":"error"},{"inputs":[],"name":"MaxSimultaneousQuestsCannotBeZero","type":"error"},{"inputs":[],"name":"MaxSimultaneousQuestsExceeded","type":"error"},{"inputs":[],"name":"MaxSupplyAlreadyInitialized","type":"error"},{"inputs":[],"name":"MaxSupplyCannotBeSetToMaxUint256","type":"error"},{"inputs":[],"name":"MaxSupplyCannotBeSetToZero","type":"error"},{"inputs":[{"internalType":"uint256","name":"supplyAfterMint","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"}],"name":"MaxSupplyExceeded","type":"error"},{"inputs":[],"name":"MintedQuantityMustBeGreaterThanZero","type":"error"},{"inputs":[],"name":"MinterAlreadyWhitelisted","type":"error"},{"inputs":[],"name":"MinterNotWhitelisted","type":"error"},{"inputs":[],"name":"NewOwnerIsTheZeroAddress","type":"error"},{"inputs":[],"name":"NonexistentToken","type":"error"},{"inputs":[],"name":"NotOnQuest","type":"error"},{"inputs":[],"name":"NotWhitelisted","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerAlreadyInitialized","type":"error"},{"inputs":[],"name":"QuestIdOutOfRange","type":"error"},{"inputs":[],"name":"TooManyActiveQuests","type":"error"},{"inputs":[],"name":"UseOfMintEntrypointProhibittedUseUnmaskVillainsBatch","type":"error"},{"inputs":[],"name":"VillainInputArrayLengthMismatch","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"tokenOwner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"AdventureApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"adventure","type":"address"},{"indexed":false,"internalType":"bool","name":"whitelisted","type":"bool"}],"name":"AdventureWhitelistUpdated","type":"event"},{"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":"baseTokenURI","type":"string"}],"name":"BaseURISet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"minter","type":"address"},{"indexed":true,"internalType":"bool","name":"whitelisted","type":"bool"}],"name":"MinterWhitelistUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"tokenOwner","type":"address"},{"indexed":true,"internalType":"address","name":"adventure","type":"address"},{"indexed":false,"internalType":"uint256","name":"questId","type":"uint256"},{"indexed":false,"internalType":"bool","name":"active","type":"bool"},{"indexed":false,"internalType":"bool","name":"booted","type":"bool"}],"name":"QuestUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"RoyaltySet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"suffixURI","type":"string"}],"name":"SuffixURISet","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"superVillainId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"maskedVillainId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"potionTokenId","type":"uint256"}],"name":"UnmaskVillain","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"activeQuestList","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"activeQuestLookup","outputs":[{"internalType":"bool","name":"isActive","type":"bool"},{"internalType":"uint32","name":"questId","type":"uint32"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"uint32","name":"arrayIndex","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"adventureBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"adventureSafeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"adventureTransferFrom","outputs":[],"stateMutability":"nonpayable","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"},{"internalType":"address","name":"operator","type":"address"}],"name":"areAdventuresApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"adventure","type":"address"}],"name":"bootFromAllQuests","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"questId","type":"uint256"}],"name":"enterQuest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"questId","type":"uint256"}],"name":"exitQuest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"adventure","type":"address"}],"name":"getActiveQuests","outputs":[{"components":[{"internalType":"bool","name":"isActive","type":"bool"},{"internalType":"uint32","name":"questId","type":"uint32"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"uint32","name":"arrayIndex","type":"uint32"}],"internalType":"struct Quest[]","name":"activeQuests","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"adventure","type":"address"}],"name":"getQuestCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"adventure","type":"address"},{"internalType":"uint256","name":"questId","type":"uint256"}],"name":"getTimeOnQuest","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSimultaneousQuests_","type":"uint256"}],"name":"initializeAdventureERC721","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"name":"initializeERC721","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply_","type":"uint256"}],"name":"initializeMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"bool","name":"","type":"bool"}],"name":"initializeOperatorFilterer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner_","type":"address"}],"name":"initializeOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"initializeRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"string","name":"suffixURI_","type":"string"}],"name":"initializeURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isAdventureWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"adventure","type":"address"},{"internalType":"uint256","name":"questId","type":"uint256"}],"name":"isParticipatingInQuest","outputs":[{"internalType":"bool","name":"participatingInQuest","type":"bool"},{"internalType":"uint256","name":"startTimestamp","type":"uint256"},{"internalType":"uint256","name":"index","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSimultaneousQuests","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[{"internalType":"uint256","name":"firstTokenId","type":"uint256"},{"internalType":"uint256","name":"lastTokenId","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextTokenId","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":"","type":"address"},{"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":"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":"setAdventuresApprovedForAll","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":"baseTokenURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"suffixURI_","type":"string"}],"name":"setSuffixURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"suffixURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"maskedVillainTokenIds","type":"uint256[]"},{"internalType":"uint256[]","name":"potionTokenIds","type":"uint256[]"}],"name":"unmaskVillainsBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"adventure","type":"address"}],"name":"unwhitelistAdventure","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"unwhitelistMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"adventure","type":"address"}],"name":"userExitAllQuests","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"adventure","type":"address"},{"internalType":"uint256","name":"questId","type":"uint256"}],"name":"userExitQuest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"adventure","type":"address"}],"name":"whitelistAdventure","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"whitelistMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAdventureList","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedAdventures","outputs":[{"internalType":"bool","name":"isWhitelisted","type":"bool"},{"internalType":"uint128","name":"arrayIndex","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedMinters","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a0908152620000289160179190620007ca565b503480156200003657600080fd5b506040516200491538038062004915833981016040819052620000599162000870565b604080516020808201835260008083528351918201909352918252906200008033620001a3565b815162000095906001906020850190620007ca565b508051620000ab906002906020840190620007ca565b505050620001116040518060400160405280601381526020017f4469676944616967616b7556696c6c61696e7300000000000000000000000000815250604051806040016040528060048152602001632224a22b60e11b815250620001f360201b60201c565b620001516040518060600160405280602a8152602001620048eb602a9139604080518082019091526005815264173539b7b760d91b60208201526200025f565b6200015d6064620002bc565b6200016982826200030e565b62000174836200035a565b62000195733cc6cdda760b79bafa08df41ecfa224f810dceb66001620003d0565b50506001601b555062000964565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b620001fd62000400565b60075460ff161562000222576040516376f1a0b360e01b815260040160405180910390fd5b815162000237906008906020850190620007ca565b5080516200024d906009906020840190620007ca565b50506007805460ff1916600117905550565b6200026962000400565b601554610100900460ff16156200029357604051635b79f68360e01b815260040160405180910390fd5b6200029e826200042e565b620002a9816200048a565b50506015805461ff001916610100179055565b620002c662000400565b600c5460ff1615620002eb57604051630e009cb560e11b815260040160405180910390fd5b620002f681620004db565b600e55600c805460ff19166001908117909155600d55565b6200031862000400565b60155460ff16156200033d57604051639383013960e01b815260040160405180910390fd5b62000349828262000520565b50506015805460ff19166001179055565b6200036462000400565b601954156200038957604051600162056bb360e21b0319815260040160405180910390fd5b80620003a85760405163e776bd1160e01b815260040160405180910390fd5b600019811415620003cb57604051620e9cb160e71b815260040160405180910390fd5b601955565b620003fc733cc6cdda760b79bafa08df41ecfa224f810dceb66001620005b160201b62001c2a1760201c565b5050565b6000546001600160a01b031633146200042c5760405163097b5fdb60e31b815260040160405180910390fd5b565b6200043862000400565b80516200044d906016906020840190620007ca565b507ff9c7803e94e0d3c02900d8a90893a6d5e90dd04d32a4cfe825520f82bf9f32f6816040516200047f9190620008cf565b60405180910390a150565b6200049462000400565b8051620004a9906017906020840190620007ca565b507f65ccd57f8a46e7a6cfc4d214d84094e8ba5561ab50fd328f26e4c44052ffeba0816040516200047f9190620008cf565b80620004fa5760405163318ccdef60e11b815260040160405180910390fd5b60648111156200051d57604051639cb75faf60e01b815260040160405180910390fd5b50565b6200052a62000400565b6103e86001600160601b03821611156200055757604051631557c04f60e21b815260040160405180910390fd5b620005638282620006c5565b604080516001600160a01b03841681526001600160601b03831660208201527f23813f5ad446622633cb58c75ceef768a2111751b0f30477a63e06fcaedcff60910160405180910390a15050565b6daaeb6d7670e522a718067333cd4e3b15620003fc5780156200064257604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200062557600080fd5b505af11580156200063a573d6000803e3d6000fd5b505050505050565b6001600160a01b03821615620006935760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af2903906044016200060a565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e486906024016200060a565b6127106001600160601b0382161115620007395760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b038216620007915760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c696420726563656976657200000000000000604482015260640162000730565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217601355565b828054620007d89062000927565b90600052602060002090601f016020900481019282620007fc576000855562000847565b82601f106200081757805160ff191683800117855562000847565b8280016001018555821562000847579182015b82811115620008475782518255916020019190600101906200082a565b506200085592915062000859565b5090565b5b808211156200085557600081556001016200085a565b6000806000606084860312156200088657600080fd5b835160208501519093506001600160a01b0381168114620008a657600080fd5b60408501519092506001600160601b0381168114620008c457600080fd5b809150509250925092565b600060208083528351808285015260005b81811015620008fe57858101830151858201604001528201620008e0565b8181111562000911576000604083870101525b50601f01601f1916929092016040019392505050565b600181811c908216806200093c57607f821691505b602082108114156200095e57634e487b7160e01b600052602260045260246000fd5b50919050565b613f7780620009746000396000f3fe608060405234801561001057600080fd5b506004361061038e5760003560e01c8063869f9110116101de578063b3bcea481161010f578063e2989f4c116100ad578063ed1e00851161007c578063ed1e008514610930578063f1e923c514610953578063f2fde38b14610966578063f5234c561461097957600080fd5b8063e2989f4c146108bb578063e370ab46146108ce578063e985e9c5146108e1578063e9b4f7aa1461091d57600080fd5b8063c87b56dd116100e9578063c87b56dd14610885578063d147c97a14610898578063d547cfb7146108ab578063d5abeb01146108b357600080fd5b8063b3bcea4814610857578063b88d4fde1461085f578063c05e2f441461087257600080fd5b806395fa0ff51161017c578063a22cb46511610156578063a22cb465146107cc578063aa6cab5a146107df578063aca139f714610831578063b39fa0001461084457600080fd5b806395fa0ff5146107935780639bb257ad146107a65780639bc17ea4146107b957600080fd5b80638c5f36bb116101b85780638c5f36bb146107545780638da5cb5b14610767578063916237181461077857806395d89b411461078b57600080fd5b8063869f9110146107265780638895d43c1461072e5780638be18e571461074157600080fd5b8063301be740116102c357806355f804b31161026157806375794a3c1161023057806375794a3c146106bb5780637e10b35b146106c45780637f1a5ce1146106d7578063816a15011461071357600080fd5b806355f804b3146106445780636352211e14610657578063703fa9291461066a57806370a082311461069a57600080fd5b806342842e0e1161029d57806342842e0e146105e35780634e02c078146105f657806351dadc281461060957806353401df91461063157600080fd5b8063301be7401461057a57806340c10f19146105a657806341f43434146105ce57600080fd5b8063113405571161033057806323b872dd1161030a57806323b872dd1461050f578063247946c9146105225780632a55205a146105355780632ebb386a1461056757600080fd5b8063113405571461045657806311ad4081146104e9578063225848cf146104fc57600080fd5b8063070cba171161036c578063070cba17146103e5578063081812fc146103f8578063095ea7b3146104235780630f3d911c1461043657600080fd5b806301ffc9a71461039357806302fa7c47146103bb57806306fdde03146103d0575b600080fd5b6103a66103a136600461369b565b61098c565b60405190151581526020015b60405180910390f35b6103ce6103c93660046136d4565b6109b7565b005b6103d8610a43565b6040516103b2919061376f565b6103ce6103f3366004613782565b610ad5565b61040b61040636600461379d565b610cdb565b6040516001600160a01b0390911681526020016103b2565b6103ce6104313660046137b6565b610d02565b6104496104443660046137e0565b610d1b565b6040516103b2919061380c565b6104b3610464366004613884565b601260209081526000938452604080852082529284528284209052825290205460ff81169063ffffffff61010082048116916001600160401b03600160281b82041691600160681b9091041684565b60408051941515855263ffffffff93841660208601526001600160401b03909216918401919091521660608201526080016103b2565b6103ce6104f73660046138cd565b610f1b565b6103ce61050a3660046138fd565b610f3b565b6103ce61051d366004613929565b610f5a565b6103ce610530366004613a10565b610f85565b6105486105433660046138cd565b610fdb565b604080516001600160a01b0390931683526020830191909152016103b2565b6103ce6105753660046137e0565b611089565b6103a6610588366004613782565b6001600160a01b03166000908152600b602052604090205460ff1690565b6105b96105b43660046137b6565b6110a7565b604080519283526020830191909152016103b2565b61040b6daaeb6d7670e522a718067333cd4e81565b6103ce6105f1366004613929565b6110e2565b6103ce610604366004613a73565b611107565b61061c610617366004613a73565b611124565b60405163ffffffff90911681526020016103b2565b6103ce61063f3660046138cd565b61117a565b6103ce610652366004613a98565b611196565b61040b61066536600461379d565b6111ec565b61067d610678366004613a73565b611251565b6040805193151584526020840192909252908201526060016103b2565b6106ad6106a8366004613782565b6112d5565b6040519081526020016103b2565b6106ad60185481565b6103ce6106d2366004613782565b61135b565b6103a66106e5366004613acc565b6001600160a01b03918216600090815260106020908152604080832093909416825291909152205460ff1690565b6106ad610721366004613a73565b611514565b600e546106ad565b6103ce61073c366004613b3a565b611549565b6103ce61074f366004613a98565b61163f565b6103ce610762366004613782565b61168a565b6000546001600160a01b031661040b565b6106ad6107863660046137e0565b6116c0565b6103d86116e8565b6103ce6107a13660046136d4565b6116f7565b6103ce6107b4366004613782565b61173e565b6103ce6107c736600461379d565b6117a1565b6103ce6107da3660046138fd565b6117c8565b6108126107ed366004613782565b600b6020526000908152604090205460ff81169061010090046001600160801b031682565b6040805192151583526001600160801b039091166020830152016103b2565b6103ce61083f366004613929565b6117dc565b6103ce61085236600461379d565b61181a565b6103d8611867565b6103ce61086d366004613bba565b6118f5565b6103ce6108803660046138fd565b611922565b6103d861089336600461379d565b6119bb565b6103ce6108a6366004613a10565b611a52565b6103d8611ab7565b6019546106ad565b61040b6108c936600461379d565b611ac4565b6103ce6108dc366004613929565b611aee565b6103a66108ef366004613acc565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6103ce61092b366004613782565b611b0f565b6103a661093e366004613782565b601a6020526000908152604090205460ff1681565b6103ce6109613660046137e0565b611b6d565b6103ce610974366004613782565b611b8a565b6103ce61098736600461379d565b611bb9565b60006001600160e01b03198216637a91a62b60e11b14806109b157506109b182611d37565b92915050565b6109bf611d77565b6103e86001600160601b03821611156109eb57604051631557c04f60e21b815260040160405180910390fd5b6109f58282611da4565b604080516001600160a01b03841681526001600160601b03831660208201527f23813f5ad446622633cb58c75ceef768a2111751b0f30477a63e06fcaedcff60910160405180910390a15050565b606060088054610a5290613c35565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7e90613c35565b8015610acb5780601f10610aa057610100808354040283529160200191610acb565b820191906000526020600020905b815481529060010190602001808311610aae57829003601f168201915b5050505050905090565b610add611d77565b6001600160a01b0381166000908152600b602052604090205460ff16610b1657604051630b094f2760e31b815260040160405180910390fd5b6001600160a01b0381166000908152600b6020526040812054600a546101009091046001600160801b03169190610b4f90600190613c86565b905080826001600160801b031614610c4b57600a8181548110610b7457610b74613c9d565b600091825260209091200154600a80546001600160a01b03909216916001600160801b038516908110610ba957610ba9613c9d565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555081600b6000600a856001600160801b031681548110610bf857610bf8613c9d565b60009182526020808320909101546001600160a01b03168352820192909252604001902080546001600160801b03929092166101000270ffffffffffffffffffffffffffffffff00199092169190911790555b600a805480610c5c57610c5c613cb3565b60008281526020808220600019908401810180546001600160a01b03191690559092019092556001600160a01b038516808352600b8252604080842080546001600160881b031916905551928352917fe152843d7324c2cb58e95865f2b78d38f2dab6ce9eadf09438ec2c41e78c705e910160405180910390a2505050565b6000610ce682611ea1565b506000908152600560205260409020546001600160a01b031690565b81610d0c81611f00565b610d168383611fc8565b505050565b60606000610d2984846116c0565b9050806001600160401b03811115610d4357610d43613965565b604051908082528060200260200182016040528015610d9557816020015b604080516080810182526000808252602080830182905292820181905260608201528252600019909201910181610d615790505b5060008581526011602090815260408083206001600160a01b0388168452825280832080548251818502810185019093528083529496509293909291830182828015610e2c57602002820191906000526020600020906000905b82829054906101000a900463ffffffff1663ffffffff1681526020019060040190602082600301049283019260010382029150808411610def5790505b5050505050905060005b82811015610f125760008681526012602090815260408083206001600160a01b038916845290915281208351909190849084908110610e7757610e77613c9d565b60209081029190910181015163ffffffff90811683528282019390935260409182016000208251608081018452905460ff81161515825261010081048516928201929092526001600160401b03600160281b83041692810192909252600160681b900490911660608201528451859083908110610ef657610ef6613c9d565b602002602001018190525080610f0b90613cc9565b9050610e36565b50505092915050565b610f236120d9565b610f2c826120ff565b610f3782338361212e565b5050565b610f37733cc6cdda760b79bafa08df41ecfa224f810dceb66001611c2a565b826001600160a01b0381163314610f7457610f7433611f00565b610f7f8484846124fd565b50505050565b610f8d611d77565b601554610100900460ff1615610fb657604051635b79f68360e01b815260040160405180910390fd5b610fbf82611196565b610fc88161163f565b50506015805461ff001916610100179055565b60008281526014602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b03169282019290925282916110505750604080518082019091526013546001600160a01b0381168252600160a01b90046001600160601b031660208201525b60208101516000906127109061106f906001600160601b031687613ce4565b6110799190613d19565b91519350909150505b9250929050565b6110928161252e565b61109b82612568565b610f3782826000612599565b6000806002601b54146110cd57604051637b4e6d3560e11b815260040160405180910390fd5b6110d78484612857565b915091509250929050565b826001600160a01b03811633146110fc576110fc33611f00565b610f7f848484612932565b6111108261252e565b61111983612568565b610d1683838361212e565b6011602052826000526040600020602052816000526040600020818154811061114c57600080fd5b906000526020600020906008918282040191900660040292509250509054906101000a900463ffffffff1681565b6111826120d9565b61118b826120ff565b610f3782338361294d565b61119e611d77565b80516111b19060169060208401906135cb565b507ff9c7803e94e0d3c02900d8a90893a6d5e90dd04d32a4cfe825520f82bf9f32f6816040516111e1919061376f565b60405180910390a150565b6000818152600360205260408120546001600160a01b0316806109b15760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064015b60405180910390fd5b6000808063ffffffff84111561127a576040516307f159d160e31b815260040160405180910390fd5b50505060009283526012602090815260408085206001600160a01b0394909416855292815282842063ffffffff9283168552905291205460ff811692600160281b82046001600160401b031692600160681b90920490911690565b60006001600160a01b03821661133f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401611248565b506001600160a01b031660009081526004602052604090205490565b611363611d77565b6001600160a01b0381166000908152600b602052604090205460ff161561139d5760405163b73e95e160e01b815260040160405180910390fd5b6040516301ffc9a760e01b81526325df830760e21b60048201526001600160a01b038216906301ffc9a79060240160206040518083038186803b1580156113e357600080fd5b505afa1580156113f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061141b9190613d2d565b611438576040516390c51dd760e01b815260040160405180910390fd5b600a546001600160801b0381111561146357604051636ab8f7f960e11b815260040160405180910390fd5b6001600160a01b0382166000818152600b60209081526040808320805460016001600160881b03199091166101006001600160801b03891602178117909155600a8054808301825594527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a890930180546001600160a01b03191685179055519182527fe152843d7324c2cb58e95865f2b78d38f2dab6ce9eadf09438ec2c41e78c705e910160405180910390a25050565b6000806000611524868686611251565b50915091508161153557600061153f565b61153f8142613c86565b9695505050505050565b8281146115695760405163fee3f79f60e01b815260040160405180910390fd5b6002601b55600061157a86836110a7565b506001601b55905060005b828110156116365760008484838181106115a1576115a1613c9d565b90506020020135111561162e57808201876001600160a01b03167f4d36ef53e084d5eacab9dfcb622cff600be91a5bbf2cdbff1edc2902aff636018888858181106115ee576115ee613c9d565b9050602002013587878681811061160757611607613c9d565b90506020020135604051611625929190918252602082015260400190565b60405180910390a35b600101611585565b50505050505050565b611647611d77565b805161165a9060179060208401906135cb565b507f65ccd57f8a46e7a6cfc4d214d84094e8ba5561ab50fd328f26e4c44052ffeba0816040516111e1919061376f565b6000546001600160a01b0316156116b457604051631360e86560e31b815260040160405180910390fd5b6116bd81612bdd565b50565b60009182526011602090815260408084206001600160a01b0393909316845291905290205490565b606060098054610a5290613c35565b6116ff611d77565b60155460ff161561172357604051639383013960e01b815260040160405180910390fd5b61172d82826109b7565b50506015805460ff19166001179055565b611746611d77565b61174f81612c2d565b6001600160a01b0381166000818152601a6020526040808220805460ff1916600190811790915590519092917f04eca792f863d6d8cd8aba48f8ec67d4db239c7a3cb7ea94daffa825dafa676891a350565b6117a96120d9565b6117b2816120ff565b6002600d556117c081612c67565b506001600d55565b816117d281611f00565b610d168383612d0e565b6117e46120d9565b6117ed816120ff565b6002600d8190555061181083838360405180602001604052806000815250612d19565b50506001600d5550565b611822611d77565b600c5460ff161561184657604051630e009cb560e11b815260040160405180910390fd5b61184f81612d4c565b600e55600c805460ff19166001908117909155600d55565b6017805461187490613c35565b80601f01602080910402602001604051908101604052809291908181526020018280546118a090613c35565b80156118ed5780601f106118c2576101008083540402835291602001916118ed565b820191906000526020600020905b8154815290600101906020018083116118d057829003601f168201915b505050505081565b836001600160a01b038116331461190f5761190f33611f00565b61191b85858585612d8c565b5050505050565b336001600160a01b03831681141561194d576040516353ff677360e11b815260040160405180910390fd5b6001600160a01b03818116600081815260106020908152604080832094881680845294825291829020805460ff191687151590811790915591519182527f83347dcc77580bb841ae3bac834b5b8ac5ccd2326276d265e638987eb6b2c05691015b60405180910390a3505050565b6000818152600360205260409020546060906001600160a01b03166119f35760405163163a09e160e31b815260040160405180910390fd5b60006119fd612dbe565b90506000815111611a1d5760405180602001604052806000815250611a4b565b80611a2784612dcd565b6017604051602001611a3b93929190613d4a565b6040516020818303038152906040525b9392505050565b611a5a611d77565b60075460ff1615611a7e576040516376f1a0b360e01b815260040160405180910390fd5b8151611a919060089060208501906135cb565b508051611aa59060099060208401906135cb565b50506007805460ff1916600117905550565b6016805461187490613c35565b600a8181548110611ad457600080fd5b6000918252602090912001546001600160a01b0316905081565b611af66120d9565b611aff816120ff565b6002600d55611810838383612ed2565b611b17611d77565b611b2081613079565b6001600160a01b0381166000818152601a6020526040808220805460ff19169055519091907f04eca792f863d6d8cd8aba48f8ec67d4db239c7a3cb7ea94daffa825dafa6768908390a350565b611b75611d77565b611b7e8161252e565b610f3782826001612599565b611b92611d77565b6001600160a01b0381166116b45760405163f82d512f60e01b815260040160405180910390fd5b611bc1611d77565b60195415611be557604051600162056bb360e21b0319815260040160405180910390fd5b80611c035760405163e776bd1160e01b815260040160405180910390fd5b600019811415611c2557604051620e9cb160e71b815260040160405180910390fd5b601955565b6daaeb6d7670e522a718067333cd4e3b15610f37578015611cb757604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b158015611c9b57600080fd5b505af1158015611caf573d6000803e3d6000fd5b505050505050565b6001600160a01b03821615611d065760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af290390604401611c81565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401611c81565b60006001600160e01b031982166395fa0ff560e01b1480611d6857506001600160e01b0319821663247946c960e01b145b806109b157506109b1826130b2565b6000546001600160a01b03163314611da25760405163097b5fdb60e31b815260040160405180910390fd5b565b6127106001600160601b0382161115611e125760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401611248565b6001600160a01b038216611e685760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401611248565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217601355565b6000818152600360205260409020546001600160a01b03166116bd5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401611248565b6daaeb6d7670e522a718067333cd4e3b156116bd57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c61711349060440160206040518083038186803b158015611f6857600080fd5b505afa158015611f7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fa09190613d2d565b6116bd57604051633b79c77360e21b81526001600160a01b0382166004820152602401611248565b6000611fd3826111ec565b9050806001600160a01b0316836001600160a01b031614156120415760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401611248565b336001600160a01b038216148061205d575061205d81336108ef565b6120cf5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401611248565b610d1683836130d7565b6120e233610588565b611da257604051639eea455560e01b815260040160405180910390fd5b61211161210b826111ec565b336106e5565b6116bd576040516306c5be1b60e31b815260040160405180910390fd5b600080600061213e868686611251565b925092509250826121625760405163107acf8360e11b815260040160405180910390fd5b836000600161217189896116c0565b61217b9190613c86565b90508083146122e05760008881526011602090815260408083206001600160a01b038b16845290915290208054829081106121b8576121b8613c9d565b600091825260208083206008830401548b84526011825260408085206001600160a01b038d1686529092529220805460079092166004026101000a90920463ffffffff1691908590811061220e5761220e613c9d565b600091825260208083206008830401805460079093166004026101000a63ffffffff8181021990941695909316929092029390931790558981526012825260408082206001600160a01b038b168084529084528183208c84526011855282842091845293528120805486939291908590811061228c5761228c613c9d565b6000918252602080832060088304015460079092166004026101000a90910463ffffffff90811684529083019390935260409091019020805463ffffffff60681b1916600160681b93909216929092021790555b60008881526011602090815260408083206001600160a01b038b168452909152902080548061231157612311613cb3565b60008281526020808220600860001990940193840401805463ffffffff600460078716026101000a810219909116909155929093558a81526012835260408082206001600160a01b038c1683528452808220928616825291909252812080546001600160881b0319169055612385896111ec565b9050876001600160a01b0316816001600160a01b03168a7f1171d71105bda3fa01f863317a96e01684416ccb1e5416de7c09510bdfbe6aee8a6000806040516123e39392919092835290151560208301521515604082015260600190565b60405180910390a4876001600160a01b03166392b612946040518163ffffffff1660e01b815260040160206040518083038186803b15801561242457600080fd5b505afa158015612438573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061245c9190613d2d565b15612482576000898152600f60205260408120805490919061247d90613e0e565b909155505b604051636d4229c960e01b81526001600160a01b038281166004830152602482018b90526044820189905260648201879052891690636d4229c990608401600060405180830381600087803b1580156124da57600080fd5b505af11580156124ee573d6000803e3d6000fd5b50505050505050505050505050565b6125073382613145565b6125235760405162461bcd60e51b815260040161124890613e25565b610d16838383612ed2565b6001600160a01b0381166000908152600b602052604090205460ff16156116bd5760405163c0f8cffb60e01b815260040160405180910390fd5b33612572826111ec565b6001600160a01b0316146116bd5760405163b23b68b760e01b815260040160405180910390fd5b60006125a4846111ec565b905060006125b285856116c0565b9050836001600160a01b03166392b612946040518163ffffffff1660e01b815260040160206040518083038186803b1580156125ed57600080fd5b505afa158015612601573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126259190613d2d565b1561264e576000858152600f602052604081208054839290612648908490613c86565b90915550505b60005b8181101561282b5760008681526011602090815260408083206001600160a01b0389168452909152812080548390811061268d5761268d613c9d565b600091825260208083206008830401548a84526012825260408085206001600160a01b038c8116808852918552828720600790961660040261010090810a90940463ffffffff9081168089529686528388208451608081018652905460ff811615158252958604821681880152600160281b86046001600160401b0316818601819052600160681b9096049091166060808301919091528451888152968701989098528c151593860193909352949650909491939092908916918c917f1171d71105bda3fa01f863317a96e01684416ccb1e5416de7c09510bdfbe6aee910160405180910390a460008981526012602090815260408083206001600160a01b038c811680865291845282852063ffffffff891680875294529382902080546001600160881b03191690559051636d4229c960e01b81529289166004840152602483018c905260448301919091526064820183905290636d4229c990608401600060405180830381600087803b15801561280557600080fd5b505af1158015612819573d6000803e3d6000fd5b50505050836001019350505050612651565b5060008581526011602090815260408083206001600160a01b0388168452909152812061191b9161364f565b6000806001600160a01b038416612881576040516389a4ea1960e01b815260040160405180910390fd5b8261289f57604051632465b2bb60e01b815260040160405180910390fd5b6128a833613079565b601854806128b4575060015b915081600060016128c58684613e73565b6128cf9190613c86565b6019549091508082111561290057604051637502c12360e11b81526004810183905260248101829052604401611248565b82860160185560005b868110156129255761291d888286016131c3565b600101612909565b5090925050509250929050565b610d16838383604051806020016040528060008152506118f5565b600061295a848484611251565b50509050801561297d57604051637f53cfe360e01b815260040160405180910390fd5b600061298985856116c0565b9050600e5481106129ad5760405163f8315a8760e01b815260040160405180910390fd5b60008581526011602090815260408083206001600160a01b03881680855290835281842080546001808201835591865284862060088204018054600790921660040261010090810a63ffffffff818102199094168c8516918202179092558c88526012875285882094885293865284872081885290955292852080546cffffffffffffffff00000000ff1916600160281b426001600160401b0316021790911770ffffffff0000000000000000ffffffff0019169190930263ffffffff60681b191617600160681b918516919091021790558390612a8a876111ec565b604080518781526001602082015260008183015290519192506001600160a01b0388811692908416918a917f1171d71105bda3fa01f863317a96e01684416ccb1e5416de7c09510bdfbe6aee9181900360600190a4856001600160a01b03166392b612946040518163ffffffff1660e01b815260040160206040518083038186803b158015612b1857600080fd5b505afa158015612b2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b509190613d2d565b15612b6b576000878152600f60205260409020805460010190555b60405163688a374160e01b81526001600160a01b038281166004830152602482018990526044820187905287169063688a374190606401600060405180830381600087803b158015612bbc57600080fd5b505af1158015612bd0573d6000803e3d6000fd5b5050505050505050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0381166000908152601a602052604090205460ff16156116bd576040516302339ccf60e31b815260040160405180910390fd5b6000612c72826111ec565b9050612c80816000846131cd565b612c8b6000836130d7565b6001600160a01b0381166000908152600460205260408120805460019290612cb4908490613c86565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b610f373383836131fa565b612d24848484612ed2565b612d30848484846132c1565b610f7f5760405162461bcd60e51b815260040161124890613e8b565b80612d6a5760405163318ccdef60e11b815260040160405180910390fd5b60648111156116bd57604051639cb75faf60e01b815260040160405180910390fd5b612d963383613145565b612db25760405162461bcd60e51b815260040161124890613e25565b610f7f84848484612d19565b606060168054610a5290613c35565b606081612df15750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612e1b5780612e0581613cc9565b9150612e149050600a83613d19565b9150612df5565b6000816001600160401b03811115612e3557612e35613965565b6040519080825280601f01601f191660200182016040528015612e5f576020820181803683370190505b5090505b8415612eca57612e74600183613c86565b9150612e81600a86613edd565b612e8c906030613e73565b60f81b818381518110612ea157612ea1613c9d565b60200101906001600160f81b031916908160001a905350612ec3600a86613d19565b9450612e63565b949350505050565b826001600160a01b0316612ee5826111ec565b6001600160a01b031614612f495760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401611248565b6001600160a01b038216612fab5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401611248565b612fb68383836131cd565b612fc16000826130d7565b6001600160a01b0383166000908152600460205260408120805460019290612fea908490613c86565b90915550506001600160a01b0382166000908152600460205260408120805460019290613018908490613e73565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0381166000908152601a602052604090205460ff166116bd57604051637e75cbe560e01b815260040160405180910390fd5b60006001600160e01b0319821663152a902d60e11b14806109b157506109b1826133ce565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061310c826111ec565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080613151836111ec565b9050806001600160a01b0316846001600160a01b0316148061319857506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b80612eca5750836001600160a01b03166131b184610cdb565b6001600160a01b031614949350505050565b610f37828261340d565b6000818152600f602052604090205415610d16576040516302579f0160e61b815260040160405180910390fd5b816001600160a01b0316836001600160a01b0316141561325c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401611248565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3191016119ae565b60006001600160a01b0384163b156133c357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613305903390899088908890600401613ef1565b602060405180830381600087803b15801561331f57600080fd5b505af192505050801561334f575060408051601f3d908101601f1916820190925261334c91810190613f24565b60015b6133a9573d80801561337d576040519150601f19603f3d011682016040523d82523d6000602084013e613382565b606091505b5080516133a15760405162461bcd60e51b815260040161124890613e8b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612eca565b506001949350505050565b60006001600160e01b0319821663f9f7ab4160e01b14806133fe57506001600160e01b0319821662059cfd60ed1b145b806109b157506109b18261355b565b6001600160a01b0382166134635760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401611248565b6000818152600360205260409020546001600160a01b0316156134c85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401611248565b6134d4600083836131cd565b6001600160a01b03821660009081526004602052604081208054600192906134fd908490613e73565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160e01b031982166368a3e4bd60e11b14806109b157506109b18260006001600160e01b031982166380ac58cd60e01b14806135ac57506001600160e01b03198216635b5e139f60e01b145b806109b157506301ffc9a760e01b6001600160e01b03198316146109b1565b8280546135d790613c35565b90600052602060002090601f0160209004810192826135f9576000855561363f565b82601f1061361257805160ff191683800117855561363f565b8280016001018555821561363f579182015b8281111561363f578251825591602001919060010190613624565b5061364b929150613670565b5090565b5080546000825560070160089004906000526020600020908101906116bd91905b5b8082111561364b5760008155600101613671565b6001600160e01b0319811681146116bd57600080fd5b6000602082840312156136ad57600080fd5b8135611a4b81613685565b80356001600160a01b03811681146136cf57600080fd5b919050565b600080604083850312156136e757600080fd5b6136f0836136b8565b915060208301356001600160601b038116811461370c57600080fd5b809150509250929050565b60005b8381101561373257818101518382015260200161371a565b83811115610f7f5750506000910152565b6000815180845261375b816020860160208601613717565b601f01601f19169290920160200192915050565b602081526000611a4b6020830184613743565b60006020828403121561379457600080fd5b611a4b826136b8565b6000602082840312156137af57600080fd5b5035919050565b600080604083850312156137c957600080fd5b6137d2836136b8565b946020939093013593505050565b600080604083850312156137f357600080fd5b82359150613803602084016136b8565b90509250929050565b602080825282518282018190526000919060409081850190868401855b828110156138775781518051151585528681015163ffffffff90811688870152868201516001600160401b031687870152606091820151169085015260809093019290850190600101613829565b5091979650505050505050565b60008060006060848603121561389957600080fd5b833592506138a9602085016136b8565b9150604084013563ffffffff811681146138c257600080fd5b809150509250925092565b600080604083850312156138e057600080fd5b50508035926020909101359150565b80151581146116bd57600080fd5b6000806040838503121561391057600080fd5b613919836136b8565b9150602083013561370c816138ef565b60008060006060848603121561393e57600080fd5b613947846136b8565b9250613955602085016136b8565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561399557613995613965565b604051601f8501601f19908116603f011681019082821181831017156139bd576139bd613965565b816040528093508581528686860111156139d657600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112613a0157600080fd5b611a4b8383356020850161397b565b60008060408385031215613a2357600080fd5b82356001600160401b0380821115613a3a57600080fd5b613a46868387016139f0565b93506020850135915080821115613a5c57600080fd5b50613a69858286016139f0565b9150509250929050565b600080600060608486031215613a8857600080fd5b83359250613955602085016136b8565b600060208284031215613aaa57600080fd5b81356001600160401b03811115613ac057600080fd5b612eca848285016139f0565b60008060408385031215613adf57600080fd5b613ae8836136b8565b9150613803602084016136b8565b60008083601f840112613b0857600080fd5b5081356001600160401b03811115613b1f57600080fd5b6020830191508360208260051b850101111561108257600080fd5b600080600080600060608688031215613b5257600080fd5b613b5b866136b8565b945060208601356001600160401b0380821115613b7757600080fd5b613b8389838a01613af6565b90965094506040880135915080821115613b9c57600080fd5b50613ba988828901613af6565b969995985093965092949392505050565b60008060008060808587031215613bd057600080fd5b613bd9856136b8565b9350613be7602086016136b8565b92506040850135915060608501356001600160401b03811115613c0957600080fd5b8501601f81018713613c1a57600080fd5b613c298782356020840161397b565b91505092959194509250565b600181811c90821680613c4957607f821691505b60208210811415613c6a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015613c9857613c98613c70565b500390565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b6000600019821415613cdd57613cdd613c70565b5060010190565b6000816000190483118215151615613cfe57613cfe613c70565b500290565b634e487b7160e01b600052601260045260246000fd5b600082613d2857613d28613d03565b500490565b600060208284031215613d3f57600080fd5b8151611a4b816138ef565b600084516020613d5d8285838a01613717565b855191840191613d708184848a01613717565b8554920191600090600181811c9080831680613d8d57607f831692505b858310811415613dab57634e487b7160e01b85526022600452602485fd5b808015613dbf5760018114613dd057613dfd565b60ff19851688528388019550613dfd565b60008b81526020902060005b85811015613df55781548a820152908401908801613ddc565b505083880195505b50939b9a5050505050505050505050565b600081613e1d57613e1d613c70565b506000190190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b60008219821115613e8657613e86613c70565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082613eec57613eec613d03565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061153f90830184613743565b600060208284031215613f3657600080fd5b8151611a4b8161368556fea2646970667358221220ba7e0f60056d8366f1f29eae91bb42902953a552ff4a42d125df548c2d3b059c64736f6c6343000809003368747470733a2f2f6469676964616967616b752e636f6d2f76696c6c61696e732f6d657461646174612f00000000000000000000000000000000000000000000000000000000000027100000000000000000000000001d22b8545d1e185ebca5c592964b3fbe9719916b00000000000000000000000000000000000000000000000000000000000003e8

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061038e5760003560e01c8063869f9110116101de578063b3bcea481161010f578063e2989f4c116100ad578063ed1e00851161007c578063ed1e008514610930578063f1e923c514610953578063f2fde38b14610966578063f5234c561461097957600080fd5b8063e2989f4c146108bb578063e370ab46146108ce578063e985e9c5146108e1578063e9b4f7aa1461091d57600080fd5b8063c87b56dd116100e9578063c87b56dd14610885578063d147c97a14610898578063d547cfb7146108ab578063d5abeb01146108b357600080fd5b8063b3bcea4814610857578063b88d4fde1461085f578063c05e2f441461087257600080fd5b806395fa0ff51161017c578063a22cb46511610156578063a22cb465146107cc578063aa6cab5a146107df578063aca139f714610831578063b39fa0001461084457600080fd5b806395fa0ff5146107935780639bb257ad146107a65780639bc17ea4146107b957600080fd5b80638c5f36bb116101b85780638c5f36bb146107545780638da5cb5b14610767578063916237181461077857806395d89b411461078b57600080fd5b8063869f9110146107265780638895d43c1461072e5780638be18e571461074157600080fd5b8063301be740116102c357806355f804b31161026157806375794a3c1161023057806375794a3c146106bb5780637e10b35b146106c45780637f1a5ce1146106d7578063816a15011461071357600080fd5b806355f804b3146106445780636352211e14610657578063703fa9291461066a57806370a082311461069a57600080fd5b806342842e0e1161029d57806342842e0e146105e35780634e02c078146105f657806351dadc281461060957806353401df91461063157600080fd5b8063301be7401461057a57806340c10f19146105a657806341f43434146105ce57600080fd5b8063113405571161033057806323b872dd1161030a57806323b872dd1461050f578063247946c9146105225780632a55205a146105355780632ebb386a1461056757600080fd5b8063113405571461045657806311ad4081146104e9578063225848cf146104fc57600080fd5b8063070cba171161036c578063070cba17146103e5578063081812fc146103f8578063095ea7b3146104235780630f3d911c1461043657600080fd5b806301ffc9a71461039357806302fa7c47146103bb57806306fdde03146103d0575b600080fd5b6103a66103a136600461369b565b61098c565b60405190151581526020015b60405180910390f35b6103ce6103c93660046136d4565b6109b7565b005b6103d8610a43565b6040516103b2919061376f565b6103ce6103f3366004613782565b610ad5565b61040b61040636600461379d565b610cdb565b6040516001600160a01b0390911681526020016103b2565b6103ce6104313660046137b6565b610d02565b6104496104443660046137e0565b610d1b565b6040516103b2919061380c565b6104b3610464366004613884565b601260209081526000938452604080852082529284528284209052825290205460ff81169063ffffffff61010082048116916001600160401b03600160281b82041691600160681b9091041684565b60408051941515855263ffffffff93841660208601526001600160401b03909216918401919091521660608201526080016103b2565b6103ce6104f73660046138cd565b610f1b565b6103ce61050a3660046138fd565b610f3b565b6103ce61051d366004613929565b610f5a565b6103ce610530366004613a10565b610f85565b6105486105433660046138cd565b610fdb565b604080516001600160a01b0390931683526020830191909152016103b2565b6103ce6105753660046137e0565b611089565b6103a6610588366004613782565b6001600160a01b03166000908152600b602052604090205460ff1690565b6105b96105b43660046137b6565b6110a7565b604080519283526020830191909152016103b2565b61040b6daaeb6d7670e522a718067333cd4e81565b6103ce6105f1366004613929565b6110e2565b6103ce610604366004613a73565b611107565b61061c610617366004613a73565b611124565b60405163ffffffff90911681526020016103b2565b6103ce61063f3660046138cd565b61117a565b6103ce610652366004613a98565b611196565b61040b61066536600461379d565b6111ec565b61067d610678366004613a73565b611251565b6040805193151584526020840192909252908201526060016103b2565b6106ad6106a8366004613782565b6112d5565b6040519081526020016103b2565b6106ad60185481565b6103ce6106d2366004613782565b61135b565b6103a66106e5366004613acc565b6001600160a01b03918216600090815260106020908152604080832093909416825291909152205460ff1690565b6106ad610721366004613a73565b611514565b600e546106ad565b6103ce61073c366004613b3a565b611549565b6103ce61074f366004613a98565b61163f565b6103ce610762366004613782565b61168a565b6000546001600160a01b031661040b565b6106ad6107863660046137e0565b6116c0565b6103d86116e8565b6103ce6107a13660046136d4565b6116f7565b6103ce6107b4366004613782565b61173e565b6103ce6107c736600461379d565b6117a1565b6103ce6107da3660046138fd565b6117c8565b6108126107ed366004613782565b600b6020526000908152604090205460ff81169061010090046001600160801b031682565b6040805192151583526001600160801b039091166020830152016103b2565b6103ce61083f366004613929565b6117dc565b6103ce61085236600461379d565b61181a565b6103d8611867565b6103ce61086d366004613bba565b6118f5565b6103ce6108803660046138fd565b611922565b6103d861089336600461379d565b6119bb565b6103ce6108a6366004613a10565b611a52565b6103d8611ab7565b6019546106ad565b61040b6108c936600461379d565b611ac4565b6103ce6108dc366004613929565b611aee565b6103a66108ef366004613acc565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6103ce61092b366004613782565b611b0f565b6103a661093e366004613782565b601a6020526000908152604090205460ff1681565b6103ce6109613660046137e0565b611b6d565b6103ce610974366004613782565b611b8a565b6103ce61098736600461379d565b611bb9565b60006001600160e01b03198216637a91a62b60e11b14806109b157506109b182611d37565b92915050565b6109bf611d77565b6103e86001600160601b03821611156109eb57604051631557c04f60e21b815260040160405180910390fd5b6109f58282611da4565b604080516001600160a01b03841681526001600160601b03831660208201527f23813f5ad446622633cb58c75ceef768a2111751b0f30477a63e06fcaedcff60910160405180910390a15050565b606060088054610a5290613c35565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7e90613c35565b8015610acb5780601f10610aa057610100808354040283529160200191610acb565b820191906000526020600020905b815481529060010190602001808311610aae57829003601f168201915b5050505050905090565b610add611d77565b6001600160a01b0381166000908152600b602052604090205460ff16610b1657604051630b094f2760e31b815260040160405180910390fd5b6001600160a01b0381166000908152600b6020526040812054600a546101009091046001600160801b03169190610b4f90600190613c86565b905080826001600160801b031614610c4b57600a8181548110610b7457610b74613c9d565b600091825260209091200154600a80546001600160a01b03909216916001600160801b038516908110610ba957610ba9613c9d565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555081600b6000600a856001600160801b031681548110610bf857610bf8613c9d565b60009182526020808320909101546001600160a01b03168352820192909252604001902080546001600160801b03929092166101000270ffffffffffffffffffffffffffffffff00199092169190911790555b600a805480610c5c57610c5c613cb3565b60008281526020808220600019908401810180546001600160a01b03191690559092019092556001600160a01b038516808352600b8252604080842080546001600160881b031916905551928352917fe152843d7324c2cb58e95865f2b78d38f2dab6ce9eadf09438ec2c41e78c705e910160405180910390a2505050565b6000610ce682611ea1565b506000908152600560205260409020546001600160a01b031690565b81610d0c81611f00565b610d168383611fc8565b505050565b60606000610d2984846116c0565b9050806001600160401b03811115610d4357610d43613965565b604051908082528060200260200182016040528015610d9557816020015b604080516080810182526000808252602080830182905292820181905260608201528252600019909201910181610d615790505b5060008581526011602090815260408083206001600160a01b0388168452825280832080548251818502810185019093528083529496509293909291830182828015610e2c57602002820191906000526020600020906000905b82829054906101000a900463ffffffff1663ffffffff1681526020019060040190602082600301049283019260010382029150808411610def5790505b5050505050905060005b82811015610f125760008681526012602090815260408083206001600160a01b038916845290915281208351909190849084908110610e7757610e77613c9d565b60209081029190910181015163ffffffff90811683528282019390935260409182016000208251608081018452905460ff81161515825261010081048516928201929092526001600160401b03600160281b83041692810192909252600160681b900490911660608201528451859083908110610ef657610ef6613c9d565b602002602001018190525080610f0b90613cc9565b9050610e36565b50505092915050565b610f236120d9565b610f2c826120ff565b610f3782338361212e565b5050565b610f37733cc6cdda760b79bafa08df41ecfa224f810dceb66001611c2a565b826001600160a01b0381163314610f7457610f7433611f00565b610f7f8484846124fd565b50505050565b610f8d611d77565b601554610100900460ff1615610fb657604051635b79f68360e01b815260040160405180910390fd5b610fbf82611196565b610fc88161163f565b50506015805461ff001916610100179055565b60008281526014602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b03169282019290925282916110505750604080518082019091526013546001600160a01b0381168252600160a01b90046001600160601b031660208201525b60208101516000906127109061106f906001600160601b031687613ce4565b6110799190613d19565b91519350909150505b9250929050565b6110928161252e565b61109b82612568565b610f3782826000612599565b6000806002601b54146110cd57604051637b4e6d3560e11b815260040160405180910390fd5b6110d78484612857565b915091509250929050565b826001600160a01b03811633146110fc576110fc33611f00565b610f7f848484612932565b6111108261252e565b61111983612568565b610d1683838361212e565b6011602052826000526040600020602052816000526040600020818154811061114c57600080fd5b906000526020600020906008918282040191900660040292509250509054906101000a900463ffffffff1681565b6111826120d9565b61118b826120ff565b610f3782338361294d565b61119e611d77565b80516111b19060169060208401906135cb565b507ff9c7803e94e0d3c02900d8a90893a6d5e90dd04d32a4cfe825520f82bf9f32f6816040516111e1919061376f565b60405180910390a150565b6000818152600360205260408120546001600160a01b0316806109b15760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064015b60405180910390fd5b6000808063ffffffff84111561127a576040516307f159d160e31b815260040160405180910390fd5b50505060009283526012602090815260408085206001600160a01b0394909416855292815282842063ffffffff9283168552905291205460ff811692600160281b82046001600160401b031692600160681b90920490911690565b60006001600160a01b03821661133f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401611248565b506001600160a01b031660009081526004602052604090205490565b611363611d77565b6001600160a01b0381166000908152600b602052604090205460ff161561139d5760405163b73e95e160e01b815260040160405180910390fd5b6040516301ffc9a760e01b81526325df830760e21b60048201526001600160a01b038216906301ffc9a79060240160206040518083038186803b1580156113e357600080fd5b505afa1580156113f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061141b9190613d2d565b611438576040516390c51dd760e01b815260040160405180910390fd5b600a546001600160801b0381111561146357604051636ab8f7f960e11b815260040160405180910390fd5b6001600160a01b0382166000818152600b60209081526040808320805460016001600160881b03199091166101006001600160801b03891602178117909155600a8054808301825594527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a890930180546001600160a01b03191685179055519182527fe152843d7324c2cb58e95865f2b78d38f2dab6ce9eadf09438ec2c41e78c705e910160405180910390a25050565b6000806000611524868686611251565b50915091508161153557600061153f565b61153f8142613c86565b9695505050505050565b8281146115695760405163fee3f79f60e01b815260040160405180910390fd5b6002601b55600061157a86836110a7565b506001601b55905060005b828110156116365760008484838181106115a1576115a1613c9d565b90506020020135111561162e57808201876001600160a01b03167f4d36ef53e084d5eacab9dfcb622cff600be91a5bbf2cdbff1edc2902aff636018888858181106115ee576115ee613c9d565b9050602002013587878681811061160757611607613c9d565b90506020020135604051611625929190918252602082015260400190565b60405180910390a35b600101611585565b50505050505050565b611647611d77565b805161165a9060179060208401906135cb565b507f65ccd57f8a46e7a6cfc4d214d84094e8ba5561ab50fd328f26e4c44052ffeba0816040516111e1919061376f565b6000546001600160a01b0316156116b457604051631360e86560e31b815260040160405180910390fd5b6116bd81612bdd565b50565b60009182526011602090815260408084206001600160a01b0393909316845291905290205490565b606060098054610a5290613c35565b6116ff611d77565b60155460ff161561172357604051639383013960e01b815260040160405180910390fd5b61172d82826109b7565b50506015805460ff19166001179055565b611746611d77565b61174f81612c2d565b6001600160a01b0381166000818152601a6020526040808220805460ff1916600190811790915590519092917f04eca792f863d6d8cd8aba48f8ec67d4db239c7a3cb7ea94daffa825dafa676891a350565b6117a96120d9565b6117b2816120ff565b6002600d556117c081612c67565b506001600d55565b816117d281611f00565b610d168383612d0e565b6117e46120d9565b6117ed816120ff565b6002600d8190555061181083838360405180602001604052806000815250612d19565b50506001600d5550565b611822611d77565b600c5460ff161561184657604051630e009cb560e11b815260040160405180910390fd5b61184f81612d4c565b600e55600c805460ff19166001908117909155600d55565b6017805461187490613c35565b80601f01602080910402602001604051908101604052809291908181526020018280546118a090613c35565b80156118ed5780601f106118c2576101008083540402835291602001916118ed565b820191906000526020600020905b8154815290600101906020018083116118d057829003601f168201915b505050505081565b836001600160a01b038116331461190f5761190f33611f00565b61191b85858585612d8c565b5050505050565b336001600160a01b03831681141561194d576040516353ff677360e11b815260040160405180910390fd5b6001600160a01b03818116600081815260106020908152604080832094881680845294825291829020805460ff191687151590811790915591519182527f83347dcc77580bb841ae3bac834b5b8ac5ccd2326276d265e638987eb6b2c05691015b60405180910390a3505050565b6000818152600360205260409020546060906001600160a01b03166119f35760405163163a09e160e31b815260040160405180910390fd5b60006119fd612dbe565b90506000815111611a1d5760405180602001604052806000815250611a4b565b80611a2784612dcd565b6017604051602001611a3b93929190613d4a565b6040516020818303038152906040525b9392505050565b611a5a611d77565b60075460ff1615611a7e576040516376f1a0b360e01b815260040160405180910390fd5b8151611a919060089060208501906135cb565b508051611aa59060099060208401906135cb565b50506007805460ff1916600117905550565b6016805461187490613c35565b600a8181548110611ad457600080fd5b6000918252602090912001546001600160a01b0316905081565b611af66120d9565b611aff816120ff565b6002600d55611810838383612ed2565b611b17611d77565b611b2081613079565b6001600160a01b0381166000818152601a6020526040808220805460ff19169055519091907f04eca792f863d6d8cd8aba48f8ec67d4db239c7a3cb7ea94daffa825dafa6768908390a350565b611b75611d77565b611b7e8161252e565b610f3782826001612599565b611b92611d77565b6001600160a01b0381166116b45760405163f82d512f60e01b815260040160405180910390fd5b611bc1611d77565b60195415611be557604051600162056bb360e21b0319815260040160405180910390fd5b80611c035760405163e776bd1160e01b815260040160405180910390fd5b600019811415611c2557604051620e9cb160e71b815260040160405180910390fd5b601955565b6daaeb6d7670e522a718067333cd4e3b15610f37578015611cb757604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b158015611c9b57600080fd5b505af1158015611caf573d6000803e3d6000fd5b505050505050565b6001600160a01b03821615611d065760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af290390604401611c81565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401611c81565b60006001600160e01b031982166395fa0ff560e01b1480611d6857506001600160e01b0319821663247946c960e01b145b806109b157506109b1826130b2565b6000546001600160a01b03163314611da25760405163097b5fdb60e31b815260040160405180910390fd5b565b6127106001600160601b0382161115611e125760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401611248565b6001600160a01b038216611e685760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401611248565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217601355565b6000818152600360205260409020546001600160a01b03166116bd5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401611248565b6daaeb6d7670e522a718067333cd4e3b156116bd57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c61711349060440160206040518083038186803b158015611f6857600080fd5b505afa158015611f7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fa09190613d2d565b6116bd57604051633b79c77360e21b81526001600160a01b0382166004820152602401611248565b6000611fd3826111ec565b9050806001600160a01b0316836001600160a01b031614156120415760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401611248565b336001600160a01b038216148061205d575061205d81336108ef565b6120cf5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401611248565b610d1683836130d7565b6120e233610588565b611da257604051639eea455560e01b815260040160405180910390fd5b61211161210b826111ec565b336106e5565b6116bd576040516306c5be1b60e31b815260040160405180910390fd5b600080600061213e868686611251565b925092509250826121625760405163107acf8360e11b815260040160405180910390fd5b836000600161217189896116c0565b61217b9190613c86565b90508083146122e05760008881526011602090815260408083206001600160a01b038b16845290915290208054829081106121b8576121b8613c9d565b600091825260208083206008830401548b84526011825260408085206001600160a01b038d1686529092529220805460079092166004026101000a90920463ffffffff1691908590811061220e5761220e613c9d565b600091825260208083206008830401805460079093166004026101000a63ffffffff8181021990941695909316929092029390931790558981526012825260408082206001600160a01b038b168084529084528183208c84526011855282842091845293528120805486939291908590811061228c5761228c613c9d565b6000918252602080832060088304015460079092166004026101000a90910463ffffffff90811684529083019390935260409091019020805463ffffffff60681b1916600160681b93909216929092021790555b60008881526011602090815260408083206001600160a01b038b168452909152902080548061231157612311613cb3565b60008281526020808220600860001990940193840401805463ffffffff600460078716026101000a810219909116909155929093558a81526012835260408082206001600160a01b038c1683528452808220928616825291909252812080546001600160881b0319169055612385896111ec565b9050876001600160a01b0316816001600160a01b03168a7f1171d71105bda3fa01f863317a96e01684416ccb1e5416de7c09510bdfbe6aee8a6000806040516123e39392919092835290151560208301521515604082015260600190565b60405180910390a4876001600160a01b03166392b612946040518163ffffffff1660e01b815260040160206040518083038186803b15801561242457600080fd5b505afa158015612438573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061245c9190613d2d565b15612482576000898152600f60205260408120805490919061247d90613e0e565b909155505b604051636d4229c960e01b81526001600160a01b038281166004830152602482018b90526044820189905260648201879052891690636d4229c990608401600060405180830381600087803b1580156124da57600080fd5b505af11580156124ee573d6000803e3d6000fd5b50505050505050505050505050565b6125073382613145565b6125235760405162461bcd60e51b815260040161124890613e25565b610d16838383612ed2565b6001600160a01b0381166000908152600b602052604090205460ff16156116bd5760405163c0f8cffb60e01b815260040160405180910390fd5b33612572826111ec565b6001600160a01b0316146116bd5760405163b23b68b760e01b815260040160405180910390fd5b60006125a4846111ec565b905060006125b285856116c0565b9050836001600160a01b03166392b612946040518163ffffffff1660e01b815260040160206040518083038186803b1580156125ed57600080fd5b505afa158015612601573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126259190613d2d565b1561264e576000858152600f602052604081208054839290612648908490613c86565b90915550505b60005b8181101561282b5760008681526011602090815260408083206001600160a01b0389168452909152812080548390811061268d5761268d613c9d565b600091825260208083206008830401548a84526012825260408085206001600160a01b038c8116808852918552828720600790961660040261010090810a90940463ffffffff9081168089529686528388208451608081018652905460ff811615158252958604821681880152600160281b86046001600160401b0316818601819052600160681b9096049091166060808301919091528451888152968701989098528c151593860193909352949650909491939092908916918c917f1171d71105bda3fa01f863317a96e01684416ccb1e5416de7c09510bdfbe6aee910160405180910390a460008981526012602090815260408083206001600160a01b038c811680865291845282852063ffffffff891680875294529382902080546001600160881b03191690559051636d4229c960e01b81529289166004840152602483018c905260448301919091526064820183905290636d4229c990608401600060405180830381600087803b15801561280557600080fd5b505af1158015612819573d6000803e3d6000fd5b50505050836001019350505050612651565b5060008581526011602090815260408083206001600160a01b0388168452909152812061191b9161364f565b6000806001600160a01b038416612881576040516389a4ea1960e01b815260040160405180910390fd5b8261289f57604051632465b2bb60e01b815260040160405180910390fd5b6128a833613079565b601854806128b4575060015b915081600060016128c58684613e73565b6128cf9190613c86565b6019549091508082111561290057604051637502c12360e11b81526004810183905260248101829052604401611248565b82860160185560005b868110156129255761291d888286016131c3565b600101612909565b5090925050509250929050565b610d16838383604051806020016040528060008152506118f5565b600061295a848484611251565b50509050801561297d57604051637f53cfe360e01b815260040160405180910390fd5b600061298985856116c0565b9050600e5481106129ad5760405163f8315a8760e01b815260040160405180910390fd5b60008581526011602090815260408083206001600160a01b03881680855290835281842080546001808201835591865284862060088204018054600790921660040261010090810a63ffffffff818102199094168c8516918202179092558c88526012875285882094885293865284872081885290955292852080546cffffffffffffffff00000000ff1916600160281b426001600160401b0316021790911770ffffffff0000000000000000ffffffff0019169190930263ffffffff60681b191617600160681b918516919091021790558390612a8a876111ec565b604080518781526001602082015260008183015290519192506001600160a01b0388811692908416918a917f1171d71105bda3fa01f863317a96e01684416ccb1e5416de7c09510bdfbe6aee9181900360600190a4856001600160a01b03166392b612946040518163ffffffff1660e01b815260040160206040518083038186803b158015612b1857600080fd5b505afa158015612b2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b509190613d2d565b15612b6b576000878152600f60205260409020805460010190555b60405163688a374160e01b81526001600160a01b038281166004830152602482018990526044820187905287169063688a374190606401600060405180830381600087803b158015612bbc57600080fd5b505af1158015612bd0573d6000803e3d6000fd5b5050505050505050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0381166000908152601a602052604090205460ff16156116bd576040516302339ccf60e31b815260040160405180910390fd5b6000612c72826111ec565b9050612c80816000846131cd565b612c8b6000836130d7565b6001600160a01b0381166000908152600460205260408120805460019290612cb4908490613c86565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b610f373383836131fa565b612d24848484612ed2565b612d30848484846132c1565b610f7f5760405162461bcd60e51b815260040161124890613e8b565b80612d6a5760405163318ccdef60e11b815260040160405180910390fd5b60648111156116bd57604051639cb75faf60e01b815260040160405180910390fd5b612d963383613145565b612db25760405162461bcd60e51b815260040161124890613e25565b610f7f84848484612d19565b606060168054610a5290613c35565b606081612df15750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612e1b5780612e0581613cc9565b9150612e149050600a83613d19565b9150612df5565b6000816001600160401b03811115612e3557612e35613965565b6040519080825280601f01601f191660200182016040528015612e5f576020820181803683370190505b5090505b8415612eca57612e74600183613c86565b9150612e81600a86613edd565b612e8c906030613e73565b60f81b818381518110612ea157612ea1613c9d565b60200101906001600160f81b031916908160001a905350612ec3600a86613d19565b9450612e63565b949350505050565b826001600160a01b0316612ee5826111ec565b6001600160a01b031614612f495760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401611248565b6001600160a01b038216612fab5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401611248565b612fb68383836131cd565b612fc16000826130d7565b6001600160a01b0383166000908152600460205260408120805460019290612fea908490613c86565b90915550506001600160a01b0382166000908152600460205260408120805460019290613018908490613e73565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0381166000908152601a602052604090205460ff166116bd57604051637e75cbe560e01b815260040160405180910390fd5b60006001600160e01b0319821663152a902d60e11b14806109b157506109b1826133ce565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061310c826111ec565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080613151836111ec565b9050806001600160a01b0316846001600160a01b0316148061319857506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b80612eca5750836001600160a01b03166131b184610cdb565b6001600160a01b031614949350505050565b610f37828261340d565b6000818152600f602052604090205415610d16576040516302579f0160e61b815260040160405180910390fd5b816001600160a01b0316836001600160a01b0316141561325c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401611248565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3191016119ae565b60006001600160a01b0384163b156133c357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613305903390899088908890600401613ef1565b602060405180830381600087803b15801561331f57600080fd5b505af192505050801561334f575060408051601f3d908101601f1916820190925261334c91810190613f24565b60015b6133a9573d80801561337d576040519150601f19603f3d011682016040523d82523d6000602084013e613382565b606091505b5080516133a15760405162461bcd60e51b815260040161124890613e8b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612eca565b506001949350505050565b60006001600160e01b0319821663f9f7ab4160e01b14806133fe57506001600160e01b0319821662059cfd60ed1b145b806109b157506109b18261355b565b6001600160a01b0382166134635760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401611248565b6000818152600360205260409020546001600160a01b0316156134c85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401611248565b6134d4600083836131cd565b6001600160a01b03821660009081526004602052604081208054600192906134fd908490613e73565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160e01b031982166368a3e4bd60e11b14806109b157506109b18260006001600160e01b031982166380ac58cd60e01b14806135ac57506001600160e01b03198216635b5e139f60e01b145b806109b157506301ffc9a760e01b6001600160e01b03198316146109b1565b8280546135d790613c35565b90600052602060002090601f0160209004810192826135f9576000855561363f565b82601f1061361257805160ff191683800117855561363f565b8280016001018555821561363f579182015b8281111561363f578251825591602001919060010190613624565b5061364b929150613670565b5090565b5080546000825560070160089004906000526020600020908101906116bd91905b5b8082111561364b5760008155600101613671565b6001600160e01b0319811681146116bd57600080fd5b6000602082840312156136ad57600080fd5b8135611a4b81613685565b80356001600160a01b03811681146136cf57600080fd5b919050565b600080604083850312156136e757600080fd5b6136f0836136b8565b915060208301356001600160601b038116811461370c57600080fd5b809150509250929050565b60005b8381101561373257818101518382015260200161371a565b83811115610f7f5750506000910152565b6000815180845261375b816020860160208601613717565b601f01601f19169290920160200192915050565b602081526000611a4b6020830184613743565b60006020828403121561379457600080fd5b611a4b826136b8565b6000602082840312156137af57600080fd5b5035919050565b600080604083850312156137c957600080fd5b6137d2836136b8565b946020939093013593505050565b600080604083850312156137f357600080fd5b82359150613803602084016136b8565b90509250929050565b602080825282518282018190526000919060409081850190868401855b828110156138775781518051151585528681015163ffffffff90811688870152868201516001600160401b031687870152606091820151169085015260809093019290850190600101613829565b5091979650505050505050565b60008060006060848603121561389957600080fd5b833592506138a9602085016136b8565b9150604084013563ffffffff811681146138c257600080fd5b809150509250925092565b600080604083850312156138e057600080fd5b50508035926020909101359150565b80151581146116bd57600080fd5b6000806040838503121561391057600080fd5b613919836136b8565b9150602083013561370c816138ef565b60008060006060848603121561393e57600080fd5b613947846136b8565b9250613955602085016136b8565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561399557613995613965565b604051601f8501601f19908116603f011681019082821181831017156139bd576139bd613965565b816040528093508581528686860111156139d657600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112613a0157600080fd5b611a4b8383356020850161397b565b60008060408385031215613a2357600080fd5b82356001600160401b0380821115613a3a57600080fd5b613a46868387016139f0565b93506020850135915080821115613a5c57600080fd5b50613a69858286016139f0565b9150509250929050565b600080600060608486031215613a8857600080fd5b83359250613955602085016136b8565b600060208284031215613aaa57600080fd5b81356001600160401b03811115613ac057600080fd5b612eca848285016139f0565b60008060408385031215613adf57600080fd5b613ae8836136b8565b9150613803602084016136b8565b60008083601f840112613b0857600080fd5b5081356001600160401b03811115613b1f57600080fd5b6020830191508360208260051b850101111561108257600080fd5b600080600080600060608688031215613b5257600080fd5b613b5b866136b8565b945060208601356001600160401b0380821115613b7757600080fd5b613b8389838a01613af6565b90965094506040880135915080821115613b9c57600080fd5b50613ba988828901613af6565b969995985093965092949392505050565b60008060008060808587031215613bd057600080fd5b613bd9856136b8565b9350613be7602086016136b8565b92506040850135915060608501356001600160401b03811115613c0957600080fd5b8501601f81018713613c1a57600080fd5b613c298782356020840161397b565b91505092959194509250565b600181811c90821680613c4957607f821691505b60208210811415613c6a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015613c9857613c98613c70565b500390565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b6000600019821415613cdd57613cdd613c70565b5060010190565b6000816000190483118215151615613cfe57613cfe613c70565b500290565b634e487b7160e01b600052601260045260246000fd5b600082613d2857613d28613d03565b500490565b600060208284031215613d3f57600080fd5b8151611a4b816138ef565b600084516020613d5d8285838a01613717565b855191840191613d708184848a01613717565b8554920191600090600181811c9080831680613d8d57607f831692505b858310811415613dab57634e487b7160e01b85526022600452602485fd5b808015613dbf5760018114613dd057613dfd565b60ff19851688528388019550613dfd565b60008b81526020902060005b85811015613df55781548a820152908401908801613ddc565b505083880195505b50939b9a5050505050505050505050565b600081613e1d57613e1d613c70565b506000190190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b60008219821115613e8657613e86613c70565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082613eec57613eec613d03565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061153f90830184613743565b600060208284031215613f3657600080fd5b8151611a4b8161368556fea2646970667358221220ba7e0f60056d8366f1f29eae91bb42902953a552ff4a42d125df548c2d3b059c64736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000027100000000000000000000000001d22b8545d1e185ebca5c592964b3fbe9719916b00000000000000000000000000000000000000000000000000000000000003e8

-----Decoded View---------------
Arg [0] : maxSupply_ (uint256): 10000
Arg [1] : royaltyReceiver_ (address): 0x1D22B8545d1E185EbcA5C592964b3fBE9719916b
Arg [2] : royaltyFeeNumerator_ (uint96): 1000

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [1] : 0000000000000000000000001d22b8545d1e185ebca5c592964b3fbe9719916b
Arg [2] : 00000000000000000000000000000000000000000000000000000000000003e8


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.