ETH Price: $2,623.97 (+5.66%)
Gas: 5 Gwei

Token

Locked MAHA NFT (MAHAX)
 

Overview

Max Total Supply

507,117.077873193501997687 MAHAX

Holders

787

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
0.000000000000000001 MAHAX
0x1c3d0c130265df2adc1ca125c0b45fead8e42d7f
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The People of Eden is first of its kind DeFi PFP collection combining art, robust utility, and storytelling to communicate the importance of financial freedom through an open yet decentralized ecosystem using $MAHA and $ARTH.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MAHAXLocker

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 100 runs

Other Settings:
default evmVersion
File 1 of 26 : MAHAXLocker.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import {IERC20} from "@openzeppelin/contracts/interfaces/IERC20.sol";
import {ERC2981, IERC165} from "@openzeppelin/contracts/token/common/ERC2981.sol";
import {IERC721Receiver} from "@openzeppelin/contracts/interfaces/IERC721Receiver.sol";
import {ReentrancyGuard} from "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import {AccessControl} from "@openzeppelin/contracts/access/AccessControl.sol";
import {ERC721Enumerable} from "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";

import {ITokenURIGenerator} from "./interfaces/ITokenURIGenerator.sol";
import {IRegistry} from "./interfaces/IRegistry.sol";
import {INFTLocker} from "./interfaces/INFTLocker.sol";
import {INFTStaker} from "./interfaces/INFTStaker.sol";

/**
  @title Voting Escrow
  @author Curve Finance
  @notice Votes have a weight depending on time, so that users are
  committed to the future of (whatever they are voting for)
  @dev Vote weight decays linearly over time. Lock time cannot be
  more than `MAXTIME` (4 years).

  # Voting escrow to have time-weighted votes
  # Votes have a weight depending on time, so that users are committed
  # to the future of (whatever they are voting for).
  # The weight in this implementation is linear, and lock cannot be more than maxtime:
  # w ^
  # 1 +        /
  #   |      /
  #   |    /
  #   |  /
  #   |/
  # 0 +--------+------> time
  # maxtime (4 years?)
*/

contract MAHAXLocker is ReentrancyGuard, INFTLocker, AccessControl, ERC2981 {
    IRegistry public override registry;

    uint256 internal constant WEEK = 1 weeks;
    uint256 internal constant MAXTIME = 4 * 365 * 86400;
    int128 internal constant iMAXTIME = 4 * 365 * 86400;
    uint256 internal constant MULTIPLIER = 1 ether;

    bool public inBootstrapMode = true;

    ITokenURIGenerator public renderingContract;

    uint256 public supply;
    mapping(uint256 => LockedBalance) public locked;

    mapping(uint256 => uint256) public ownershipChange;

    uint256 public epoch;
    mapping(uint256 => Point) public pointHistory; // epoch -> unsigned point
    mapping(uint256 => Point[1000000000]) public userPointHistory; // user -> Point[userEpoch]

    mapping(uint256 => uint256) public userPointEpoch;
    mapping(uint256 => int128) public slopeChanges; // time -> signed slope change

    string public constant name = "Locked MAHA NFT";
    string public constant symbol = "MAHAX";
    string public constant version = "1.0.0";
    uint8 public constant decimals = 18;
    uint256 public minLockAmount = 99 * 1e18;

    /// @dev Current count of token
    uint256 internal tokenId;

    /// @dev Mapping from NFT ID to the address that owns it.
    mapping(uint256 => address) internal idToOwner;

    /// @dev Mapping from NFT ID to approved address.
    mapping(uint256 => address) internal idToApprovals;

    /// @dev Mapping from owner address to count of his tokens.
    mapping(address => uint256) internal ownerToNFTokenCount;

    /// @dev Mapping from owner address to mapping of index to tokenIds
    mapping(address => mapping(uint256 => uint256))
        internal ownerToNFTokenIdList;

    /// @dev Mapping from NFT ID to index of owner
    mapping(uint256 => uint256) internal tokenToOwnerIndex;

    /// @dev Mapping from owner address to mapping of operator addresses.
    mapping(address => mapping(address => bool)) internal ownerToOperators;

    bytes32 public constant MIGRATION_ROLE = keccak256("MIGRATION_ROLE");

    modifier onlyGovernance() {
        require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "not governance");
        _;
    }

    modifier onlyMigrator() {
        require(hasRole(MIGRATION_ROLE, msg.sender), "not migrator");
        _;
    }

    constructor(
        address _registry,
        address _royaltyRcv,
        address _renderingContract,
        uint96 _royaltyFeeNumerator
    ) {
        registry = IRegistry(_registry);

        pointHistory[0].blk = block.number;
        pointHistory[0].ts = block.timestamp;

        _setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _setupRole(MIGRATION_ROLE, msg.sender);

        _setDefaultRoyalty(_royaltyRcv, _royaltyFeeNumerator);
        renderingContract = ITokenURIGenerator(_renderingContract);
    }

    /// @dev Interface identification is specified in ERC-165.
    /// @param _interfaceID Id of the interface
    function supportsInterface(bytes4 _interfaceID)
        public
        view
        override(ERC2981, IERC165, AccessControl)
        returns (bool)
    {
        return
            bytes4(0x01ffc9a7) == _interfaceID || // ERC165
            bytes4(0x80ac58cd) == _interfaceID || // ERC721
            bytes4(0x5b5e139f) == _interfaceID || // ERC721Metadata
            super.supportsInterface(_interfaceID);
    }

    function totalSupplyWithoutDecay()
        external
        view
        override
        returns (uint256)
    {
        return supply;
    }

    /// @notice Get the most recently recorded rate of voting power decrease for `_tokenId`
    /// @param _tokenId token of the NFT
    /// @return Value of the slope
    function getLastUserSlope(uint256 _tokenId) external view returns (int128) {
        uint256 uepoch = userPointEpoch[_tokenId];
        return userPointHistory[_tokenId][uepoch].slope;
    }

    /// @notice Get the timestamp for checkpoint `_idx` for `_tokenId`
    /// @param _tokenId token of the NFT
    /// @param _idx User epoch number
    /// @return Epoch time of the checkpoint
    function userPointHistoryTs(uint256 _tokenId, uint256 _idx)
        external
        view
        returns (uint256)
    {
        return userPointHistory[_tokenId][_idx].ts;
    }

    /// @notice Get timestamp when `_tokenId`'s lock finishes
    /// @param _tokenId User NFT
    /// @return Epoch time of the lock end
    function lockedEnd(uint256 _tokenId) external view returns (uint256) {
        return locked[_tokenId].end;
    }

    /// @dev Returns the number of NFTs owned by `_owner`.
    ///      Throws if `_owner` is the zero address. NFTs assigned to the zero address are considered invalid.
    /// @param _owner Address for whom to query the balance.
    function _balance(address _owner) internal view returns (uint256) {
        return ownerToNFTokenCount[_owner];
    }

    /// @dev Returns the number of NFTs owned by `_owner`.
    ///      Throws if `_owner` is the zero address. NFTs assigned to the zero address are considered invalid.
    /// @param _owner Address for whom to query the balance.
    function balanceOf(address _owner)
        external
        view
        override
        returns (uint256)
    {
        return _balance(_owner);
    }

    /// @dev Returns the address of the owner of the NFT.
    /// @param _tokenId The identifier for an NFT.
    function _ownerOf(uint256 _tokenId) internal view returns (address) {
        return idToOwner[_tokenId];
    }

    /// @dev Returns the address of the owner of the NFT.
    /// @param _tokenId The identifier for an NFT.
    function ownerOf(uint256 _tokenId)
        external
        view
        override
        returns (address)
    {
        return _ownerOf(_tokenId);
    }

    /// @dev Returns the voting power of the `_owner`.
    ///      Throws if `_owner` is the zero address. NFTs assigned to the zero address are considered invalid.
    /// @param _owner Address for whom to query the voting power of.
    function votingPowerOf(address _owner)
        external
        view
        returns (uint256 _power)
    {
        for (uint256 index = 0; index < ownerToNFTokenCount[_owner]; index++) {
            uint256 _tokenId = ownerToNFTokenIdList[_owner][index];
            _power += _balanceOfNFT(_tokenId, block.timestamp);
        }
    }

    /// @dev Get the approved address for a single NFT.
    /// @param _tokenId ID of the NFT to query the approval of.
    function getApproved(uint256 _tokenId)
        external
        view
        override
        returns (address)
    {
        return idToApprovals[_tokenId];
    }

    /// @dev Checks if `_operator` is an approved operator for `_owner`.
    /// @param _owner The address that owns the NFTs.
    /// @param _operator The address that acts on behalf of the owner.
    function isApprovedForAll(address _owner, address _operator)
        external
        view
        override
        returns (bool)
    {
        return (ownerToOperators[_owner])[_operator];
    }

    /// @dev  Get token by index
    function tokenOfOwnerByIndex(address _owner, uint256 _tokenIndex)
        external
        view
        returns (uint256)
    {
        return ownerToNFTokenIdList[_owner][_tokenIndex];
    }

    /// @dev Returns whether the given spender can transfer a given token ID
    /// @param _spender address of the spender to query
    /// @param _tokenId uint ID of the token to be transferred
    /// @return bool whether the msg.sender is approved for the given token ID, is an operator of the owner, or is the owner of the token
    function _isApprovedOrOwner(address _spender, uint256 _tokenId)
        internal
        view
        returns (bool)
    {
        address owner = idToOwner[_tokenId];
        bool spenderIsOwner = owner == _spender;
        bool spenderIsApproved = _spender == idToApprovals[_tokenId];
        bool spenderIsApprovedForAll = (ownerToOperators[owner])[_spender];
        return spenderIsOwner || spenderIsApproved || spenderIsApprovedForAll;
    }

    function isApprovedOrOwner(address _spender, uint256 _tokenId)
        external
        view
        override
        returns (bool)
    {
        return _isApprovedOrOwner(_spender, _tokenId);
    }

    /// @dev Add a NFT to an index mapping to a given address
    /// @param _to address of the receiver
    /// @param _tokenId uint ID Of the token to be added
    function _addTokenToOwnerList(address _to, uint256 _tokenId) internal {
        uint256 currentCount = _balance(_to);
        ownerToNFTokenIdList[_to][currentCount] = _tokenId;
        tokenToOwnerIndex[_tokenId] = currentCount;
    }

    /// @dev Remove a NFT from an index mapping to a given address
    /// @param _from address of the sender
    /// @param _tokenId uint ID Of the token to be removed
    function _removeTokenFromOwnerList(address _from, uint256 _tokenId)
        internal
    {
        // Delete
        uint256 currentCount = _balance(_from) - 1;
        uint256 currentIndex = tokenToOwnerIndex[_tokenId];

        if (currentCount == currentIndex) {
            // update ownerToNFTokenIdList
            ownerToNFTokenIdList[_from][currentCount] = 0;
            // update tokenToOwnerIndex
            tokenToOwnerIndex[_tokenId] = 0;
        } else {
            uint256 lastTokenId = ownerToNFTokenIdList[_from][currentCount];

            // Add
            // update ownerToNFTokenIdList
            ownerToNFTokenIdList[_from][currentIndex] = lastTokenId;
            // update tokenToOwnerIndex
            tokenToOwnerIndex[lastTokenId] = currentIndex;

            // Delete
            // update ownerToNFTokenIdList
            ownerToNFTokenIdList[_from][currentCount] = 0;
            // update tokenToOwnerIndex
            tokenToOwnerIndex[_tokenId] = 0;
        }
    }

    /// @dev Add a NFT to a given address
    ///      Throws if `_tokenId` is owned by someone.
    function _addTokenTo(address _to, uint256 _tokenId) internal {
        // Throws if `_tokenId` is owned by someone
        assert(idToOwner[_tokenId] == address(0));
        // Change the owner
        idToOwner[_tokenId] = _to;
        // Update owner token index tracking
        _addTokenToOwnerList(_to, _tokenId);
        // Change count tracking
        ownerToNFTokenCount[_to] += 1;
    }

    /// @dev Remove a NFT from a given address
    ///      Throws if `_from` is not the current owner.
    function _removeTokenFrom(address _from, uint256 _tokenId) internal {
        // Throws if `_from` is not the current owner
        assert(idToOwner[_tokenId] == _from);
        // Change the owner
        idToOwner[_tokenId] = address(0);
        // Update owner token index tracking
        _removeTokenFromOwnerList(_from, _tokenId);
        // Change count tracking
        ownerToNFTokenCount[_from] -= 1;
    }

    /// @dev Clear an approval of a given address
    ///      Throws if `_owner` is not the current owner.
    function _clearApproval(address _owner, uint256 _tokenId) internal {
        // Throws if `_owner` is not the current owner
        assert(idToOwner[_tokenId] == _owner);
        if (idToApprovals[_tokenId] != address(0)) {
            // Reset approvals
            idToApprovals[_tokenId] = address(0);
        }
    }

    /// @dev Exeute transfer of a NFT.
    ///      Throws unless `msg.sender` is the current owner, an authorized operator, or the approved
    ///      address for this NFT. (NOTE: `msg.sender` not allowed in internal function so pass `_sender`.)
    ///      Throws if `_to` is the zero address.
    ///      Throws if `_from` is not the current owner.
    ///      Throws if `_tokenId` is not a valid NFT.
    function _transferFrom(
        address _from,
        address _to,
        uint256 _tokenId,
        address _sender
    ) internal {
        // Check requirements
        require(!_isStaked(_tokenId), "staked");
        require(_isApprovedOrOwner(_sender, _tokenId), "not approved sender");
        // Clear approval. Throws if `_from` is not the current owner
        _clearApproval(_from, _tokenId);
        // Remove NFT. Throws if `_tokenId` is not a valid NFT
        _removeTokenFrom(_from, _tokenId);
        // Add NFT
        _addTokenTo(_to, _tokenId);
        // Set the block of ownership transfer (for Flash NFT protection)
        ownershipChange[_tokenId] = block.number;
        // Log the transfer
        emit Transfer(_from, _to, _tokenId);
    }

    /* TRANSFER FUNCTIONS */
    /// @dev Throws unless `msg.sender` is the current owner, an authorized operator, or the approved address for this NFT.
    ///      Throws if `_from` is not the current owner.
    ///      Throws if `_to` is the zero address.
    ///      Throws if `_tokenId` is not a valid NFT.
    /// @notice The caller is responsible to confirm that `_to` is capable of receiving NFTs or else
    ///        they maybe be permanently lost.
    /// @param _from The current owner of the NFT.
    /// @param _to The new owner.
    /// @param _tokenId The NFT to transfer.
    function transferFrom(
        address _from,
        address _to,
        uint256 _tokenId
    ) external override {
        _transferFrom(_from, _to, _tokenId, msg.sender);
    }

    function _isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.
        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /// @dev Transfers the ownership of an NFT from one address to another address.
    ///      Throws unless `msg.sender` is the current owner, an authorized operator, or the
    ///      approved address for this NFT.
    ///      Throws if `_from` is not the current owner.
    ///      Throws if `_to` is the zero address.
    ///      Throws if `_tokenId` is not a valid NFT.
    ///      If `_to` is a smart contract, it calls `onERC721Received` on `_to` and throws if
    ///      the return value is not `bytes4(keccak256("onERC721Received(address,address,uint,bytes)"))`.
    /// @param _from The current owner of the NFT.
    /// @param _to The new owner.
    /// @param _tokenId The NFT to transfer.
    /// @param _data Additional data with no specified format, sent in call to `_to`.
    function safeTransferFrom(
        address _from,
        address _to,
        uint256 _tokenId,
        bytes memory _data
    ) public override {
        _transferFrom(_from, _to, _tokenId, msg.sender);

        if (_isContract(_to)) {
            // Throws if transfer destination is a contract which does not implement 'onERC721Received'
            try
                IERC721Receiver(_to).onERC721Received(
                    msg.sender,
                    _from,
                    _tokenId,
                    _data
                )
            returns (bytes4) {} catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "ERC721: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        }
    }

    /// @dev Transfers the ownership of an NFT from one address to another address.
    ///      Throws unless `msg.sender` is the current owner, an authorized operator, or the
    ///      approved address for this NFT.
    ///      Throws if `_from` is not the current owner.
    ///      Throws if `_to` is the zero address.
    ///      Throws if `_tokenId` is not a valid NFT.
    ///      If `_to` is a smart contract, it calls `onERC721Received` on `_to` and throws if
    ///      the return value is not `bytes4(keccak256("onERC721Received(address,address,uint,bytes)"))`.
    /// @param _from The current owner of the NFT.
    /// @param _to The new owner.
    /// @param _tokenId The NFT to transfer.
    function safeTransferFrom(
        address _from,
        address _to,
        uint256 _tokenId
    ) external override {
        safeTransferFrom(_from, _to, _tokenId, "");
    }

    /// @dev Set or reaffirm the approved address for an NFT. The zero address indicates there is no approved address.
    ///      Throws unless `msg.sender` is the current NFT owner, or an authorized operator of the current owner.
    ///      Throws if `_tokenId` is not a valid NFT. (NOTE: This is not written the EIP)
    ///      Throws if `_approved` is the current owner. (NOTE: This is not written the EIP)
    /// @param _approved Address to be approved for the given NFT ID.
    /// @param _tokenId ID of the token to be approved.
    function _approve(address _approved, uint256 _tokenId) internal {
        address owner = idToOwner[_tokenId];
        // Throws if `_tokenId` is not a valid NFT
        require(owner != address(0), "owner is 0x0");
        // Throws if `_approved` is the current owner
        require(_approved != owner, "not owner");
        // Check requirements
        bool senderIsOwner = (idToOwner[_tokenId] == msg.sender);
        bool senderIsApprovedForAll = (ownerToOperators[owner])[msg.sender];
        require(senderIsOwner || senderIsApprovedForAll, "invalid sender");
        // Set the approval
        idToApprovals[_tokenId] = _approved;
        emit Approval(owner, _approved, _tokenId);
    }

    /// @dev Set or reaffirm the approved address for an NFT. The zero address indicates there is no approved address.
    ///      Throws unless `msg.sender` is the current NFT owner, or an authorized operator of the current owner.
    ///      Throws if `_tokenId` is not a valid NFT. (NOTE: This is not written the EIP)
    ///      Throws if `_approved` is the current owner. (NOTE: This is not written the EIP)
    /// @param _approved Address to be approved for the given NFT ID.
    /// @param _tokenId ID of the token to be approved.
    function approve(address _approved, uint256 _tokenId) external override {
        _approve(_approved, _tokenId);
    }

    /// @dev Enables or disables approval for a third party ("operator") to manage all of
    ///      `msg.sender`'s assets. It also emits the ApprovalForAll event.
    ///      Throws if `_operator` is the `msg.sender`. (NOTE: This is not written the EIP)
    /// @notice This works even if sender doesn't own any tokens at the time.
    /// @param _operator Address to add to the set of authorized operators.
    /// @param _approved True if the operators is approved, false to revoke approval.
    function setApprovalForAll(address _operator, bool _approved)
        external
        override
    {
        // Throws if `_operator` is the `msg.sender`
        assert(_operator != msg.sender);
        ownerToOperators[msg.sender][_operator] = _approved;
        emit ApprovalForAll(msg.sender, _operator, _approved);
    }

    /// @dev Function to mint tokens
    ///      Throws if `_to` is zero address.
    ///      Throws if `_tokenId` is owned by someone.
    /// @param _to The address that will receive the minted tokens.
    /// @param _tokenId The token id to mint.
    /// @return A boolean that indicates if the operation was successful.
    function _mint(address _to, uint256 _tokenId) internal returns (bool) {
        // Throws if `_to` is zero address
        assert(_to != address(0));
        // Add NFT. Throws if `_tokenId` is owned by someone
        _addTokenTo(_to, _tokenId);
        emit Transfer(address(0), _to, _tokenId);
        return true;
    }

    /// @notice Record global and per-user data to checkpoint
    /// @param _tokenId NFT token ID. No user checkpoint if 0
    /// @param oldLocked Pevious locked amount / end lock time for the user
    /// @param newLocked New locked amount / end lock time for the user
    function _checkpoint(
        uint256 _tokenId,
        LockedBalance memory oldLocked,
        LockedBalance memory newLocked
    ) internal {
        Point memory uOld;
        Point memory uNew;
        int128 oldDslope = 0;
        int128 newDslope = 0;
        uint256 _epoch = epoch;

        if (_tokenId != 0) {
            // Calculate slopes and biases
            // Kept at zero when they have to
            if (oldLocked.end > block.timestamp && oldLocked.amount > 0) {
                uOld.slope = oldLocked.amount / iMAXTIME;
                uOld.bias =
                    uOld.slope *
                    int128(int256(oldLocked.end - block.timestamp));
            }
            if (newLocked.end > block.timestamp && newLocked.amount > 0) {
                uNew.slope = newLocked.amount / iMAXTIME;
                uNew.bias =
                    uNew.slope *
                    int128(int256(newLocked.end - block.timestamp));
            }

            // Read values of scheduled changes in the slope
            // oldLocked.end can be in the past and in the future
            // newLocked.end can ONLY by in the FUTURE unless everything expired: than zeros
            oldDslope = slopeChanges[oldLocked.end];
            if (newLocked.end != 0) {
                if (newLocked.end == oldLocked.end) {
                    newDslope = oldDslope;
                } else {
                    newDslope = slopeChanges[newLocked.end];
                }
            }
        }

        Point memory lastPoint = Point({
            bias: 0,
            slope: 0,
            ts: block.timestamp,
            blk: block.number
        });
        if (_epoch > 0) {
            lastPoint = pointHistory[_epoch];
        }
        uint256 lastCheckpoint = lastPoint.ts;
        // initialLastPoint is used for extrapolation to calculate block number
        // (approximately, for *At methods) and save them
        // as we cannot figure that out exactly from inside the contract
        Point memory initialLastPoint = lastPoint;
        uint256 blockSlope = 0; // dblock/dt
        if (block.timestamp > lastPoint.ts) {
            blockSlope =
                (MULTIPLIER * (block.number - lastPoint.blk)) /
                (block.timestamp - lastPoint.ts);
        }
        // If last point is already recorded in this block, slope=0
        // But that's ok b/c we know the block in such case

        // Go over weeks to fill history and calculate what the current point is
        {
            uint256 tI = (lastCheckpoint / WEEK) * WEEK;
            for (uint256 i = 0; i < 255; ++i) {
                // Hopefully it won't happen that this won't get used in 5 years!
                // If it does, users will be able to withdraw but vote weight will be broken
                tI += WEEK;
                int128 dSlope = 0;
                if (tI > block.timestamp) {
                    tI = block.timestamp;
                } else {
                    dSlope = slopeChanges[tI];
                }
                lastPoint.bias -=
                    lastPoint.slope *
                    int128(int256(tI - lastCheckpoint));
                lastPoint.slope += dSlope;
                if (lastPoint.bias < 0) {
                    // This can happen
                    lastPoint.bias = 0;
                }
                if (lastPoint.slope < 0) {
                    // This cannot happen - just in case
                    lastPoint.slope = 0;
                }
                lastCheckpoint = tI;
                lastPoint.ts = tI;
                lastPoint.blk =
                    initialLastPoint.blk +
                    (blockSlope * (tI - initialLastPoint.ts)) /
                    MULTIPLIER;
                _epoch += 1;
                if (tI == block.timestamp) {
                    lastPoint.blk = block.number;
                    break;
                } else {
                    pointHistory[_epoch] = lastPoint;
                }
            }
        }

        epoch = _epoch;
        // Now pointHistory is filled until t=now

        if (_tokenId != 0) {
            // If last point was in this block, the slope change has been applied already
            // But in such case we have 0 slope(s)
            lastPoint.slope += (uNew.slope - uOld.slope);
            lastPoint.bias += (uNew.bias - uOld.bias);
            if (lastPoint.slope < 0) {
                lastPoint.slope = 0;
            }
            if (lastPoint.bias < 0) {
                lastPoint.bias = 0;
            }
        }

        // Record the changed point into history
        pointHistory[_epoch] = lastPoint;

        if (_tokenId != 0) {
            // Schedule the slope changes (slope is going down)
            // We subtract new_user_slope from [newLocked.end]
            // and add old_user_slope to [oldLocked.end]
            if (oldLocked.end > block.timestamp) {
                // oldDslope was <something> - uOld.slope, so we cancel that
                oldDslope += uOld.slope;
                if (newLocked.end == oldLocked.end) {
                    oldDslope -= uNew.slope; // It was a new deposit, not extension
                }
                slopeChanges[oldLocked.end] = oldDslope;
            }

            if (newLocked.end > block.timestamp) {
                if (newLocked.end > oldLocked.end) {
                    newDslope -= uNew.slope; // old slope disappeared at this point
                    slopeChanges[newLocked.end] = newDslope;
                }
                // else: we recorded it already in oldDslope
            }
            // Now handle user history
            uint256 userEpoch = userPointEpoch[_tokenId] + 1;

            userPointEpoch[_tokenId] = userEpoch;
            uNew.ts = block.timestamp;
            uNew.blk = block.number;
            userPointHistory[_tokenId][userEpoch] = uNew;
        }
    }

    /// @notice Deposit and lock tokens for a user
    /// @param _tokenId NFT that holds lock
    /// @param _value Amount to deposit
    /// @param unlockTime New time when to unlock the tokens, or 0 if unchanged
    /// @param lockedBalance Previous locked amount / timestamp
    /// @param depositType The type of deposit
    function _depositFor(
        uint256 _tokenId,
        uint256 _value,
        uint256 unlockTime,
        LockedBalance memory lockedBalance,
        DepositType depositType,
        bool _shouldPullUserMaha,
        bool _stakeNFT
    ) internal {
        registry.ensureNotPaused();

        LockedBalance memory _locked = lockedBalance;
        uint256 supplyBefore = supply;

        supply = supplyBefore + _value;
        LockedBalance memory oldLocked;
        (oldLocked.amount, oldLocked.end) = (_locked.amount, _locked.end);

        // Adding to existing lock, or if a lock is expired - creating a new one
        _locked.amount += int128(int256(_value));
        if (unlockTime != 0) {
            _locked.end = unlockTime;
        }
        if (depositType == DepositType.CREATE_LOCK_TYPE) {
            _locked.start = block.timestamp;
        }

        locked[_tokenId] = _locked;

        // Possibilities:
        // Both oldLocked.end could be current or expired (>/< block.timestamp)
        // value == 0 (extend lock) or value > 0 (add to lock or extend lock)
        // _locked.end > block.timestamp (always)
        _checkpoint(_tokenId, oldLocked, _locked);

        address from = msg.sender;
        if (
            _value != 0 &&
            depositType != DepositType.MERGE_TYPE &&
            _shouldPullUserMaha
        ) {
            assert(
                IERC20(registry.maha()).transferFrom(
                    from,
                    address(this),
                    _value
                )
            );
        }

        if (_stakeNFT) INFTStaker(registry.staker())._stakeFromLock(_tokenId);

        emit Deposit(
            from,
            _tokenId,
            _value,
            _locked.end,
            depositType,
            block.timestamp
        );
        emit Supply(supplyBefore, supplyBefore + _value);
    }

    function merge(uint256 _from, uint256 _to) external override {
        require(!_isStaked(_from), "from staked");
        require(!_isStaked(_to), "to staked");

        require(_from != _to, "same nft");
        require(_isApprovedOrOwner(msg.sender, _from), "from not approved");
        require(_isApprovedOrOwner(msg.sender, _to), "to not approved");

        LockedBalance memory _locked0 = locked[_from];
        LockedBalance memory _locked1 = locked[_to];
        uint256 value0 = uint256(int256(_locked0.amount));
        uint256 end = _locked0.end >= _locked1.end
            ? _locked0.end
            : _locked1.end;

        locked[_from] = LockedBalance(0, 0, 0);
        _checkpoint(_from, _locked0, LockedBalance(0, 0, 0));
        _burn(_from);
        _depositFor(
            _to,
            value0,
            end,
            _locked1,
            DepositType.MERGE_TYPE,
            true,
            false
        );
    }

    function blockNumber() external view override returns (uint256) {
        return block.number;
    }

    /// @notice Record global data to checkpoint
    function checkpoint() external override {
        _checkpoint(0, LockedBalance(0, 0, 0), LockedBalance(0, 0, 0));
    }

    /// @notice Deposit `_value` tokens for `_tokenId` and add to the lock
    /// @dev Anyone (even a smart contract) can deposit for someone else, but
    ///      cannot extend their locktime and deposit for a brand new user
    /// @param _tokenId lock NFT
    /// @param _value Amount to add to user's lock
    function depositFor(uint256 _tokenId, uint256 _value)
        external
        override
        nonReentrant
    {
        LockedBalance memory _locked = locked[_tokenId];

        require(!_isStaked(_tokenId), "staked");
        require(_value > 0, "value = 0"); // dev: need non-zero value
        require(_locked.amount > 0, "No existing lock found");
        require(_locked.end > block.timestamp, "Cannot add to expired lock.");
        _depositFor(
            _tokenId,
            _value,
            0,
            _locked,
            DepositType.DEPOSIT_FOR_TYPE,
            true,
            false
        );
    }

    /// @notice Deposit `_value` tokens for `_to` and lock for `_lockDuration`
    /// @param _value Amount to deposit
    /// @param _lockDuration Number of seconds to lock tokens for (rounded down to nearest week)
    /// @param _to Address to deposit
    /// @param _shouldPullUserMaha Should we pull maha with the lock
    /// @param _stakeNFT should we stake into the staking contract
    function _createLock(
        uint256 _value,
        uint256 _lockDuration,
        address _to,
        bool _shouldPullUserMaha,
        bool _stakeNFT
    ) internal returns (uint256) {
        registry.ensureNotPaused();

        uint256 unlockTime = ((block.timestamp + _lockDuration) / WEEK) * WEEK; // Locktime is rounded down to weeks

        require(_value > 0, "value = 0"); // dev: need non-zero value
        require(unlockTime > block.timestamp, "Can only lock in the future");
        require(
            unlockTime <= block.timestamp + MAXTIME,
            "Voting lock can be 4 years max"
        );

        ++tokenId;
        uint256 _tokenId = tokenId;
        _mint(_to, _tokenId);

        _depositFor(
            _tokenId,
            _value,
            unlockTime,
            locked[_tokenId],
            DepositType.CREATE_LOCK_TYPE,
            _shouldPullUserMaha,
            _stakeNFT
        );

        require(
            _balanceOfNFT(_tokenId, block.timestamp) >= minLockAmount,
            "min amount for nft not met"
        );

        return _tokenId;
    }

    /// @notice Deposit `_value` tokens for `_to` and lock for `_lockDuration`
    /// @param _value Amount to deposit
    /// @param _lockDuration Number of seconds to lock tokens for (rounded down to nearest week)
    /// @param _to Address to deposit
    function createLockFor(
        uint256 _value,
        uint256 _lockDuration,
        address _to,
        bool _stakeNFT
    ) external override nonReentrant returns (uint256) {
        return _createLock(_value, _lockDuration, _to, true, _stakeNFT);
    }

    function migrateTokenFor(
        uint256 _value,
        uint256 _lockDuration,
        address _to
    ) external override onlyMigrator returns (uint256) {
        return _createLock(_value, _lockDuration, _to, false, true);
    }

    /// @notice Deposit `_value` tokens for `msg.sender` and lock for `_lockDuration`
    /// @param _value Amount to deposit
    /// @param _lockDuration Number of seconds to lock tokens for (rounded down to nearest week)
    /// @param _stakeNFT Should we also stake the NFT as well?
    function createLock(
        uint256 _value,
        uint256 _lockDuration,
        bool _stakeNFT
    ) external override nonReentrant returns (uint256) {
        return _createLock(_value, _lockDuration, msg.sender, true, _stakeNFT);
    }

    /// @notice Upload users.
    /// @param _users The users for whose lock is to be added.
    /// @param _value The values for users.
    /// @param _lockDuration The lock duration for users.
    function uploadUsers(
        address[] memory _users,
        uint256[] memory _value,
        uint256[] memory _lockDuration,
        bool _stakeNFT
    ) external onlyMigrator {
        require(_value.length == _lockDuration.length, "invalid data");
        require(_users.length == _value.length, "invalid data");

        for (uint256 i = 0; i < _users.length; i++) {
            _createLock(
                _value[i],
                _lockDuration[i],
                _users[i],
                false,
                _stakeNFT
            );
        }
    }

    /// @notice Sets the royalty info for all NFT marketplaces
    /// @param _royaltyRcv The address to recieve royalties
    /// @param _royaltyFeeNumerator The amount of royalty to recieve
    function setRoyaltyInfo(address _royaltyRcv, uint96 _royaltyFeeNumerator)
        external
        onlyGovernance
    {
        _setDefaultRoyalty(_royaltyRcv, _royaltyFeeNumerator);
    }

    /// @notice Sets the min amount to lock
    /// @param _minLockAmount The min amount to lock
    function setMinLockAmount(uint256 _minLockAmount) external onlyGovernance {
        minLockAmount = _minLockAmount;
    }

    /// @notice Deposit `_value` additional tokens for `_tokenId` without modifying the unlock time
    /// @param _value Amount of tokens to deposit and add to the lock
    function increaseAmount(uint256 _tokenId, uint256 _value)
        external
        nonReentrant
    {
        require(
            _isApprovedOrOwner(msg.sender, _tokenId),
            "caller is not owner nor approved"
        );
        LockedBalance memory _locked = locked[_tokenId];

        assert(_value > 0); // dev: need non-zero value
        require(_locked.amount > 0, "No existing lock found");
        require(_locked.end > block.timestamp, "Cannot add to expired lock.");

        _depositFor(
            _tokenId,
            _value,
            0,
            _locked,
            DepositType.INCREASE_LOCK_AMOUNT,
            true,
            _isStaked(_tokenId)
        );
    }

    /// @notice Extend the unlock time for `_tokenId`
    /// @param _lockDuration New number of seconds until tokens unlock
    function increaseUnlockTime(uint256 _tokenId, uint256 _lockDuration)
        external
        nonReentrant
    {
        require(
            _isApprovedOrOwner(msg.sender, _tokenId),
            "caller is not owner nor approved"
        );

        LockedBalance memory _locked = locked[_tokenId];
        uint256 unlockTime = ((block.timestamp + _lockDuration) / WEEK) * WEEK; // Locktime is rounded down to weeks

        require(_locked.end > block.timestamp, "Lock expired");
        require(_locked.amount > 0, "Nothing is locked");
        require(unlockTime > _locked.end, "Can only increase lock duration");
        require(
            unlockTime <= block.timestamp + MAXTIME,
            "Voting lock can be 4 years max"
        );
        require(
            unlockTime <= _locked.start + MAXTIME,
            "Voting lock can be 4 years max"
        );

        _depositFor(
            _tokenId,
            0,
            unlockTime,
            _locked,
            DepositType.INCREASE_UNLOCK_TIME,
            false,
            _isStaked(_tokenId)
        );
    }

    /// @notice Withdraw all tokens for `_tokenId`
    /// @dev Only possible if the lock has expired
    function withdraw(uint256 _tokenId) external nonReentrant {
        require(
            _isApprovedOrOwner(msg.sender, _tokenId),
            "caller is not owner nor approved"
        );
        require(!_isStaked(_tokenId), "staked");

        LockedBalance memory _locked = locked[_tokenId];
        require(block.timestamp >= _locked.end, "The lock didn't expire");
        uint256 value = uint256(int256(_locked.amount));

        locked[_tokenId] = LockedBalance(0, 0, 0);
        uint256 supplyBefore = supply;
        supply = supplyBefore - value;

        // oldLocked can have either expired <= timestamp or zero end
        // _locked has only 0 end
        // Both can have >= 0 amount
        _checkpoint(_tokenId, _locked, LockedBalance(0, 0, 0));

        assert(IERC20(registry.maha()).transfer(msg.sender, value));

        // Burn the NFT
        _burn(_tokenId);

        emit Withdraw(msg.sender, _tokenId, value, block.timestamp);
        emit Supply(supplyBefore, supplyBefore - value);
    }

    /// @notice Sets the optional tokenURI override contract.
    function setRenderingContract(ITokenURIGenerator _contract)
        external
        onlyGovernance
    {
        renderingContract = _contract;
    }

    /// @notice If renderingContract is set then returns its tokenURI(tokenId)
    /// return value, otherwise returns the standard baseTokenURI + tokenId.
    function tokenURI(uint256 _tokenId) public view returns (string memory) {
        return renderingContract.tokenURI(_tokenId);
    }

    // The following ERC20/minime-compatible methods are not real balanceOf and supply!
    // They measure the weights for the purpose of voting, so they don't represent
    // real coins.

    /// @notice Binary search to estimate timestamp for block number
    /// @param _block Block to find
    /// @param maxEpoch Don't go beyond this epoch
    /// @return Approximate timestamp for block
    function _findBlockEpoch(uint256 _block, uint256 maxEpoch)
        internal
        view
        returns (uint256)
    {
        // Binary search
        uint256 _min = 0;
        uint256 _max = maxEpoch;
        for (uint256 i = 0; i < 128; ++i) {
            // Will be always enough for 128-bit numbers
            if (_min >= _max) {
                break;
            }
            uint256 _mid = (_min + _max + 1) / 2;
            if (pointHistory[_mid].blk <= _block) {
                _min = _mid;
            } else {
                _max = _mid - 1;
            }
        }
        return _min;
    }

    /// @notice Get the current voting power for `_tokenId`
    /// @dev Adheres to the ERC20 `balanceOf` interface for Aragon compatibility
    /// @param _tokenId NFT for lock
    /// @param _t Epoch time to return voting power at
    /// @return User voting power
    function _balanceOfNFT(uint256 _tokenId, uint256 _t)
        internal
        view
        returns (uint256)
    {
        uint256 _epoch = userPointEpoch[_tokenId];
        if (_epoch == 0) {
            return 0;
        } else {
            Point memory lastPoint = userPointHistory[_tokenId][_epoch];
            lastPoint.bias -=
                lastPoint.slope *
                int128(int256(_t) - int256(lastPoint.ts));
            if (lastPoint.bias < 0) {
                lastPoint.bias = 0;
            }
            return uint256(int256(lastPoint.bias));
        }
    }

    function balanceOfNFT(uint256 _tokenId)
        external
        view
        override
        returns (uint256)
    {
        if (ownershipChange[_tokenId] == block.number) return 0;
        return _balanceOfNFT(_tokenId, block.timestamp);
    }

    function balanceOfNFTAt(uint256 _tokenId, uint256 _t)
        external
        view
        returns (uint256)
    {
        return _balanceOfNFT(_tokenId, _t);
    }

    /// @notice Measure voting power of `_tokenId` at block height `_block`
    /// @dev Adheres to MiniMe `balanceOfAt` interface: https://github.com/Giveth/minime
    /// @param _tokenId User's wallet NFT
    /// @param _block Block to calculate the voting power at
    /// @return Voting power
    function _balanceOfAtNFT(uint256 _tokenId, uint256 _block)
        internal
        view
        returns (uint256)
    {
        // Copying and pasting totalSupply code because Vyper cannot pass by
        // reference yet
        assert(_block <= block.number);

        // Binary search
        uint256 _min = 0;
        uint256 _max = userPointEpoch[_tokenId];
        for (uint256 i = 0; i < 128; ++i) {
            // Will be always enough for 128-bit numbers
            if (_min >= _max) {
                break;
            }
            uint256 _mid = (_min + _max + 1) / 2;
            if (userPointHistory[_tokenId][_mid].blk <= _block) {
                _min = _mid;
            } else {
                _max = _mid - 1;
            }
        }

        Point memory upoint = userPointHistory[_tokenId][_min];

        uint256 maxEpoch = epoch;
        uint256 _epoch = _findBlockEpoch(_block, maxEpoch);
        Point memory point0 = pointHistory[_epoch];
        uint256 dBlock = 0;
        uint256 dT = 0;
        if (_epoch < maxEpoch) {
            Point memory point1 = pointHistory[_epoch + 1];
            dBlock = point1.blk - point0.blk;
            dT = point1.ts - point0.ts;
        } else {
            dBlock = block.number - point0.blk;
            dT = block.timestamp - point0.ts;
        }
        uint256 blockTime = point0.ts;
        if (dBlock != 0) {
            blockTime += (dT * (_block - point0.blk)) / dBlock;
        }

        upoint.bias -= upoint.slope * int128(int256(blockTime - upoint.ts));
        if (upoint.bias >= 0) {
            return uint256(uint128(upoint.bias));
        } else {
            return 0;
        }
    }

    function balanceOfAtNFT(uint256 _tokenId, uint256 _block)
        external
        view
        returns (uint256)
    {
        return _balanceOfAtNFT(_tokenId, _block);
    }

    /// @notice Calculate total voting power at some point in the past
    /// @param point The point (bias/slope) to start search from
    /// @param t Time to calculate the total voting power at
    /// @return Total voting power at that time
    function _supplyAt(Point memory point, uint256 t)
        internal
        view
        returns (uint256)
    {
        Point memory lastPoint = point;
        uint256 tI = (lastPoint.ts / WEEK) * WEEK;
        for (uint256 i = 0; i < 255; ++i) {
            tI += WEEK;
            int128 dSlope = 0;
            if (tI > t) {
                tI = t;
            } else {
                dSlope = slopeChanges[tI];
            }
            lastPoint.bias -=
                lastPoint.slope *
                int128(int256(tI - lastPoint.ts));
            if (tI == t) {
                break;
            }
            lastPoint.slope += dSlope;
            lastPoint.ts = tI;
        }

        if (lastPoint.bias < 0) {
            lastPoint.bias = 0;
        }
        return uint256(uint128(lastPoint.bias));
    }

    /// @notice Calculate total voting power
    /// @dev Adheres to the ERC20 `totalSupply` interface for Aragon compatibility
    /// @return Total voting power
    function totalSupplyAtT(uint256 t) public view returns (uint256) {
        uint256 _epoch = epoch;
        Point memory lastPoint = pointHistory[_epoch];
        return _supplyAt(lastPoint, t);
    }

    function totalSupply() external view override returns (uint256) {
        return totalSupplyAtT(block.timestamp);
    }

    /// @notice Calculate total voting power at some point in the past
    /// @param _block Block to calculate the total voting power at
    /// @return Total voting power at `_block`
    function totalSupplyAt(uint256 _block)
        external
        view
        override
        returns (uint256)
    {
        assert(_block <= block.number);
        uint256 _epoch = epoch;
        uint256 targetEpoch = _findBlockEpoch(_block, _epoch);

        Point memory point = pointHistory[targetEpoch];
        uint256 dt = 0;
        if (targetEpoch < _epoch) {
            Point memory pointNext = pointHistory[targetEpoch + 1];
            if (point.blk != pointNext.blk) {
                dt =
                    ((_block - point.blk) * (pointNext.ts - point.ts)) /
                    (pointNext.blk - point.blk);
            }
        } else {
            if (point.blk != block.number) {
                dt =
                    ((_block - point.blk) * (block.timestamp - point.ts)) /
                    (block.number - point.blk);
            }
        }
        // Now dt contains info on how far are we beyond point
        return _supplyAt(point, point.ts + dt);
    }

    /// @dev A refund code that triggers a refund of maha; only used for the bootstrapping period of the DAO
    function emergencyRefund(address to) external onlyGovernance {
        require(inBootstrapMode, "not in bootstrap mode");
        IERC20(registry.maha()).transfer(
            to,
            IERC20(registry.maha()).balanceOf(address(this))
        );
    }

    /// @dev stop the bootstrap mode that allows governance to take all the maha out
    function stopBootstrapMode() external onlyGovernance {
        inBootstrapMode = false;
    }

    function _burn(uint256 _tokenId) internal {
        require(
            _isApprovedOrOwner(msg.sender, _tokenId),
            "caller is not owner nor approved"
        );

        address owner = _ownerOf(_tokenId);

        // Clear approval
        _approve(address(0), _tokenId);
        // Remove token
        _removeTokenFrom(msg.sender, _tokenId);
        emit Transfer(owner, address(0), _tokenId);
    }

    function isStaked(uint256 _tokenId) external view override returns (bool) {
        return _isStaked(_tokenId);
    }

    function _isStaked(uint256 _tokenId) internal view returns (bool) {
        return INFTStaker(registry.staker()).isStaked(_tokenId);
    }
}

File 2 of 26 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol)

pragma solidity ^0.8.0;

import "../token/ERC20/IERC20.sol";

File 3 of 26 : ERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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:
     *
     * - `tokenId` must be already minted.
     * - `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 4 of 26 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC721Receiver.sol)

pragma solidity ^0.8.0;

import "../token/ERC721/IERC721Receiver.sol";

File 5 of 26 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 6 of 26 : AccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;

import "./IAccessControl.sol";
import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/introspection/ERC165.sol";

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

File 7 of 26 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 8 of 26 : ITokenURIGenerator.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

interface ITokenURIGenerator {
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 9 of 26 : IRegistry.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import {IAccessControl} from "@openzeppelin/contracts/access/IAccessControl.sol";

interface IRegistry is IAccessControl {
    event MahaChanged(address indexed whom, address _old, address _new);
    event VoterChanged(address indexed whom, address _old, address _new);
    event LockerChanged(address indexed whom, address _old, address _new);
    event GovernorChanged(address indexed whom, address _old, address _new);
    event StakerChanged(address indexed whom, address _old, address _new);
    event EmissionControllerChanged(
        address indexed whom,
        address _old,
        address _new
    );

    function maha() external view returns (address);

    function gaugeVoter() external view returns (address);

    function locker() external view returns (address);

    function staker() external view returns (address);

    function emissionController() external view returns (address);

    function governor() external view returns (address);

    function getAllAddresses()
        external
        view
        returns (
            address,
            address,
            address,
            address,
            address
        );

    function ensureNotPaused() external;

    function setMAHA(address _new) external;

    function setEmissionController(address _new) external;

    function setStaker(address _new) external;

    function setVoter(address _new) external;

    function setLocker(address _new) external;

    function setGovernor(address _new) external;
}

File 10 of 26 : INFTLocker.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import {IERC721} from "@openzeppelin/contracts/interfaces/IERC721.sol";
import {IERC721Receiver} from "@openzeppelin/contracts/interfaces/IERC721Receiver.sol";
import {IRegistry} from "./IRegistry.sol";

interface INFTLocker is IERC721 {
    function registry() external view returns (IRegistry);

    function balanceOfNFT(uint256) external view returns (uint256);

    function isStaked(uint256) external view returns (bool);

    function totalSupplyWithoutDecay() external view returns (uint256);

    function isApprovedOrOwner(address, uint256) external view returns (bool);

    function totalSupply() external view returns (uint256);

    function totalSupplyAt(uint256 _block) external view returns (uint256);

    function merge(uint256 _from, uint256 _to) external;

    function blockNumber() external view returns (uint256);

    function checkpoint() external;

    function depositFor(uint256 _tokenId, uint256 _value) external;

    function createLockFor(
        uint256 _value,
        uint256 _lockDuration,
        address _to,
        bool _stakeNFT
    ) external returns (uint256);

    function migrateTokenFor(
        uint256 _value,
        uint256 _lockDuration,
        address _to
    ) external returns (uint256);

    function createLock(
        uint256 _value,
        uint256 _lockDuration,
        bool _stakeNFT
    ) external returns (uint256);

    enum DepositType {
        DEPOSIT_FOR_TYPE,
        CREATE_LOCK_TYPE,
        INCREASE_LOCK_AMOUNT,
        INCREASE_UNLOCK_TIME,
        MERGE_TYPE
    }

    struct Point {
        int128 bias;
        int128 slope; // # -dweight / dt
        uint256 ts;
        uint256 blk; // block
    }

    /* We cannot really do block numbers per se b/c slope is per time, not per block
     * and per block could be fairly bad b/c Ethereum changes blocktimes.
     * What we can do is to extrapolate ***At functions */

    struct LockedBalance {
        int128 amount;
        uint256 end;
        uint256 start;
    }

    event Deposit(
        address indexed provider,
        uint256 tokenId,
        uint256 value,
        uint256 indexed locktime,
        DepositType deposit_type,
        uint256 ts
    );

    event Withdraw(
        address indexed provider,
        uint256 tokenId,
        uint256 value,
        uint256 ts
    );

    event Supply(uint256 prevSupply, uint256 supply);
}

File 11 of 26 : INFTStaker.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import {IRegistry} from "./IRegistry.sol";
import {IVotes} from "@openzeppelin/contracts/governance/utils/IVotes.sol";

interface INFTStaker is IVotes {
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external view returns (string memory);

    function symbol() external view returns (string memory);

    function decimals() external view returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address account) external view returns (uint256);

    function getStakedBalance(address who) external view returns (uint256);

    function registry() external view returns (IRegistry);

    function stake(uint256 _tokenId) external;

    function isStaked(uint256 _tokenId) external view returns (bool);

    function _stakeFromLock(uint256 _tokenId) external;

    function unstake(uint256 _tokenId) external;

    event StakeNFT(
        address indexed who,
        address indexed owner,
        uint256 tokenId,
        uint256 amount
    );
    event UnstakeNFT(
        address indexed who,
        address indexed owner,
        uint256 tokenId,
        uint256 amount
    );
}

File 12 of 26 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

File 13 of 26 : 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 14 of 26 : 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 15 of 26 : 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 16 of 26 : 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 17 of 26 : IAccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

File 18 of 26 : 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 19 of 26 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 20 of 26 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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: balance query for the zero address");
        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: owner query for nonexistent token");
        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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        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 owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        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: transfer caller is not 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: transfer caller is not 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) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        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 a {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 a {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 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 {
                    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 21 of 26 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 22 of 26 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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 be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

File 23 of 26 : 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 24 of 26 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.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

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

File 25 of 26 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC721.sol)

pragma solidity ^0.8.0;

import "../token/ERC721/IERC721.sol";

File 26 of 26 : IVotes.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (governance/utils/IVotes.sol)
pragma solidity ^0.8.0;

/**
 * @dev Common interface for {ERC20Votes}, {ERC721Votes}, and other {Votes}-enabled contracts.
 *
 * _Available since v4.5._
 */
interface IVotes {
    /**
     * @dev Emitted when an account changes their delegate.
     */
    event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);

    /**
     * @dev Emitted when a token transfer or delegate change results in changes to a delegate's number of votes.
     */
    event DelegateVotesChanged(address indexed delegate, uint256 previousBalance, uint256 newBalance);

    /**
     * @dev Returns the current amount of votes that `account` has.
     */
    function getVotes(address account) external view returns (uint256);

    /**
     * @dev Returns the amount of votes that `account` had at the end of a past block (`blockNumber`).
     */
    function getPastVotes(address account, uint256 blockNumber) external view returns (uint256);

    /**
     * @dev Returns the total supply of votes available at the end of a past block (`blockNumber`).
     *
     * NOTE: This value is the sum of all available votes, which is not necessarily the sum of all delegated votes.
     * Votes that have not been delegated are still part of total supply, even though they would not participate in a
     * vote.
     */
    function getPastTotalSupply(uint256 blockNumber) external view returns (uint256);

    /**
     * @dev Returns the delegate that `account` has chosen.
     */
    function delegates(address account) external view returns (address);

    /**
     * @dev Delegates votes from the sender to `delegatee`.
     */
    function delegate(address delegatee) external;

    /**
     * @dev Delegates votes from signer to `delegatee`.
     */
    function delegateBySig(
        address delegatee,
        uint256 nonce,
        uint256 expiry,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_registry","type":"address"},{"internalType":"address","name":"_royaltyRcv","type":"address"},{"internalType":"address","name":"_renderingContract","type":"address"},{"internalType":"uint96","name":"_royaltyFeeNumerator","type":"uint96"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"provider","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"locktime","type":"uint256"},{"indexed":false,"internalType":"enum INFTLocker.DepositType","name":"deposit_type","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"ts","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"prevSupply","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"supply","type":"uint256"}],"name":"Supply","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":"provider","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ts","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MIGRATION_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_approved","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_block","type":"uint256"}],"name":"balanceOfAtNFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"balanceOfNFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_t","type":"uint256"}],"name":"balanceOfNFTAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blockNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkpoint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"uint256","name":"_lockDuration","type":"uint256"},{"internalType":"bool","name":"_stakeNFT","type":"bool"}],"name":"createLock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"uint256","name":"_lockDuration","type":"uint256"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"bool","name":"_stakeNFT","type":"bool"}],"name":"createLockFor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"depositFor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"emergencyRefund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"epoch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getLastUserSlope","outputs":[{"internalType":"int128","name":"","type":"int128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"inBootstrapMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"increaseAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_lockDuration","type":"uint256"}],"name":"increaseUnlockTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"isApprovedOrOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"isStaked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"locked","outputs":[{"internalType":"int128","name":"amount","type":"int128"},{"internalType":"uint256","name":"end","type":"uint256"},{"internalType":"uint256","name":"start","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"lockedEnd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_from","type":"uint256"},{"internalType":"uint256","name":"_to","type":"uint256"}],"name":"merge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"uint256","name":"_lockDuration","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"migrateTokenFor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minLockAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"","type":"uint256"}],"name":"ownershipChange","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"pointHistory","outputs":[{"internalType":"int128","name":"bias","type":"int128"},{"internalType":"int128","name":"slope","type":"int128"},{"internalType":"uint256","name":"ts","type":"uint256"},{"internalType":"uint256","name":"blk","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"registry","outputs":[{"internalType":"contract IRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renderingContract","outputs":[{"internalType":"contract ITokenURIGenerator","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","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":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minLockAmount","type":"uint256"}],"name":"setMinLockAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ITokenURIGenerator","name":"_contract","type":"address"}],"name":"setRenderingContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_royaltyRcv","type":"address"},{"internalType":"uint96","name":"_royaltyFeeNumerator","type":"uint96"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"slopeChanges","outputs":[{"internalType":"int128","name":"","type":"int128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stopBootstrapMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"_interfaceID","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_tokenIndex","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_block","type":"uint256"}],"name":"totalSupplyAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"t","type":"uint256"}],"name":"totalSupplyAtT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupplyWithoutDecay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"},{"internalType":"uint256[]","name":"_value","type":"uint256[]"},{"internalType":"uint256[]","name":"_lockDuration","type":"uint256[]"},{"internalType":"bool","name":"_stakeNFT","type":"bool"}],"name":"uploadUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"userPointEpoch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"userPointHistory","outputs":[{"internalType":"int128","name":"bias","type":"int128"},{"internalType":"int128","name":"slope","type":"int128"},{"internalType":"uint256","name":"ts","type":"uint256"},{"internalType":"uint256","name":"blk","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_idx","type":"uint256"}],"name":"userPointHistoryTs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"votingPowerOf","outputs":[{"internalType":"uint256","name":"_power","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526004805460ff60a01b1916600160a01b17905568055de6a779bbac0000600e553480156200003157600080fd5b5060405162004f3138038062004f318339810160408190526200005491620002ec565b60016000908155600480546001600160a01b0319166001600160a01b038716179055808052600a602052437f13da86008ba1c6922daee3e07db95305ef49ebced9f5467a0b8613fcc6b343e555427f13da86008ba1c6922daee3e07db95305ef49ebced9f5467a0b8613fcc6b343e455620000d0903362000132565b620000fc7f9d7b1cf62e8376e2ef102e20d4e487b829ff44d58ddb1f416ee01cf2ed26829e3362000132565b62000108838262000142565b50600580546001600160a01b0319166001600160a01b039290921691909117905550620003559050565b6200013e828262000247565b5050565b6127106001600160601b0382161115620001b65760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b0382166200020e5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401620001ad565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600255565b60008281526001602090815260408083206001600160a01b038516845290915290205460ff166200013e5760008281526001602081815260408084206001600160a01b0386168086529252808420805460ff19169093179092559051339285917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d9190a45050565b80516001600160a01b0381168114620002e757600080fd5b919050565b6000806000806080858703121562000302578384fd5b6200030d85620002cf565b93506200031d60208601620002cf565b92506200032d60408601620002cf565b60608601519092506001600160601b03811681146200034a578182fd5b939692955090935050565b614bcc80620003656000396000f3fe608060405234801561001057600080fd5b506004361061035b5760003560e01c80636352211e116101ca578063b45a3c0e11610105578063d1c2babb116100a8578063d1c2babb146108de578063d490dbca146108f1578063d547741f146108f9578063d60371a71461090c578063e0514aba1461091f578063e58f594714610932578063e7e242d414610952578063e985e9c514610965578063f52a36f7146109a157600080fd5b8063b45a3c0e14610810578063b7f1d07214610864578063b88d4fde14610877578063baa51f861461088a578063bcc3f3bd1461089d578063c2c4c5c1146108b0578063c7fecbcc146108b8578063c87b56dd146108cb57600080fd5b806391d148541161016d57806391d148541461077257806395d89b4114610785578063981b24d0146107a95780639d507b8b146107bc578063a217fddf146107cf578063a22cb465146107d7578063b128fd86146107ea578063b2383e55146107fd57600080fd5b80636352211e146106b957806370a08231146106cc5780637116c60c146106df5780637b103999146106f25780638ad4c447146107055780638c2c9baf146107435780638df4b13b14610756578063900cf0cf1461076957600080fd5b8063248a9ca31161029a57806342842e0e1161023d57806342842e0e146105d1578063430c2081146105e457806344acb42a146105f75780634bd2d9b31461063257806354fd4d50146106465780635633e0a61461066a57806357e871e714610690578063626944df1461069657600080fd5b8063248a9ca3146104ee5780632a55205a146105125780632e1a7d4d146105335780632f2ff15d146105465780632f745c5914610559578063313ce5671461058f57806336568abe146105a957806339c6d4cb146105bc57600080fd5b8063095ea7b311610302578063095ea7b31461045f5780630a2abdb3146104725780630ec84dda146104855780630f68ae401461049857806318160ddd146104ab5780632277cdc2146104b357806323857d51146104bb57806323b872dd146104db57600080fd5b806301ffc9a71461036057806302fa7c4714610388578063045f70191461039d578063047fc9aa146103b057806305ae4f8c146103c757806306fdde03146103da578063081812fc146104155780630880427514610456575b600080fd5b61037361036e366004614367565b6109c4565b60405190151581526020015b60405180910390f35b61039b6103963660046141e1565b610a25565b005b61039b6103ab366004614038565b610a63565b6103b960065481565b60405190815260200161037f565b6103b96103d5366004614429565b610cd2565b6104086040518060400160405280600f81526020016e131bd8dad959081350521048139195608a1b81525081565b60405161037f91906145df565b61043e61042336600461432b565b6000908152601160205260409020546001600160a01b031690565b6040516001600160a01b03909116815260200161037f565b6103b9600e5481565b61039b61046d3660046141b6565b610d12565b6103b9610480366004614482565b610d1c565b61039b610493366004614429565b610d62565b61039b6104a636600461432b565b610e72565b6103b9610e9e565b61039b610eae565b6103b96104c936600461432b565b60086020526000908152604090205481565b61039b6104e93660046140a8565b610ee4565b6103b96104fc36600461432b565b6000908152600160208190526040909120015490565b610525610520366004614429565b610ef5565b60405161037f9291906145c6565b61039b61054136600461432b565b610fa1565b61039b610554366004614343565b6112e3565b6103b96105673660046141b6565b6001600160a01b03919091166000908152601360209081526040808320938352929052205490565b610597601281565b60405160ff909116815260200161037f565b61039b6105b7366004614343565b611309565b6103b9600080516020614b5783398151915281565b61039b6105df3660046140a8565b611383565b6103736105f23660046141b6565b61139e565b61060a610605366004614429565b6113b1565b60408051600f95860b81529390940b602084015292820152606081019190915260800161037f565b60045461037390600160a01b900460ff1681565b610408604051806040016040528060058152602001640312e302e360dc1b81525081565b61067d61067836600461432b565b6113f8565b604051600f9190910b815260200161037f565b436103b9565b6103b96106a436600461432b565b60009081526007602052604090206001015490565b61043e6106c736600461432b565b611449565b6103b96106da366004614038565b611466565b6103b96106ed36600461432b565b611471565b60045461043e906001600160a01b031681565b61060a61071336600461432b565b600a60205260009081526040902080546001820154600290920154600f82810b93600160801b909304900b919084565b6103b9610751366004614429565b6114d9565b6103b961076436600461444a565b6114e5565b6103b960095481565b610373610780366004614343565b61152a565b6104086040518060400160405280600581526020016409a829082b60db1b81525081565b6103b96107b736600461432b565b611555565b61039b6107ca366004614429565b611715565b6103b9600081565b61039b6107e5366004614189565b611928565b61039b6107f8366004614219565b6119bb565b61039b61080b366004614429565b611ada565b61084461081e36600461432b565b600760205260009081526040902080546001820154600290920154600f9190910b919083565b60408051600f9490940b845260208401929092529082015260600161037f565b61039b610872366004614038565b611be0565b61039b6108853660046140e8565b611c29565b61037361089836600461432b565b611d63565b6103b96108ab366004614038565b611d6e565b61039b611de6565b60055461043e906001600160a01b031681565b6104086108d936600461432b565b611e34565b61039b6108ec366004614429565b611eb5565b6006546103b9565b61039b610907366004614343565b612138565b6103b961091a3660046144cb565b61215e565b6103b961092d366004614429565b6121a3565b6103b961094036600461432b565b600c6020526000908152604090205481565b6103b961096036600461432b565b6121af565b610373610973366004614070565b6001600160a01b03918216600090815260156020908152604080832093909416825291909152205460ff1690565b61067d6109af36600461432b565b600d60205260009081526040902054600f0b81565b60006301ffc9a760e01b6001600160e01b0319831614806109f557506380ac58cd60e01b6001600160e01b03198316145b80610a105750635b5e139f60e01b6001600160e01b03198316145b80610a1f5750610a1f826121d7565b92915050565b610a3060003361152a565b610a555760405162461bcd60e51b8152600401610a4c9061478b565b60405180910390fd5b610a5f82826121fc565b5050565b610a6e60003361152a565b610a8a5760405162461bcd60e51b8152600401610a4c9061478b565b600454600160a01b900460ff16610adb5760405162461bcd60e51b81526020600482015260156024820152746e6f7420696e20626f6f747374726170206d6f646560581b6044820152606401610a4c565b6004805460408051631ef0061b60e11b815290516001600160a01b0390921692633de00c36928282019260209290829003018186803b158015610b1d57600080fd5b505afa158015610b31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b559190614054565b6001600160a01b031663a9059cbb82600460009054906101000a90046001600160a01b03166001600160a01b0316633de00c366040518163ffffffff1660e01b815260040160206040518083038186803b158015610bb257600080fd5b505afa158015610bc6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bea9190614054565b6040516370a0823160e01b81523060048201526001600160a01b0391909116906370a082319060240160206040518083038186803b158015610c2b57600080fd5b505afa158015610c3f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c639190614411565b6040518363ffffffff1660e01b8152600401610c809291906145c6565b602060405180830381600087803b158015610c9a57600080fd5b505af1158015610cae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5f919061430f565b6000828152600b6020526040812082633b9aca008110610d0257634e487b7160e01b600052603260045260246000fd5b6003020160010154905092915050565b610a5f82826122f5565b600060026000541415610d415760405162461bcd60e51b8152600401610a4c90614754565b6002600055610d54858585600186612473565b600160005595945050505050565b60026000541415610d855760405162461bcd60e51b8152600401610a4c90614754565b600260008181558381526007602090815260409182902082516060810184528154600f90810b810b900b81526001820154928101929092529092015490820152610dce83612687565b15610deb5760405162461bcd60e51b8152600401610a4c90614629565b60008211610e0b5760405162461bcd60e51b8152600401610a4c90614649565b60008160000151600f0b13610e325760405162461bcd60e51b8152600401610a4c906146d8565b42816020015111610e555760405162461bcd60e51b8152600401610a4c906145f2565b610e68838360008460006001600061278c565b5050600160005550565b610e7d60003361152a565b610e995760405162461bcd60e51b8152600401610a4c9061478b565b600e55565b6000610ea942611471565b905090565b610eb960003361152a565b610ed55760405162461bcd60e51b8152600401610a4c9061478b565b6004805460ff60a01b19169055565b610ef083838333612baf565b505050565b60008281526003602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610f6a5750604080518082019091526002546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610f89906001600160601b0316876149b8565b610f939190614912565b915196919550909350505050565b60026000541415610fc45760405162461bcd60e51b8152600401610a4c90614754565b6002600055610fd33382612c7b565b610fef5760405162461bcd60e51b8152600401610a4c906146a3565b610ff881612687565b156110155760405162461bcd60e51b8152600401610a4c90614629565b60008181526007602090815260409182902082516060810184528154600f90810b810b900b815260018201549281018390526002909101549281019290925242101561109c5760405162461bcd60e51b8152602060048201526016602482015275546865206c6f636b206469646e27742065787069726560501b6044820152606401610a4c565b80516040805160608101825260008082526020808301828152838501838152888452600790925293909120915182546001600160801b0319166001600160801b03600f92830b16178355925160018301555160029091015560065491900b906111058282614a66565b600681905550611136848460405180606001604052806000600f0b8152602001600081526020016000815250612cde565b6004805460408051631ef0061b60e11b815290516001600160a01b0390921692633de00c36928282019260209290829003018186803b15801561117857600080fd5b505afa15801561118c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111b09190614054565b6001600160a01b031663a9059cbb33846040518363ffffffff1660e01b81526004016111dd9291906145c6565b602060405180830381600087803b1580156111f757600080fd5b505af115801561120b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061122f919061430f565b61124957634e487b7160e01b600052600160045260246000fd5b61125284613317565b60408051858152602081018490524281830152905133917f02f25270a4d87bea75db541cdfe559334a275b4a233520ed6c0a2429667cca94919081900360600190a27f5e2aa66efd74cce82b21852e317e5490d9ecc9e6bb953ae24d90851258cc2f5c816112c08482614a66565b6040805192835260208301919091520160405180910390a1505060016000555050565b600082815260016020819052604090912001546112ff81613394565b610ef083836133a1565b6001600160a01b03811633146113795760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610a4c565b610a5f828261340c565b610ef083838360405180602001604052806000815250611c29565b60006113aa8383612c7b565b9392505050565b600b60205281600052604060002081633b9aca0081106113d057600080fd5b6003020180546001820154600290920154600f82810b9550600160801b90920490910b925084565b6000818152600c6020908152604080832054600b909252822081633b9aca00811061143357634e487b7160e01b600052603260045260246000fd5b6003020154600160801b9004600f0b9392505050565b6000818152601060205260408120546001600160a01b0316610a1f565b6000610a1f82613473565b6009546000818152600a6020908152604080832081516080810183528154600f81810b810b810b8352600160801b909104810b810b900b938101939093526001810154918301919091526002015460608201529091906114d1818561348e565b949350505050565b60006113aa8383613598565b60006114ff600080516020614b578339815191523361152a565b61151b5760405162461bcd60e51b8152600401610a4c90614708565b6114d184848460006001612473565b60009182526001602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60004382111561157557634e487b7160e01b600052600160045260246000fd5b600954600061158484836138b9565b6000818152600a6020908152604080832081516080810183528154600f81810b810b810b8352600160801b909104810b810b900b93810193909352600181015491830191909152600201546060820152919250838310156116a3576000600a816115ef8660016148bc565b8152602080820192909252604090810160002081516080810183528154600f81810b810b810b8352600160801b909104810b810b900b938101939093526001810154918301919091526002015460608083018290528501519192501461169d57826060015181606001516116639190614a66565b836040015182604001516116779190614a66565b6060850151611686908a614a66565b61169091906149b8565b61169a9190614912565b91505b506116f2565b438260600151146116f25760608201516116bd9043614a66565b60408301516116cc9042614a66565b60608401516116db9089614a66565b6116e591906149b8565b6116ef9190614912565b90505b61170b8282846040015161170691906148bc565b61348e565b9695505050505050565b600260005414156117385760405162461bcd60e51b8152600401610a4c90614754565b60026000556117473383612c7b565b6117635760405162461bcd60e51b8152600401610a4c906146a3565b600082815260076020908152604080832081516060810183528154600f90810b810b900b815260018201549381019390935260020154908201529062093a80806117ad85426148bc565b6117b79190614912565b6117c191906149b8565b9050428260200151116118055760405162461bcd60e51b815260206004820152600c60248201526b131bd8dac8195e1c1a5c995960a21b6044820152606401610a4c565b60008260000151600f0b136118505760405162461bcd60e51b8152602060048201526011602482015270139bdd1a1a5b99c81a5cc81b1bd8dad959607a1b6044820152606401610a4c565b816020015181116118a35760405162461bcd60e51b815260206004820152601f60248201527f43616e206f6e6c7920696e637265617365206c6f636b206475726174696f6e006044820152606401610a4c565b6118b1630784ce00426148bc565b8111156118d05760405162461bcd60e51b8152600401610a4c9061466c565b630784ce0082604001516118e491906148bc565b8111156119035760405162461bcd60e51b8152600401610a4c9061466c565b61191d8460008385600360006119188b612687565b61278c565b505060016000555050565b6001600160a01b03821633141561194f57634e487b7160e01b600052600160045260246000fd5b3360008181526015602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6119d3600080516020614b578339815191523361152a565b6119ef5760405162461bcd60e51b8152600401610a4c90614708565b8151835114611a105760405162461bcd60e51b8152600401610a4c9061472e565b8251845114611a315760405162461bcd60e51b8152600401610a4c9061472e565b60005b8451811015611ad357611ac0848281518110611a6057634e487b7160e01b600052603260045260246000fd5b6020026020010151848381518110611a8857634e487b7160e01b600052603260045260246000fd5b6020026020010151878481518110611ab057634e487b7160e01b600052603260045260246000fd5b6020026020010151600086612473565b5080611acb81614ac0565b915050611a34565b5050505050565b60026000541415611afd5760405162461bcd60e51b8152600401610a4c90614754565b6002600055611b0c3383612c7b565b611b285760405162461bcd60e51b8152600401610a4c906146a3565b60008281526007602090815260409182902082516060810184528154600f90810b810b900b8152600182015492810192909252600201549181019190915281611b8157634e487b7160e01b600052600160045260246000fd5b60008160000151600f0b13611ba85760405162461bcd60e51b8152600401610a4c906146d8565b42816020015111611bcb5760405162461bcd60e51b8152600401610a4c906145f2565b610e688383600084600260016119188a612687565b611beb60003361152a565b611c075760405162461bcd60e51b8152600401610a4c9061478b565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b611c3584848433612baf565b823b15611d5d57604051630a85bd0160e11b81526001600160a01b0384169063150b7a0290611c6e903390889087908790600401614593565b602060405180830381600087803b158015611c8857600080fd5b505af1925050508015611cb8575060408051601f3d908101601f19168201909252611cb591810190614383565b60015b611ad3573d808015611ce6576040519150601f19603f3d011682016040523d82523d6000602084013e611ceb565b606091505b508051611d555760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610a4c565b805181602001fd5b50505050565b6000610a1f82612687565b6000805b6001600160a01b038316600090815260126020526040902054811015611de0576001600160a01b0383166000908152601360209081526040808320848452909152902054611dc08142613943565b611dca90846148bc565b9250508080611dd890614ac0565b915050611d72565b50919050565b611e32600060405180606001604052806000600f0b815260200160008152602001600081525060405180606001604052806000600f0b8152602001600081526020016000815250612cde565b565b60055460405163c87b56dd60e01b8152600481018390526060916001600160a01b03169063c87b56dd9060240160006040518083038186803b158015611e7957600080fd5b505afa158015611e8d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610a1f919081019061439f565b611ebe82612687565b15611ef95760405162461bcd60e51b815260206004820152600b60248201526a199c9bdb481cdd185ad95960aa1b6044820152606401610a4c565b611f0281612687565b15611f3b5760405162461bcd60e51b81526020600482015260096024820152681d1bc81cdd185ad95960ba1b6044820152606401610a4c565b80821415611f765760405162461bcd60e51b81526020600482015260086024820152671cd85b59481b999d60c21b6044820152606401610a4c565b611f803383612c7b565b611fc05760405162461bcd60e51b8152602060048201526011602482015270199c9bdb481b9bdd08185c1c1c9bdd9959607a1b6044820152606401610a4c565b611fca3382612c7b565b6120085760405162461bcd60e51b815260206004820152600f60248201526e1d1bc81b9bdd08185c1c1c9bdd9959608a1b6044820152606401610a4c565b60008281526007602081815260408084208151606080820184528254600f90810b810b810b8352600180850154848801908152600295860154858801528a8a52978752858920865193840187528054830b830b830b8452908101549683018790529093015493810193909352805194519095929490910b921115612090578260200151612096565b83602001515b6040805160608082018352600080835260208084018281528486018381528d84526007835286842095518654600f9190910b6001600160801b03166001600160801b0319909116178655905160018601555160029094019390935583519182018452808252918101829052918201529091506121159087908690612cde565b61211e86613317565b6121308583838660046001600061278c565b505050505050565b6000828152600160208190526040909120015461215481613394565b610ef0838361340c565b6000600260005414156121835760405162461bcd60e51b8152600401610a4c90614754565b6002600055612196848433600186612473565b6001600055949350505050565b60006113aa8383613943565b6000818152600860205260408120544314156121cd57506000919050565b610a1f8242613943565b60006001600160e01b0319821663152a902d60e11b1480610a1f5750610a1f82613a2d565b6127106001600160601b038216111561226a5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610a4c565b6001600160a01b0382166122bc5760405162461bcd60e51b815260206004820152601960248201527822a921991c9c189d1034b73b30b634b2103932b1b2b4bb32b960391b6044820152606401610a4c565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600255565b6000818152601060205260409020546001600160a01b0316806123495760405162461bcd60e51b815260206004820152600c60248201526b06f776e6572206973203078360a41b6044820152606401610a4c565b806001600160a01b0316836001600160a01b031614156123975760405162461bcd60e51b81526020600482015260096024820152683737ba1037bbb732b960b91b6044820152606401610a4c565b6000828152601060209081526040808320546001600160a01b0385811685526015845282852033808752945291909320549216149060ff1681806123d85750805b6124155760405162461bcd60e51b815260206004820152600e60248201526d34b73b30b634b21039b2b73232b960911b6044820152606401610a4c565b60008481526011602052604080822080546001600160a01b0319166001600160a01b0389811691821790925591518793918716917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a45050505050565b6000600460009054906101000a90046001600160a01b03166001600160a01b031663f9fa21236040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156124c557600080fd5b505af11580156124d9573d6000803e3d6000fd5b50505050600062093a808087426124f091906148bc565b6124fa9190614912565b61250491906149b8565b9050600087116125265760405162461bcd60e51b8152600401610a4c90614649565b4281116125755760405162461bcd60e51b815260206004820152601b60248201527f43616e206f6e6c79206c6f636b20696e207468652066757475726500000000006044820152606401610a4c565b612583630784ce00426148bc565b8111156125a25760405162461bcd60e51b8152600401610a4c9061466c565b600f600081546125b190614ac0565b90915550600f546125c28682613a62565b50612621818984600760008681526020019081526020016000206040518060600160405290816000820160009054906101000a9004600f0b600f0b600f0b81526020016001820154815260200160028201548152505060018a8a61278c565b600e5461262e8242613943565b101561267c5760405162461bcd60e51b815260206004820152601a60248201527f6d696e20616d6f756e7420666f72206e6674206e6f74206d65740000000000006044820152606401610a4c565b979650505050505050565b6000600460009054906101000a90046001600160a01b03166001600160a01b0316635ebaf1db6040518163ffffffff1660e01b815260040160206040518083038186803b1580156126d757600080fd5b505afa1580156126eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061270f9190614054565b6001600160a01b031663baa51f86836040518263ffffffff1660e01b815260040161273c91815260200190565b60206040518083038186803b15801561275457600080fd5b505afa158015612768573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a1f919061430f565b600480546040805163f9fa212360e01b815290516001600160a01b039092169263f9fa212392828201926000929082900301818387803b1580156127cf57600080fd5b505af11580156127e3573d6000803e3d6000fd5b505060065486925090506127f788826148bc565b6006556040805160608101825260008082526020820181905291810191909152825160208085015190830152600f90810b900b815282518990849061283d90839061486b565b600f90810b900b905250871561285557602083018890525b600186600481111561287757634e487b7160e01b600052602160045260246000fd5b1415612884574260408401525b60008a81526007602090815260409182902085518154600f9190910b6001600160801b03166001600160801b0319909116178155908501516001820155908401516002909101556128d68a8285612cde565b3389158015906129065750600487600481111561290357634e487b7160e01b600052602160045260246000fd5b14155b801561290f5750855b15612a32576004805460408051631ef0061b60e11b815290516001600160a01b0390921692633de00c36928282019260209290829003018186803b15801561295657600080fd5b505afa15801561296a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061298e9190614054565b6040516323b872dd60e01b81526001600160a01b038381166004830152306024830152604482018d905291909116906323b872dd90606401602060405180830381600087803b1580156129e057600080fd5b505af11580156129f4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a18919061430f565b612a3257634e487b7160e01b600052600160045260246000fd5b8415612b12576004805460408051635ebaf1db60e01b815290516001600160a01b0390921692635ebaf1db928282019260209290829003018186803b158015612a7a57600080fd5b505afa158015612a8e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ab29190614054565b6001600160a01b031663630b4b908c6040518263ffffffff1660e01b8152600401612adf91815260200190565b600060405180830381600087803b158015612af957600080fd5b505af1158015612b0d573d6000803e3d6000fd5b505050505b8360200151816001600160a01b03167fff04ccafc360e16b67d682d17bd9503c4c6b9a131f6be6325762dc9ffc7de6248d8d8b42604051612b5694939291906147b3565b60405180910390a37f5e2aa66efd74cce82b21852e317e5490d9ecc9e6bb953ae24d90851258cc2f5c83612b8a8c826148bc565b6040805192835260208301919091520160405180910390a15050505050505050505050565b612bb882612687565b15612bd55760405162461bcd60e51b8152600401610a4c90614629565b612bdf8183612c7b565b612c215760405162461bcd60e51b81526020600482015260136024820152723737ba1030b8383937bb32b21039b2b73232b960691b6044820152606401610a4c565b612c2b8483613ac1565b612c358483613b34565b612c3f8383613bc3565b6000828152600860205260408082204390555183916001600160a01b038087169290881691600080516020614b7783398151915291a450505050565b60008181526010602090815260408083205460118352818420546001600160a01b039182168086526015855283862088841680885295529285205492938085149392909116149060ff168280612cce5750815b8061267c57509695505050505050565b612ce6613f8b565b612cee613f8b565b60095460009081908715612e2257428760200151118015612d16575060008760000151600f0b135b15612d63578651612d2c90630784ce00906148d4565b600f90810b900b602080870191909152870151612d4a904290614a66565b8560200151612d599190614926565b600f90810b900b85525b428660200151118015612d7d575060008660000151600f0b135b15612dca578551612d9390630784ce00906148d4565b600f90810b900b602080860191909152860151612db1904290614a66565b8460200151612dc09190614926565b600f90810b900b84525b6020808801516000908152600d8252604090205490870151600f9190910b935015612e2257866020015186602001511415612e0757829150612e22565b6020808701516000908152600d9091526040902054600f0b91505b604080516080810182526000808252602082015242918101919091524360608201528115612e9f57506000818152600a602090815260409182902082516080810184528154600f81810b810b810b8352600160801b909104810b810b900b9281019290925260018101549282019290925260029091015460608201525b604081015181600042831015612eec576040840151612ebe9042614a66565b6060850151612ecd9043614a66565b612edf90670de0b6b3a76400006149b8565b612ee99190614912565b90505b600062093a80612efc8186614912565b612f0691906149b8565b905060005b60ff81101561308f57612f2162093a80836148bc565b9150600042831115612f3557429250612f49565b506000828152600d6020526040902054600f0b5b612f538684614a66565b8760200151612f629190614926565b87518890612f719083906149d7565b600f90810b900b905250602087018051829190612f8f90839061486b565b600f90810b810b90915288516000910b12159050612fac57600087525b60008760200151600f0b1215612fc457600060208801525b60408088018490528501519295508592670de0b6b3a764000090612fe89085614a66565b612ff290866149b8565b612ffc9190614912565b856060015161300b91906148bc565b606088015261301b6001896148bc565b975042831415613031575043606087015261308f565b6000888152600a60209081526040918290208951918a0151600f90810b6001600160801b03908116600160801b029390910b1691909117815590880151600182015560608801516002909101555061308881614ac0565b9050612f0b565b505060098590558b1561312057886020015188602001516130b091906149d7565b846020018181516130c1919061486b565b600f90810b900b905250885188516130d991906149d7565b845185906130e890839061486b565b600f90810b810b90915260208601516000910b1215905061310b57600060208501525b60008460000151600f0b121561312057600084525b6000858152600a6020908152604091829020865191870151600f90810b6001600160801b03908116600160801b029390910b1691909117815590850151600182015560608501516002909101558b1561330957428b6020015111156131e457602089015161318e908861486b565b96508a602001518a6020015114156131b25760208801516131af90886149d7565b96505b60208b8101516000908152600d9091526040902080546001600160801b0319166001600160801b03600f8a900b161790555b428a602001511115613243578a602001518a60200151111561324357602088015161320f90876149d7565b60208b8101516000908152600d9091526040902080546001600160801b0319166001600160801b03600f84900b1617905595505b60008c8152600c602052604081205461325d9060016148bc565b905080600c60008f815260200190815260200160002081905550428960400181815250504389606001818152505088600b60008f815260200190815260200160002082633b9aca0081106132c157634e487b7160e01b600052603260045260246000fd5b82516020840151600f90810b6001600160801b03908116600160801b029290910b16176003919091029190910190815560408201516001820155606090910151600290910155505b505050505050505050505050565b6133213382612c7b565b61333d5760405162461bcd60e51b8152600401610a4c906146a3565b6000818152601060205260408120546001600160a01b03169061336090836122f5565b61336a3383613b34565b60405182906000906001600160a01b03841690600080516020614b77833981519152908390a45050565b61339e8133613c50565b50565b6133ab828261152a565b610a5f5760008281526001602081815260408084206001600160a01b0386168086529252808420805460ff19169093179092559051339285917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d9190a45050565b613416828261152a565b15610a5f5760008281526001602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6001600160a01b031660009081526012602052604090205490565b600080839050600062093a808083604001516134aa9190614912565b6134b491906149b8565b905060005b60ff811015613570576134cf62093a80836148bc565b91506000858311156134e3578592506134f7565b506000828152600d6020526040902054600f0b5b60408401516135069084614a66565b84602001516135159190614926565b845185906135249083906149d7565b600f90810b900b9052508286141561353c5750613570565b808460200181815161354e919061486b565b600f90810b900b905250506040830182905261356981614ac0565b90506134b9565b5060008260000151600f0b121561358657600082525b50516001600160801b03169392505050565b6000438211156135b857634e487b7160e01b600052600160045260246000fd5b6000838152600c6020526040812054815b608081101561366a578183106135de5761366a565b600060026135ec84866148bc565b6135f79060016148bc565b6136019190614912565b6000888152600b60205260409020909150869082633b9aca00811061363657634e487b7160e01b600052603260045260246000fd5b60030201600201541161364b57809350613659565b613656600182614a66565b92505b5061366381614ac0565b90506135c9565b506000858152600b6020526040812083633b9aca00811061369b57634e487b7160e01b600052603260045260246000fd5b60408051608081018252600392909202929092018054600f81810b810b810b8452600160801b909104810b810b900b6020830152600181015492820192909252600290910154606082015260095490915060006136f887836138b9565b6000818152600a6020908152604080832081516080810183528154600f81810b810b810b8352600160801b909104810b810b900b9381019390935260018101549183019190915260020154606082015291925080848410156137e7576000600a816137648760016148bc565b8152602080820192909252604090810160002081516080810183528154600f81810b810b810b8352600160801b909104810b810b900b938101939093526001810154918301919091526002015460608083018290528601519192506137c99190614a66565b9250836040015181604001516137df9190614a66565b91505061380b565b60608301516137f69043614a66565b91508260400151426138089190614a66565b90505b60408301518215613848578284606001518c6138279190614a66565b61383190846149b8565b61383b9190614912565b61384590826148bc565b90505b60408701516138579082614a66565b87602001516138669190614926565b875188906138759083906149d7565b600f90810b810b90915288516000910b1290506138a757505093516001600160801b03169650610a1f95505050505050565b60009950505050505050505050610a1f565b60008082815b6080811015613939578183106138d457613939565b600060026138e284866148bc565b6138ed9060016148bc565b6138f79190614912565b6000818152600a6020526040902060020154909150871061391a57809350613928565b613925600182614a66565b92505b5061393281614ac0565b90506138bf565b5090949350505050565b6000828152600c602052604081205480613961576000915050610a1f565b6000848152600b6020526040812082633b9aca00811061399157634e487b7160e01b600052603260045260246000fd5b60408051608081018252600392909202929092018054600f81810b810b810b8452600160801b909104810b810b900b6020830152600181015492820183905260020154606082015291506139e59085614a27565b81602001516139f49190614926565b81518290613a039083906149d7565b600f90810b810b90915282516000910b12159050613a2057600081525b51600f0b9150610a1f9050565b60006001600160e01b03198216637965db0b60e01b1480610a1f57506301ffc9a760e01b6001600160e01b0319831614610a1f565b60006001600160a01b038316613a8857634e487b7160e01b600052600160045260246000fd5b613a928383613bc3565b60405182906001600160a01b03851690600090600080516020614b77833981519152908290a450600192915050565b6000818152601060205260409020546001600160a01b03838116911614613af857634e487b7160e01b600052600160045260246000fd5b6000818152601160205260409020546001600160a01b031615610a5f57600090815260116020526040902080546001600160a01b031916905550565b6000818152601060205260409020546001600160a01b03838116911614613b6b57634e487b7160e01b600052600160045260246000fd5b600081815260106020526040902080546001600160a01b0319169055613b918282613cb4565b6001600160a01b0382166000908152601260205260408120805460019290613bba908490614a66565b90915550505050565b6000818152601060205260409020546001600160a01b031615613bf657634e487b7160e01b600052600160045260246000fd5b600081815260106020526040902080546001600160a01b0319166001600160a01b038416179055613c278282613d66565b6001600160a01b0382166000908152601260205260408120805460019290613bba9084906148bc565b613c5a828261152a565b610a5f57613c72816001600160a01b03166014613daa565b613c7d836020613daa565b604051602001613c8e929190614524565b60408051601f198184030181529082905262461bcd60e51b8252610a4c916004016145df565b60006001613cc184613473565b613ccb9190614a66565b60008381526014602052604090205490915080821415613d1b576001600160a01b038416600090815260136020908152604080832085845282528083208390558583526014909152812055611d5d565b6001600160a01b039390931660009081526013602090815260408083209383529281528282208054868452848420819055835260149091528282209490945592839055908252812055565b6000613d7183613473565b6001600160a01b039093166000908152601360209081526040808320868452825280832085905593825260149052919091209190915550565b60606000613db98360026149b8565b613dc49060026148bc565b6001600160401b03811115613de957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015613e13576020820181803683370190505b509050600360fc1b81600081518110613e3c57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110613e7957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000613e9d8460026149b8565b613ea89060016148bc565b90505b6001811115613f3c576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110613eea57634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110613f0e57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93613f3581614aa9565b9050613eab565b5083156113aa5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610a4c565b60405180608001604052806000600f0b81526020016000600f0b815260200160008152602001600081525090565b600082601f830112613fc9578081fd5b81356020613fde613fd983614821565b6147f1565b80838252828201915082860187848660051b8901011115613ffd578586fd5b855b8581101561401b57813584529284019290840190600101613fff565b5090979650505050505050565b803561403381614b32565b919050565b600060208284031215614049578081fd5b81356113aa81614b1d565b600060208284031215614065578081fd5b81516113aa81614b1d565b60008060408385031215614082578081fd5b823561408d81614b1d565b9150602083013561409d81614b1d565b809150509250929050565b6000806000606084860312156140bc578081fd5b83356140c781614b1d565b925060208401356140d781614b1d565b929592945050506040919091013590565b600080600080608085870312156140fd578081fd5b843561410881614b1d565b9350602085013561411881614b1d565b92506040850135915060608501356001600160401b03811115614139578182fd5b8501601f81018713614149578182fd5b8035614157613fd982614844565b81815288602083850101111561416b578384fd5b81602084016020830137908101602001929092525092959194509250565b6000806040838503121561419b578182fd5b82356141a681614b1d565b9150602083013561409d81614b32565b600080604083850312156141c8578182fd5b82356141d381614b1d565b946020939093013593505050565b600080604083850312156141f3578182fd5b82356141fe81614b1d565b915060208301356001600160601b038116811461409d578182fd5b6000806000806080858703121561422e578182fd5b84356001600160401b0380821115614244578384fd5b818701915087601f830112614257578384fd5b81356020614267613fd983614821565b8083825282820191508286018c848660051b8901011115614286578889fd5b8896505b848710156142b157803561429d81614b1d565b83526001969096019591830191830161428a565b50985050880135925050808211156142c7578384fd5b6142d388838901613fb9565b945060408701359150808211156142e8578384fd5b506142f587828801613fb9565b92505061430460608601614028565b905092959194509250565b600060208284031215614320578081fd5b81516113aa81614b32565b60006020828403121561433c578081fd5b5035919050565b60008060408385031215614355578182fd5b82359150602083013561409d81614b1d565b600060208284031215614378578081fd5b81356113aa81614b40565b600060208284031215614394578081fd5b81516113aa81614b40565b6000602082840312156143b0578081fd5b81516001600160401b038111156143c5578182fd5b8201601f810184136143d5578182fd5b80516143e3613fd982614844565b8181528560208385010111156143f7578384fd5b614408826020830160208601614a7d565b95945050505050565b600060208284031215614422578081fd5b5051919050565b6000806040838503121561443b578182fd5b50508035926020909101359150565b60008060006060848603121561445e578081fd5b8335925060208401359150604084013561447781614b1d565b809150509250925092565b60008060008060808587031215614497578182fd5b843593506020850135925060408501356144b081614b1d565b915060608501356144c081614b32565b939692955090935050565b6000806000606084860312156144df578081fd5b8335925060208401359150604084013561447781614b32565b60008151808452614510816020860160208601614a7d565b601f01601f19169290920160200192915050565b76020b1b1b2b9b9a1b7b73a3937b61d1030b1b1b7bab73a1604d1b815260008351614556816017850160208801614a7d565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351614587816028840160208801614a7d565b01602801949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061170b908301846144f8565b6001600160a01b03929092168252602082015260400190565b6020815260006113aa60208301846144f8565b6020808252601b908201527f43616e6e6f742061646420746f2065787069726564206c6f636b2e0000000000604082015260600190565b6020808252600690820152651cdd185ad95960d21b604082015260600190565b602080825260099082015268076616c7565203d20360bc1b604082015260600190565b6020808252601e908201527f566f74696e67206c6f636b2063616e2062652034207965617273206d61780000604082015260600190565b6020808252818101527f63616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564604082015260600190565b602080825260169082015275139bc8195e1a5cdd1a5b99c81b1bd8dac8199bdd5b9960521b604082015260600190565b6020808252600c908201526b3737ba1036b4b3b930ba37b960a11b604082015260600190565b6020808252600c908201526b696e76616c6964206461746160a01b604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252600e908201526d6e6f7420676f7665726e616e636560901b604082015260600190565b8481526020810184905260808101600584106147df57634e487b7160e01b600052602160045260246000fd5b60408201939093526060015292915050565b604051601f8201601f191681016001600160401b038111828210171561481957614819614b07565b604052919050565b60006001600160401b0382111561483a5761483a614b07565b5060051b60200190565b60006001600160401b0382111561485d5761485d614b07565b50601f01601f191660200190565b6000600f82810b9084900b828212801560016001607f1b038490038313161561489657614896614adb565b60016001607f1b031983900382128116156148b3576148b3614adb565b50019392505050565b600082198211156148cf576148cf614adb565b500190565b600081600f0b83600f0b806148eb576148eb614af1565b60016001607f1b031982146000198214161561490957614909614adb565b90059392505050565b60008261492157614921614af1565b500490565b6000600f82810b9084900b60016001607f1b038382138484138082168484048611161561495557614955614adb565b60016001607f1b03198685128281168783058712161561497757614977614adb565b87871292508582058712848416161561499257614992614adb565b858505871281841616156149a8576149a8614adb565b5050509290910295945050505050565b60008160001904831182151516156149d2576149d2614adb565b500290565b6000600f82810b9084900b828112801560016001607f1b0319830184121615614a0257614a02614adb565b60016001607f1b0382018313811615614a1d57614a1d614adb565b5090039392505050565b60008083128015600160ff1b850184121615614a4557614a45614adb565b6001600160ff1b0384018313811615614a6057614a60614adb565b50500390565b600082821015614a7857614a78614adb565b500390565b60005b83811015614a98578181015183820152602001614a80565b83811115611d5d5750506000910152565b600081614ab857614ab8614adb565b506000190190565b6000600019821415614ad457614ad4614adb565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461339e57600080fd5b801515811461339e57600080fd5b6001600160e01b03198116811461339e57600080fdfe9d7b1cf62e8376e2ef102e20d4e487b829ff44d58ddb1f416ee01cf2ed26829eddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220a2b02e15ffd0ab2e016d186d503a65eafba96e9f9f625a694401261f16f9123f64736f6c634300080400330000000000000000000000002684861ba9dada685a11c4e9e5aed8630f08afe000000000000000000000000067c569f960c1cc0b9a7979a851f5a67018c5a3b00000000000000000000000009d348281e16218cd8ede9cd8a1bca74e89b410e80000000000000000000000000000000000000000000000000000000000002710

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061035b5760003560e01c80636352211e116101ca578063b45a3c0e11610105578063d1c2babb116100a8578063d1c2babb146108de578063d490dbca146108f1578063d547741f146108f9578063d60371a71461090c578063e0514aba1461091f578063e58f594714610932578063e7e242d414610952578063e985e9c514610965578063f52a36f7146109a157600080fd5b8063b45a3c0e14610810578063b7f1d07214610864578063b88d4fde14610877578063baa51f861461088a578063bcc3f3bd1461089d578063c2c4c5c1146108b0578063c7fecbcc146108b8578063c87b56dd146108cb57600080fd5b806391d148541161016d57806391d148541461077257806395d89b4114610785578063981b24d0146107a95780639d507b8b146107bc578063a217fddf146107cf578063a22cb465146107d7578063b128fd86146107ea578063b2383e55146107fd57600080fd5b80636352211e146106b957806370a08231146106cc5780637116c60c146106df5780637b103999146106f25780638ad4c447146107055780638c2c9baf146107435780638df4b13b14610756578063900cf0cf1461076957600080fd5b8063248a9ca31161029a57806342842e0e1161023d57806342842e0e146105d1578063430c2081146105e457806344acb42a146105f75780634bd2d9b31461063257806354fd4d50146106465780635633e0a61461066a57806357e871e714610690578063626944df1461069657600080fd5b8063248a9ca3146104ee5780632a55205a146105125780632e1a7d4d146105335780632f2ff15d146105465780632f745c5914610559578063313ce5671461058f57806336568abe146105a957806339c6d4cb146105bc57600080fd5b8063095ea7b311610302578063095ea7b31461045f5780630a2abdb3146104725780630ec84dda146104855780630f68ae401461049857806318160ddd146104ab5780632277cdc2146104b357806323857d51146104bb57806323b872dd146104db57600080fd5b806301ffc9a71461036057806302fa7c4714610388578063045f70191461039d578063047fc9aa146103b057806305ae4f8c146103c757806306fdde03146103da578063081812fc146104155780630880427514610456575b600080fd5b61037361036e366004614367565b6109c4565b60405190151581526020015b60405180910390f35b61039b6103963660046141e1565b610a25565b005b61039b6103ab366004614038565b610a63565b6103b960065481565b60405190815260200161037f565b6103b96103d5366004614429565b610cd2565b6104086040518060400160405280600f81526020016e131bd8dad959081350521048139195608a1b81525081565b60405161037f91906145df565b61043e61042336600461432b565b6000908152601160205260409020546001600160a01b031690565b6040516001600160a01b03909116815260200161037f565b6103b9600e5481565b61039b61046d3660046141b6565b610d12565b6103b9610480366004614482565b610d1c565b61039b610493366004614429565b610d62565b61039b6104a636600461432b565b610e72565b6103b9610e9e565b61039b610eae565b6103b96104c936600461432b565b60086020526000908152604090205481565b61039b6104e93660046140a8565b610ee4565b6103b96104fc36600461432b565b6000908152600160208190526040909120015490565b610525610520366004614429565b610ef5565b60405161037f9291906145c6565b61039b61054136600461432b565b610fa1565b61039b610554366004614343565b6112e3565b6103b96105673660046141b6565b6001600160a01b03919091166000908152601360209081526040808320938352929052205490565b610597601281565b60405160ff909116815260200161037f565b61039b6105b7366004614343565b611309565b6103b9600080516020614b5783398151915281565b61039b6105df3660046140a8565b611383565b6103736105f23660046141b6565b61139e565b61060a610605366004614429565b6113b1565b60408051600f95860b81529390940b602084015292820152606081019190915260800161037f565b60045461037390600160a01b900460ff1681565b610408604051806040016040528060058152602001640312e302e360dc1b81525081565b61067d61067836600461432b565b6113f8565b604051600f9190910b815260200161037f565b436103b9565b6103b96106a436600461432b565b60009081526007602052604090206001015490565b61043e6106c736600461432b565b611449565b6103b96106da366004614038565b611466565b6103b96106ed36600461432b565b611471565b60045461043e906001600160a01b031681565b61060a61071336600461432b565b600a60205260009081526040902080546001820154600290920154600f82810b93600160801b909304900b919084565b6103b9610751366004614429565b6114d9565b6103b961076436600461444a565b6114e5565b6103b960095481565b610373610780366004614343565b61152a565b6104086040518060400160405280600581526020016409a829082b60db1b81525081565b6103b96107b736600461432b565b611555565b61039b6107ca366004614429565b611715565b6103b9600081565b61039b6107e5366004614189565b611928565b61039b6107f8366004614219565b6119bb565b61039b61080b366004614429565b611ada565b61084461081e36600461432b565b600760205260009081526040902080546001820154600290920154600f9190910b919083565b60408051600f9490940b845260208401929092529082015260600161037f565b61039b610872366004614038565b611be0565b61039b6108853660046140e8565b611c29565b61037361089836600461432b565b611d63565b6103b96108ab366004614038565b611d6e565b61039b611de6565b60055461043e906001600160a01b031681565b6104086108d936600461432b565b611e34565b61039b6108ec366004614429565b611eb5565b6006546103b9565b61039b610907366004614343565b612138565b6103b961091a3660046144cb565b61215e565b6103b961092d366004614429565b6121a3565b6103b961094036600461432b565b600c6020526000908152604090205481565b6103b961096036600461432b565b6121af565b610373610973366004614070565b6001600160a01b03918216600090815260156020908152604080832093909416825291909152205460ff1690565b61067d6109af36600461432b565b600d60205260009081526040902054600f0b81565b60006301ffc9a760e01b6001600160e01b0319831614806109f557506380ac58cd60e01b6001600160e01b03198316145b80610a105750635b5e139f60e01b6001600160e01b03198316145b80610a1f5750610a1f826121d7565b92915050565b610a3060003361152a565b610a555760405162461bcd60e51b8152600401610a4c9061478b565b60405180910390fd5b610a5f82826121fc565b5050565b610a6e60003361152a565b610a8a5760405162461bcd60e51b8152600401610a4c9061478b565b600454600160a01b900460ff16610adb5760405162461bcd60e51b81526020600482015260156024820152746e6f7420696e20626f6f747374726170206d6f646560581b6044820152606401610a4c565b6004805460408051631ef0061b60e11b815290516001600160a01b0390921692633de00c36928282019260209290829003018186803b158015610b1d57600080fd5b505afa158015610b31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b559190614054565b6001600160a01b031663a9059cbb82600460009054906101000a90046001600160a01b03166001600160a01b0316633de00c366040518163ffffffff1660e01b815260040160206040518083038186803b158015610bb257600080fd5b505afa158015610bc6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bea9190614054565b6040516370a0823160e01b81523060048201526001600160a01b0391909116906370a082319060240160206040518083038186803b158015610c2b57600080fd5b505afa158015610c3f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c639190614411565b6040518363ffffffff1660e01b8152600401610c809291906145c6565b602060405180830381600087803b158015610c9a57600080fd5b505af1158015610cae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5f919061430f565b6000828152600b6020526040812082633b9aca008110610d0257634e487b7160e01b600052603260045260246000fd5b6003020160010154905092915050565b610a5f82826122f5565b600060026000541415610d415760405162461bcd60e51b8152600401610a4c90614754565b6002600055610d54858585600186612473565b600160005595945050505050565b60026000541415610d855760405162461bcd60e51b8152600401610a4c90614754565b600260008181558381526007602090815260409182902082516060810184528154600f90810b810b900b81526001820154928101929092529092015490820152610dce83612687565b15610deb5760405162461bcd60e51b8152600401610a4c90614629565b60008211610e0b5760405162461bcd60e51b8152600401610a4c90614649565b60008160000151600f0b13610e325760405162461bcd60e51b8152600401610a4c906146d8565b42816020015111610e555760405162461bcd60e51b8152600401610a4c906145f2565b610e68838360008460006001600061278c565b5050600160005550565b610e7d60003361152a565b610e995760405162461bcd60e51b8152600401610a4c9061478b565b600e55565b6000610ea942611471565b905090565b610eb960003361152a565b610ed55760405162461bcd60e51b8152600401610a4c9061478b565b6004805460ff60a01b19169055565b610ef083838333612baf565b505050565b60008281526003602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610f6a5750604080518082019091526002546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610f89906001600160601b0316876149b8565b610f939190614912565b915196919550909350505050565b60026000541415610fc45760405162461bcd60e51b8152600401610a4c90614754565b6002600055610fd33382612c7b565b610fef5760405162461bcd60e51b8152600401610a4c906146a3565b610ff881612687565b156110155760405162461bcd60e51b8152600401610a4c90614629565b60008181526007602090815260409182902082516060810184528154600f90810b810b900b815260018201549281018390526002909101549281019290925242101561109c5760405162461bcd60e51b8152602060048201526016602482015275546865206c6f636b206469646e27742065787069726560501b6044820152606401610a4c565b80516040805160608101825260008082526020808301828152838501838152888452600790925293909120915182546001600160801b0319166001600160801b03600f92830b16178355925160018301555160029091015560065491900b906111058282614a66565b600681905550611136848460405180606001604052806000600f0b8152602001600081526020016000815250612cde565b6004805460408051631ef0061b60e11b815290516001600160a01b0390921692633de00c36928282019260209290829003018186803b15801561117857600080fd5b505afa15801561118c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111b09190614054565b6001600160a01b031663a9059cbb33846040518363ffffffff1660e01b81526004016111dd9291906145c6565b602060405180830381600087803b1580156111f757600080fd5b505af115801561120b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061122f919061430f565b61124957634e487b7160e01b600052600160045260246000fd5b61125284613317565b60408051858152602081018490524281830152905133917f02f25270a4d87bea75db541cdfe559334a275b4a233520ed6c0a2429667cca94919081900360600190a27f5e2aa66efd74cce82b21852e317e5490d9ecc9e6bb953ae24d90851258cc2f5c816112c08482614a66565b6040805192835260208301919091520160405180910390a1505060016000555050565b600082815260016020819052604090912001546112ff81613394565b610ef083836133a1565b6001600160a01b03811633146113795760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610a4c565b610a5f828261340c565b610ef083838360405180602001604052806000815250611c29565b60006113aa8383612c7b565b9392505050565b600b60205281600052604060002081633b9aca0081106113d057600080fd5b6003020180546001820154600290920154600f82810b9550600160801b90920490910b925084565b6000818152600c6020908152604080832054600b909252822081633b9aca00811061143357634e487b7160e01b600052603260045260246000fd5b6003020154600160801b9004600f0b9392505050565b6000818152601060205260408120546001600160a01b0316610a1f565b6000610a1f82613473565b6009546000818152600a6020908152604080832081516080810183528154600f81810b810b810b8352600160801b909104810b810b900b938101939093526001810154918301919091526002015460608201529091906114d1818561348e565b949350505050565b60006113aa8383613598565b60006114ff600080516020614b578339815191523361152a565b61151b5760405162461bcd60e51b8152600401610a4c90614708565b6114d184848460006001612473565b60009182526001602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60004382111561157557634e487b7160e01b600052600160045260246000fd5b600954600061158484836138b9565b6000818152600a6020908152604080832081516080810183528154600f81810b810b810b8352600160801b909104810b810b900b93810193909352600181015491830191909152600201546060820152919250838310156116a3576000600a816115ef8660016148bc565b8152602080820192909252604090810160002081516080810183528154600f81810b810b810b8352600160801b909104810b810b900b938101939093526001810154918301919091526002015460608083018290528501519192501461169d57826060015181606001516116639190614a66565b836040015182604001516116779190614a66565b6060850151611686908a614a66565b61169091906149b8565b61169a9190614912565b91505b506116f2565b438260600151146116f25760608201516116bd9043614a66565b60408301516116cc9042614a66565b60608401516116db9089614a66565b6116e591906149b8565b6116ef9190614912565b90505b61170b8282846040015161170691906148bc565b61348e565b9695505050505050565b600260005414156117385760405162461bcd60e51b8152600401610a4c90614754565b60026000556117473383612c7b565b6117635760405162461bcd60e51b8152600401610a4c906146a3565b600082815260076020908152604080832081516060810183528154600f90810b810b900b815260018201549381019390935260020154908201529062093a80806117ad85426148bc565b6117b79190614912565b6117c191906149b8565b9050428260200151116118055760405162461bcd60e51b815260206004820152600c60248201526b131bd8dac8195e1c1a5c995960a21b6044820152606401610a4c565b60008260000151600f0b136118505760405162461bcd60e51b8152602060048201526011602482015270139bdd1a1a5b99c81a5cc81b1bd8dad959607a1b6044820152606401610a4c565b816020015181116118a35760405162461bcd60e51b815260206004820152601f60248201527f43616e206f6e6c7920696e637265617365206c6f636b206475726174696f6e006044820152606401610a4c565b6118b1630784ce00426148bc565b8111156118d05760405162461bcd60e51b8152600401610a4c9061466c565b630784ce0082604001516118e491906148bc565b8111156119035760405162461bcd60e51b8152600401610a4c9061466c565b61191d8460008385600360006119188b612687565b61278c565b505060016000555050565b6001600160a01b03821633141561194f57634e487b7160e01b600052600160045260246000fd5b3360008181526015602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6119d3600080516020614b578339815191523361152a565b6119ef5760405162461bcd60e51b8152600401610a4c90614708565b8151835114611a105760405162461bcd60e51b8152600401610a4c9061472e565b8251845114611a315760405162461bcd60e51b8152600401610a4c9061472e565b60005b8451811015611ad357611ac0848281518110611a6057634e487b7160e01b600052603260045260246000fd5b6020026020010151848381518110611a8857634e487b7160e01b600052603260045260246000fd5b6020026020010151878481518110611ab057634e487b7160e01b600052603260045260246000fd5b6020026020010151600086612473565b5080611acb81614ac0565b915050611a34565b5050505050565b60026000541415611afd5760405162461bcd60e51b8152600401610a4c90614754565b6002600055611b0c3383612c7b565b611b285760405162461bcd60e51b8152600401610a4c906146a3565b60008281526007602090815260409182902082516060810184528154600f90810b810b900b8152600182015492810192909252600201549181019190915281611b8157634e487b7160e01b600052600160045260246000fd5b60008160000151600f0b13611ba85760405162461bcd60e51b8152600401610a4c906146d8565b42816020015111611bcb5760405162461bcd60e51b8152600401610a4c906145f2565b610e688383600084600260016119188a612687565b611beb60003361152a565b611c075760405162461bcd60e51b8152600401610a4c9061478b565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b611c3584848433612baf565b823b15611d5d57604051630a85bd0160e11b81526001600160a01b0384169063150b7a0290611c6e903390889087908790600401614593565b602060405180830381600087803b158015611c8857600080fd5b505af1925050508015611cb8575060408051601f3d908101601f19168201909252611cb591810190614383565b60015b611ad3573d808015611ce6576040519150601f19603f3d011682016040523d82523d6000602084013e611ceb565b606091505b508051611d555760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610a4c565b805181602001fd5b50505050565b6000610a1f82612687565b6000805b6001600160a01b038316600090815260126020526040902054811015611de0576001600160a01b0383166000908152601360209081526040808320848452909152902054611dc08142613943565b611dca90846148bc565b9250508080611dd890614ac0565b915050611d72565b50919050565b611e32600060405180606001604052806000600f0b815260200160008152602001600081525060405180606001604052806000600f0b8152602001600081526020016000815250612cde565b565b60055460405163c87b56dd60e01b8152600481018390526060916001600160a01b03169063c87b56dd9060240160006040518083038186803b158015611e7957600080fd5b505afa158015611e8d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610a1f919081019061439f565b611ebe82612687565b15611ef95760405162461bcd60e51b815260206004820152600b60248201526a199c9bdb481cdd185ad95960aa1b6044820152606401610a4c565b611f0281612687565b15611f3b5760405162461bcd60e51b81526020600482015260096024820152681d1bc81cdd185ad95960ba1b6044820152606401610a4c565b80821415611f765760405162461bcd60e51b81526020600482015260086024820152671cd85b59481b999d60c21b6044820152606401610a4c565b611f803383612c7b565b611fc05760405162461bcd60e51b8152602060048201526011602482015270199c9bdb481b9bdd08185c1c1c9bdd9959607a1b6044820152606401610a4c565b611fca3382612c7b565b6120085760405162461bcd60e51b815260206004820152600f60248201526e1d1bc81b9bdd08185c1c1c9bdd9959608a1b6044820152606401610a4c565b60008281526007602081815260408084208151606080820184528254600f90810b810b810b8352600180850154848801908152600295860154858801528a8a52978752858920865193840187528054830b830b830b8452908101549683018790529093015493810193909352805194519095929490910b921115612090578260200151612096565b83602001515b6040805160608082018352600080835260208084018281528486018381528d84526007835286842095518654600f9190910b6001600160801b03166001600160801b0319909116178655905160018601555160029094019390935583519182018452808252918101829052918201529091506121159087908690612cde565b61211e86613317565b6121308583838660046001600061278c565b505050505050565b6000828152600160208190526040909120015461215481613394565b610ef0838361340c565b6000600260005414156121835760405162461bcd60e51b8152600401610a4c90614754565b6002600055612196848433600186612473565b6001600055949350505050565b60006113aa8383613943565b6000818152600860205260408120544314156121cd57506000919050565b610a1f8242613943565b60006001600160e01b0319821663152a902d60e11b1480610a1f5750610a1f82613a2d565b6127106001600160601b038216111561226a5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610a4c565b6001600160a01b0382166122bc5760405162461bcd60e51b815260206004820152601960248201527822a921991c9c189d1034b73b30b634b2103932b1b2b4bb32b960391b6044820152606401610a4c565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600255565b6000818152601060205260409020546001600160a01b0316806123495760405162461bcd60e51b815260206004820152600c60248201526b06f776e6572206973203078360a41b6044820152606401610a4c565b806001600160a01b0316836001600160a01b031614156123975760405162461bcd60e51b81526020600482015260096024820152683737ba1037bbb732b960b91b6044820152606401610a4c565b6000828152601060209081526040808320546001600160a01b0385811685526015845282852033808752945291909320549216149060ff1681806123d85750805b6124155760405162461bcd60e51b815260206004820152600e60248201526d34b73b30b634b21039b2b73232b960911b6044820152606401610a4c565b60008481526011602052604080822080546001600160a01b0319166001600160a01b0389811691821790925591518793918716917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a45050505050565b6000600460009054906101000a90046001600160a01b03166001600160a01b031663f9fa21236040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156124c557600080fd5b505af11580156124d9573d6000803e3d6000fd5b50505050600062093a808087426124f091906148bc565b6124fa9190614912565b61250491906149b8565b9050600087116125265760405162461bcd60e51b8152600401610a4c90614649565b4281116125755760405162461bcd60e51b815260206004820152601b60248201527f43616e206f6e6c79206c6f636b20696e207468652066757475726500000000006044820152606401610a4c565b612583630784ce00426148bc565b8111156125a25760405162461bcd60e51b8152600401610a4c9061466c565b600f600081546125b190614ac0565b90915550600f546125c28682613a62565b50612621818984600760008681526020019081526020016000206040518060600160405290816000820160009054906101000a9004600f0b600f0b600f0b81526020016001820154815260200160028201548152505060018a8a61278c565b600e5461262e8242613943565b101561267c5760405162461bcd60e51b815260206004820152601a60248201527f6d696e20616d6f756e7420666f72206e6674206e6f74206d65740000000000006044820152606401610a4c565b979650505050505050565b6000600460009054906101000a90046001600160a01b03166001600160a01b0316635ebaf1db6040518163ffffffff1660e01b815260040160206040518083038186803b1580156126d757600080fd5b505afa1580156126eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061270f9190614054565b6001600160a01b031663baa51f86836040518263ffffffff1660e01b815260040161273c91815260200190565b60206040518083038186803b15801561275457600080fd5b505afa158015612768573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a1f919061430f565b600480546040805163f9fa212360e01b815290516001600160a01b039092169263f9fa212392828201926000929082900301818387803b1580156127cf57600080fd5b505af11580156127e3573d6000803e3d6000fd5b505060065486925090506127f788826148bc565b6006556040805160608101825260008082526020820181905291810191909152825160208085015190830152600f90810b900b815282518990849061283d90839061486b565b600f90810b900b905250871561285557602083018890525b600186600481111561287757634e487b7160e01b600052602160045260246000fd5b1415612884574260408401525b60008a81526007602090815260409182902085518154600f9190910b6001600160801b03166001600160801b0319909116178155908501516001820155908401516002909101556128d68a8285612cde565b3389158015906129065750600487600481111561290357634e487b7160e01b600052602160045260246000fd5b14155b801561290f5750855b15612a32576004805460408051631ef0061b60e11b815290516001600160a01b0390921692633de00c36928282019260209290829003018186803b15801561295657600080fd5b505afa15801561296a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061298e9190614054565b6040516323b872dd60e01b81526001600160a01b038381166004830152306024830152604482018d905291909116906323b872dd90606401602060405180830381600087803b1580156129e057600080fd5b505af11580156129f4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a18919061430f565b612a3257634e487b7160e01b600052600160045260246000fd5b8415612b12576004805460408051635ebaf1db60e01b815290516001600160a01b0390921692635ebaf1db928282019260209290829003018186803b158015612a7a57600080fd5b505afa158015612a8e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ab29190614054565b6001600160a01b031663630b4b908c6040518263ffffffff1660e01b8152600401612adf91815260200190565b600060405180830381600087803b158015612af957600080fd5b505af1158015612b0d573d6000803e3d6000fd5b505050505b8360200151816001600160a01b03167fff04ccafc360e16b67d682d17bd9503c4c6b9a131f6be6325762dc9ffc7de6248d8d8b42604051612b5694939291906147b3565b60405180910390a37f5e2aa66efd74cce82b21852e317e5490d9ecc9e6bb953ae24d90851258cc2f5c83612b8a8c826148bc565b6040805192835260208301919091520160405180910390a15050505050505050505050565b612bb882612687565b15612bd55760405162461bcd60e51b8152600401610a4c90614629565b612bdf8183612c7b565b612c215760405162461bcd60e51b81526020600482015260136024820152723737ba1030b8383937bb32b21039b2b73232b960691b6044820152606401610a4c565b612c2b8483613ac1565b612c358483613b34565b612c3f8383613bc3565b6000828152600860205260408082204390555183916001600160a01b038087169290881691600080516020614b7783398151915291a450505050565b60008181526010602090815260408083205460118352818420546001600160a01b039182168086526015855283862088841680885295529285205492938085149392909116149060ff168280612cce5750815b8061267c57509695505050505050565b612ce6613f8b565b612cee613f8b565b60095460009081908715612e2257428760200151118015612d16575060008760000151600f0b135b15612d63578651612d2c90630784ce00906148d4565b600f90810b900b602080870191909152870151612d4a904290614a66565b8560200151612d599190614926565b600f90810b900b85525b428660200151118015612d7d575060008660000151600f0b135b15612dca578551612d9390630784ce00906148d4565b600f90810b900b602080860191909152860151612db1904290614a66565b8460200151612dc09190614926565b600f90810b900b84525b6020808801516000908152600d8252604090205490870151600f9190910b935015612e2257866020015186602001511415612e0757829150612e22565b6020808701516000908152600d9091526040902054600f0b91505b604080516080810182526000808252602082015242918101919091524360608201528115612e9f57506000818152600a602090815260409182902082516080810184528154600f81810b810b810b8352600160801b909104810b810b900b9281019290925260018101549282019290925260029091015460608201525b604081015181600042831015612eec576040840151612ebe9042614a66565b6060850151612ecd9043614a66565b612edf90670de0b6b3a76400006149b8565b612ee99190614912565b90505b600062093a80612efc8186614912565b612f0691906149b8565b905060005b60ff81101561308f57612f2162093a80836148bc565b9150600042831115612f3557429250612f49565b506000828152600d6020526040902054600f0b5b612f538684614a66565b8760200151612f629190614926565b87518890612f719083906149d7565b600f90810b900b905250602087018051829190612f8f90839061486b565b600f90810b810b90915288516000910b12159050612fac57600087525b60008760200151600f0b1215612fc457600060208801525b60408088018490528501519295508592670de0b6b3a764000090612fe89085614a66565b612ff290866149b8565b612ffc9190614912565b856060015161300b91906148bc565b606088015261301b6001896148bc565b975042831415613031575043606087015261308f565b6000888152600a60209081526040918290208951918a0151600f90810b6001600160801b03908116600160801b029390910b1691909117815590880151600182015560608801516002909101555061308881614ac0565b9050612f0b565b505060098590558b1561312057886020015188602001516130b091906149d7565b846020018181516130c1919061486b565b600f90810b900b905250885188516130d991906149d7565b845185906130e890839061486b565b600f90810b810b90915260208601516000910b1215905061310b57600060208501525b60008460000151600f0b121561312057600084525b6000858152600a6020908152604091829020865191870151600f90810b6001600160801b03908116600160801b029390910b1691909117815590850151600182015560608501516002909101558b1561330957428b6020015111156131e457602089015161318e908861486b565b96508a602001518a6020015114156131b25760208801516131af90886149d7565b96505b60208b8101516000908152600d9091526040902080546001600160801b0319166001600160801b03600f8a900b161790555b428a602001511115613243578a602001518a60200151111561324357602088015161320f90876149d7565b60208b8101516000908152600d9091526040902080546001600160801b0319166001600160801b03600f84900b1617905595505b60008c8152600c602052604081205461325d9060016148bc565b905080600c60008f815260200190815260200160002081905550428960400181815250504389606001818152505088600b60008f815260200190815260200160002082633b9aca0081106132c157634e487b7160e01b600052603260045260246000fd5b82516020840151600f90810b6001600160801b03908116600160801b029290910b16176003919091029190910190815560408201516001820155606090910151600290910155505b505050505050505050505050565b6133213382612c7b565b61333d5760405162461bcd60e51b8152600401610a4c906146a3565b6000818152601060205260408120546001600160a01b03169061336090836122f5565b61336a3383613b34565b60405182906000906001600160a01b03841690600080516020614b77833981519152908390a45050565b61339e8133613c50565b50565b6133ab828261152a565b610a5f5760008281526001602081815260408084206001600160a01b0386168086529252808420805460ff19169093179092559051339285917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d9190a45050565b613416828261152a565b15610a5f5760008281526001602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6001600160a01b031660009081526012602052604090205490565b600080839050600062093a808083604001516134aa9190614912565b6134b491906149b8565b905060005b60ff811015613570576134cf62093a80836148bc565b91506000858311156134e3578592506134f7565b506000828152600d6020526040902054600f0b5b60408401516135069084614a66565b84602001516135159190614926565b845185906135249083906149d7565b600f90810b900b9052508286141561353c5750613570565b808460200181815161354e919061486b565b600f90810b900b905250506040830182905261356981614ac0565b90506134b9565b5060008260000151600f0b121561358657600082525b50516001600160801b03169392505050565b6000438211156135b857634e487b7160e01b600052600160045260246000fd5b6000838152600c6020526040812054815b608081101561366a578183106135de5761366a565b600060026135ec84866148bc565b6135f79060016148bc565b6136019190614912565b6000888152600b60205260409020909150869082633b9aca00811061363657634e487b7160e01b600052603260045260246000fd5b60030201600201541161364b57809350613659565b613656600182614a66565b92505b5061366381614ac0565b90506135c9565b506000858152600b6020526040812083633b9aca00811061369b57634e487b7160e01b600052603260045260246000fd5b60408051608081018252600392909202929092018054600f81810b810b810b8452600160801b909104810b810b900b6020830152600181015492820192909252600290910154606082015260095490915060006136f887836138b9565b6000818152600a6020908152604080832081516080810183528154600f81810b810b810b8352600160801b909104810b810b900b9381019390935260018101549183019190915260020154606082015291925080848410156137e7576000600a816137648760016148bc565b8152602080820192909252604090810160002081516080810183528154600f81810b810b810b8352600160801b909104810b810b900b938101939093526001810154918301919091526002015460608083018290528601519192506137c99190614a66565b9250836040015181604001516137df9190614a66565b91505061380b565b60608301516137f69043614a66565b91508260400151426138089190614a66565b90505b60408301518215613848578284606001518c6138279190614a66565b61383190846149b8565b61383b9190614912565b61384590826148bc565b90505b60408701516138579082614a66565b87602001516138669190614926565b875188906138759083906149d7565b600f90810b810b90915288516000910b1290506138a757505093516001600160801b03169650610a1f95505050505050565b60009950505050505050505050610a1f565b60008082815b6080811015613939578183106138d457613939565b600060026138e284866148bc565b6138ed9060016148bc565b6138f79190614912565b6000818152600a6020526040902060020154909150871061391a57809350613928565b613925600182614a66565b92505b5061393281614ac0565b90506138bf565b5090949350505050565b6000828152600c602052604081205480613961576000915050610a1f565b6000848152600b6020526040812082633b9aca00811061399157634e487b7160e01b600052603260045260246000fd5b60408051608081018252600392909202929092018054600f81810b810b810b8452600160801b909104810b810b900b6020830152600181015492820183905260020154606082015291506139e59085614a27565b81602001516139f49190614926565b81518290613a039083906149d7565b600f90810b810b90915282516000910b12159050613a2057600081525b51600f0b9150610a1f9050565b60006001600160e01b03198216637965db0b60e01b1480610a1f57506301ffc9a760e01b6001600160e01b0319831614610a1f565b60006001600160a01b038316613a8857634e487b7160e01b600052600160045260246000fd5b613a928383613bc3565b60405182906001600160a01b03851690600090600080516020614b77833981519152908290a450600192915050565b6000818152601060205260409020546001600160a01b03838116911614613af857634e487b7160e01b600052600160045260246000fd5b6000818152601160205260409020546001600160a01b031615610a5f57600090815260116020526040902080546001600160a01b031916905550565b6000818152601060205260409020546001600160a01b03838116911614613b6b57634e487b7160e01b600052600160045260246000fd5b600081815260106020526040902080546001600160a01b0319169055613b918282613cb4565b6001600160a01b0382166000908152601260205260408120805460019290613bba908490614a66565b90915550505050565b6000818152601060205260409020546001600160a01b031615613bf657634e487b7160e01b600052600160045260246000fd5b600081815260106020526040902080546001600160a01b0319166001600160a01b038416179055613c278282613d66565b6001600160a01b0382166000908152601260205260408120805460019290613bba9084906148bc565b613c5a828261152a565b610a5f57613c72816001600160a01b03166014613daa565b613c7d836020613daa565b604051602001613c8e929190614524565b60408051601f198184030181529082905262461bcd60e51b8252610a4c916004016145df565b60006001613cc184613473565b613ccb9190614a66565b60008381526014602052604090205490915080821415613d1b576001600160a01b038416600090815260136020908152604080832085845282528083208390558583526014909152812055611d5d565b6001600160a01b039390931660009081526013602090815260408083209383529281528282208054868452848420819055835260149091528282209490945592839055908252812055565b6000613d7183613473565b6001600160a01b039093166000908152601360209081526040808320868452825280832085905593825260149052919091209190915550565b60606000613db98360026149b8565b613dc49060026148bc565b6001600160401b03811115613de957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015613e13576020820181803683370190505b509050600360fc1b81600081518110613e3c57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110613e7957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000613e9d8460026149b8565b613ea89060016148bc565b90505b6001811115613f3c576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110613eea57634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110613f0e57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93613f3581614aa9565b9050613eab565b5083156113aa5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610a4c565b60405180608001604052806000600f0b81526020016000600f0b815260200160008152602001600081525090565b600082601f830112613fc9578081fd5b81356020613fde613fd983614821565b6147f1565b80838252828201915082860187848660051b8901011115613ffd578586fd5b855b8581101561401b57813584529284019290840190600101613fff565b5090979650505050505050565b803561403381614b32565b919050565b600060208284031215614049578081fd5b81356113aa81614b1d565b600060208284031215614065578081fd5b81516113aa81614b1d565b60008060408385031215614082578081fd5b823561408d81614b1d565b9150602083013561409d81614b1d565b809150509250929050565b6000806000606084860312156140bc578081fd5b83356140c781614b1d565b925060208401356140d781614b1d565b929592945050506040919091013590565b600080600080608085870312156140fd578081fd5b843561410881614b1d565b9350602085013561411881614b1d565b92506040850135915060608501356001600160401b03811115614139578182fd5b8501601f81018713614149578182fd5b8035614157613fd982614844565b81815288602083850101111561416b578384fd5b81602084016020830137908101602001929092525092959194509250565b6000806040838503121561419b578182fd5b82356141a681614b1d565b9150602083013561409d81614b32565b600080604083850312156141c8578182fd5b82356141d381614b1d565b946020939093013593505050565b600080604083850312156141f3578182fd5b82356141fe81614b1d565b915060208301356001600160601b038116811461409d578182fd5b6000806000806080858703121561422e578182fd5b84356001600160401b0380821115614244578384fd5b818701915087601f830112614257578384fd5b81356020614267613fd983614821565b8083825282820191508286018c848660051b8901011115614286578889fd5b8896505b848710156142b157803561429d81614b1d565b83526001969096019591830191830161428a565b50985050880135925050808211156142c7578384fd5b6142d388838901613fb9565b945060408701359150808211156142e8578384fd5b506142f587828801613fb9565b92505061430460608601614028565b905092959194509250565b600060208284031215614320578081fd5b81516113aa81614b32565b60006020828403121561433c578081fd5b5035919050565b60008060408385031215614355578182fd5b82359150602083013561409d81614b1d565b600060208284031215614378578081fd5b81356113aa81614b40565b600060208284031215614394578081fd5b81516113aa81614b40565b6000602082840312156143b0578081fd5b81516001600160401b038111156143c5578182fd5b8201601f810184136143d5578182fd5b80516143e3613fd982614844565b8181528560208385010111156143f7578384fd5b614408826020830160208601614a7d565b95945050505050565b600060208284031215614422578081fd5b5051919050565b6000806040838503121561443b578182fd5b50508035926020909101359150565b60008060006060848603121561445e578081fd5b8335925060208401359150604084013561447781614b1d565b809150509250925092565b60008060008060808587031215614497578182fd5b843593506020850135925060408501356144b081614b1d565b915060608501356144c081614b32565b939692955090935050565b6000806000606084860312156144df578081fd5b8335925060208401359150604084013561447781614b32565b60008151808452614510816020860160208601614a7d565b601f01601f19169290920160200192915050565b76020b1b1b2b9b9a1b7b73a3937b61d1030b1b1b7bab73a1604d1b815260008351614556816017850160208801614a7d565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351614587816028840160208801614a7d565b01602801949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061170b908301846144f8565b6001600160a01b03929092168252602082015260400190565b6020815260006113aa60208301846144f8565b6020808252601b908201527f43616e6e6f742061646420746f2065787069726564206c6f636b2e0000000000604082015260600190565b6020808252600690820152651cdd185ad95960d21b604082015260600190565b602080825260099082015268076616c7565203d20360bc1b604082015260600190565b6020808252601e908201527f566f74696e67206c6f636b2063616e2062652034207965617273206d61780000604082015260600190565b6020808252818101527f63616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564604082015260600190565b602080825260169082015275139bc8195e1a5cdd1a5b99c81b1bd8dac8199bdd5b9960521b604082015260600190565b6020808252600c908201526b3737ba1036b4b3b930ba37b960a11b604082015260600190565b6020808252600c908201526b696e76616c6964206461746160a01b604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252600e908201526d6e6f7420676f7665726e616e636560901b604082015260600190565b8481526020810184905260808101600584106147df57634e487b7160e01b600052602160045260246000fd5b60408201939093526060015292915050565b604051601f8201601f191681016001600160401b038111828210171561481957614819614b07565b604052919050565b60006001600160401b0382111561483a5761483a614b07565b5060051b60200190565b60006001600160401b0382111561485d5761485d614b07565b50601f01601f191660200190565b6000600f82810b9084900b828212801560016001607f1b038490038313161561489657614896614adb565b60016001607f1b031983900382128116156148b3576148b3614adb565b50019392505050565b600082198211156148cf576148cf614adb565b500190565b600081600f0b83600f0b806148eb576148eb614af1565b60016001607f1b031982146000198214161561490957614909614adb565b90059392505050565b60008261492157614921614af1565b500490565b6000600f82810b9084900b60016001607f1b038382138484138082168484048611161561495557614955614adb565b60016001607f1b03198685128281168783058712161561497757614977614adb565b87871292508582058712848416161561499257614992614adb565b858505871281841616156149a8576149a8614adb565b5050509290910295945050505050565b60008160001904831182151516156149d2576149d2614adb565b500290565b6000600f82810b9084900b828112801560016001607f1b0319830184121615614a0257614a02614adb565b60016001607f1b0382018313811615614a1d57614a1d614adb565b5090039392505050565b60008083128015600160ff1b850184121615614a4557614a45614adb565b6001600160ff1b0384018313811615614a6057614a60614adb565b50500390565b600082821015614a7857614a78614adb565b500390565b60005b83811015614a98578181015183820152602001614a80565b83811115611d5d5750506000910152565b600081614ab857614ab8614adb565b506000190190565b6000600019821415614ad457614ad4614adb565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461339e57600080fd5b801515811461339e57600080fd5b6001600160e01b03198116811461339e57600080fdfe9d7b1cf62e8376e2ef102e20d4e487b829ff44d58ddb1f416ee01cf2ed26829eddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220a2b02e15ffd0ab2e016d186d503a65eafba96e9f9f625a694401261f16f9123f64736f6c63430008040033

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

0000000000000000000000002684861ba9dada685a11c4e9e5aed8630f08afe000000000000000000000000067c569f960c1cc0b9a7979a851f5a67018c5a3b00000000000000000000000009d348281e16218cd8ede9cd8a1bca74e89b410e80000000000000000000000000000000000000000000000000000000000002710

-----Decoded View---------------
Arg [0] : _registry (address): 0x2684861Ba9dadA685a11C4e9E5aED8630f08afe0
Arg [1] : _royaltyRcv (address): 0x67c569F960C1Cc0B9a7979A851f5a67018c5A3b0
Arg [2] : _renderingContract (address): 0x9d348281e16218Cd8EDE9Cd8a1BcA74E89B410e8
Arg [3] : _royaltyFeeNumerator (uint96): 10000

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000002684861ba9dada685a11c4e9e5aed8630f08afe0
Arg [1] : 00000000000000000000000067c569f960c1cc0b9a7979a851f5a67018c5a3b0
Arg [2] : 0000000000000000000000009d348281e16218cd8ede9cd8a1bca74e89b410e8
Arg [3] : 0000000000000000000000000000000000000000000000000000000000002710


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.