Token Binary ConkPunks

 

Overview ERC-721

Total Supply:
555 BCP

Holders:
161 addresses

Transfers:
-

Loading
[ Download CSV Export  ] 
Loading
[ Download CSV Export  ] 
Loading

Click here to update the token ICO / general information
# Exchange Pair Price  24H Volume % Volume
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
BinaryConkPunks

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 555 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity Standard Json-Input format)

File 1 of 19 : BinaryConkPunks.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165Storage.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";

// coded by Crypto Tester: https://twitter.com/crypto_tester_

contract BinaryConkPunks is ERC721,
  ERC721Enumerable,
  ERC721URIStorage,
  Ownable,
  AccessControl,
  ERC165Storage,
  IERC2981 {

  IERC721 public immutable CONKPUNKS;

  uint256 public adminMintCount;
  uint256 public airdropMintCount;
  uint256 public mintCount;
  uint256 public price = 20 * 1e18;
  uint256 public supply = 555;
  uint256 public stopMintingAt = 1000;
  uint256 public royaltyFee = 80; // 8%
  address public royaltyAddress;
  address public adminAddress = 0xb495023D8Eb9526D8EC346703f2CFf12F2A6963d;
  bool public mintingEnabled;
  bool public conkPunksHolderMintingEnabled = true;
  string public baseUrl;
  enum MintType { PUBLIC, ADMIN, AIRDROP }

  address[] public payees;
  uint256[] public allocPoints;
  uint256 public totalAllocPoints;

  mapping(uint256 => uint256) private tokenMatrix;

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

  event PublicMint(address addr, uint256 tokenId);
  event ConkPunksHoldersMint(address addr, uint256 tokenId);
  event AdminMint(address addr, uint256 tokenId);
  event AirdropMint(address addr, uint256 tokenId);
  event RandomizationUpdate(uint256 mintCount, uint256 startFrom);
  event UpdateBaseUrl(string newBaseUrl);
  event UpdateTokenURI(uint256 id, string newTokenURI);
  event UintPropertyChange(string param, uint256 value);
  event BoolPropertyChange(string param, bool value);
  event AddressPropertyChange(string param, address value);

  bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;
  bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;
  bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;
  bytes4 private constant _INTERFACE_ID_ERC2981 = 0x2a55205a;

  constructor(address _conkPunks) ERC721("Binary ConkPunks", "BCP") {
    CONKPUNKS = IERC721(_conkPunks);

    // ERC721 interface
    _registerInterface(_INTERFACE_ID_ERC721);
    _registerInterface(_INTERFACE_ID_ERC721_METADATA);
    _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);

    // Royalties interface
    _registerInterface(_INTERFACE_ID_ERC2981);
    
    _setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
    _setupRole(ADMIN_ROLE, msg.sender);
    _setupRole(ADMIN_ROLE, adminAddress);

    // Special tokens reserved & minted directly to the adminAddress
    uint16[11] memory specialIds = [52, 82, 100, 115, 128, 170, 172, 178, 263, 286, 516];
    for (uint i = 0; i < specialIds.length; i++) {
      _specificMint(adminAddress, specialIds[i]);
      emit AdminMint(adminAddress, specialIds[i]);
    }
  }

  modifier onlyAdmin() {
    require(hasRole(ADMIN_ROLE, msg.sender), "ADMIN_ROLE_REQUIRED");
    _;
  }

  function mint(uint256 quantity) external payable {
    require(mintingEnabled, "MINTING_DISABLED");
    require(mintCount + quantity <= stopMintingAt, "QUANTITY_TOO_HIGH");
    require(msg.value == price * quantity, "WRONG_AMOUNT");
    _doMint(quantity, msg.sender, MintType.PUBLIC);
    _splitPayment();
  }

  function adminMint(uint256 quantity, address to) external onlyAdmin {
    _adminMint(quantity, to, MintType.ADMIN);
  }

  function batchAirdrop(address [] calldata addresses) external onlyAdmin {
    for (uint256 i = 0; i < addresses.length; i++) {
      _adminMint(1, addresses[i], MintType.AIRDROP);
    }
  }

  function airdropMint(uint256 quantity, address to) external onlyAdmin {
    _adminMint(quantity, to, MintType.AIRDROP);
  }

  function _adminMint(uint256 quantity, address to, MintType mintType) private {
    _doMint(quantity, to, mintType);
  }

  function conkPunksHolderMint(uint256 tokenId) external payable {
    require(mintCount < supply, "MINTED_OUT");
    require(conkPunksHolderMintingEnabled, "CONK_PUNKS_HOLDERS_MINTING_DISABLED");
    require(msg.value == price, "WRONG_AMOUNT");
    // Only the owner of the original CONKPUNKS tokenId can mint the same tokenId of this collection
    require(CONKPUNKS.balanceOf(msg.sender) > 0 && CONKPUNKS.ownerOf(tokenId) == msg.sender, "NOT_TOKEN_ID_OWNER");
    _specificMint(msg.sender, tokenId);
    _splitPayment();
    emit ConkPunksHoldersMint(msg.sender, tokenId);
  }

  function specificMint(uint256 tokenId, address to) external onlyAdmin {
    _specificMint(to, tokenId);
    emit AdminMint(to, tokenId);
  }

  function _specificMint(address to, uint256 tokenId) private {
    require(mintCount < supply, "MINTED_OUT");
    require(tokenId < supply, "ID_TOO_HIGH");
    uint256 maxIndex = supply - mintCount;
    _updateTokenMatrix(maxIndex, tokenId);
    _mint(to, tokenId);
    _setTokenURI(tokenId, _endOfURI(tokenId));
    mintCount++;
    adminMintCount++;
  }

  function _doMint(uint256 quantity, address to, MintType mintType) private {
    require(mintCount < supply, "MINTED_OUT");
    require(mintCount + quantity <= supply, "QUANTITY_TOO_HIGH");
    for (uint256 i = 0; i < quantity; i++) {
      uint256 tokenId = _getNextRandomTokenId();
      _mint(to, tokenId);
      _setTokenURI(tokenId, _endOfURI(tokenId));
      mintCount++;

      if (mintType == MintType.PUBLIC) {
        emit PublicMint(to, tokenId);
      } else if (mintType == MintType.ADMIN) {
        emit AdminMint(to, tokenId);
      } else if (mintType == MintType.AIRDROP) {
        emit AirdropMint(to, tokenId);
      }

      if (mintType == MintType.ADMIN) {
        adminMintCount++;
      }

      if (mintType == MintType.AIRDROP) {
        airdropMintCount++;
      }

      _handleStopMintingAt();
    }
  }

  function _handleStopMintingAt() private {
    if (mintCount == stopMintingAt)
    {
      mintingEnabled = false;
      emit BoolPropertyChange("mintingEnabled", false);
      conkPunksHolderMintingEnabled = false;
      emit BoolPropertyChange("conkPunksHolderMintingEnabled", false);
    }
  }

  function _getNextRandomTokenId() private returns (uint256) {
    uint256 maxIndex = supply - mintCount;
    uint256 random = _getRandomNumber(maxIndex);
    uint256 randomNr = 0;
    if (tokenMatrix[random] == 0) {
      randomNr = random;
    } else {
      randomNr = tokenMatrix[random];
    }
    _updateTokenMatrix(maxIndex, random);
    return randomNr;
  }

  function _updateTokenMatrix(uint256 maxIndex, uint256 random) private {
    if (tokenMatrix[maxIndex - 1] == 0) {
      tokenMatrix[random] = maxIndex - 1;
    } else {
      tokenMatrix[random] = tokenMatrix[maxIndex - 1];
    }
  }

  function _getRandomNumber(uint256 maxNumber) private view returns (uint256) {
    return uint256(
      keccak256(
        abi.encodePacked(
          msg.sender,
          block.coinbase,
          block.difficulty,
          block.gaslimit,
          block.timestamp
        )
      )
    ) % maxNumber;
  }

  function setMintingEnabled(bool value) external onlyAdmin {
    mintingEnabled = value;
    emit BoolPropertyChange("mintingEnabled", value);
  }

  function setConkPunksHolderMintingEnabled(bool value) external onlyAdmin {
    conkPunksHolderMintingEnabled = value;
    emit BoolPropertyChange("conkPunksHolderMintingEnabled", value);
  }

  function setStopMintingAt(uint256 value) external onlyAdmin {
    stopMintingAt = value;
    emit UintPropertyChange("stopMintingAt", value);
  }

  function setPrice(uint256 priceInEth) external onlyAdmin {
    price = priceInEth * 1e18;
    emit UintPropertyChange("price", price);
  }

  function setPriceInWei(uint256 priceInWei) external onlyAdmin {
    price = priceInWei;
    emit UintPropertyChange("price", price);
  }

  function setRoyaltyAddress(address addr) external onlyAdmin {
    royaltyAddress = addr;
    emit AddressPropertyChange("royaltyAddress", addr);
  }

  function setRoyaltyFee(uint256 value) external onlyAdmin {
    royaltyFee = value;
    emit UintPropertyChange("royaltyFee", value);
  }

  function setBaseUrl(string calldata url) external onlyAdmin {
    baseUrl = url;
    emit UpdateBaseUrl(url);
  }

  function setTokenURI(uint256 id, string calldata dotJson) external onlyAdmin {
    _setTokenURI(id, dotJson);
    emit UpdateTokenURI(id, dotJson);
  }

  function addPayee(address payee, uint256 points) external onlyAdmin {
    require(payee != address(0), "INVALID_ADDRESS");
    payees.push(payee);
    allocPoints.push(points);
    totalAllocPoints += points;
  }

  function editPayee(uint256 id, address payee, uint256 points) external onlyAdmin {
    require(id < payees.length, "INVALID_ID");
    totalAllocPoints = totalAllocPoints - allocPoints[id] + points;
    payees[id] = payee;
    allocPoints[id] = points;
  }

  function _splitPayment() internal {
    require(msg.value > 0, "INSUFFICIENT_AMOUNT");
    for (uint256 x = 0; x < payees.length; x++) {
      uint256 xAlloc = allocPoints[x];
      if (xAlloc <= 0) continue;

      uint256 amountForRecipient = msg.value * xAlloc / totalAllocPoints;
      (bool sent, ) = payees[x].call{value: amountForRecipient}("");
      require(sent, "FAILED_SENDING_FUNDS");
    }
  }

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

  function _uint2str(uint256 nr) internal pure returns (string memory str) {
    if (nr == 0) {
      return "0";
    }
    uint256 j = nr;
    uint256 length;
    while (j != 0) {
      length++;
      j /= 10;
    }
    bytes memory bstr = new bytes(length);
    uint256 k = length;
    j = nr;
    while (j != 0) {
      bstr[--k] = bytes1(uint8(48 + j % 10));
      j /= 10;
    }
    str = string(bstr);
  }

  function _endOfURI(uint256 nr) internal pure returns (string memory jsonString) {
    string memory number = _uint2str(nr);
    string memory dotJson = ".json";
    jsonString = string(abi.encodePacked(number, dotJson));
  }

  function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) {
    super._beforeTokenTransfer(from, to, tokenId);
  }

  function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) {
    super._burn(tokenId);
  }

  function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) {
    return super.tokenURI(tokenId);
  }

  function royaltyInfo(uint256, uint256 salePrice) external view override(IERC2981) returns (address receiver, uint256 royaltyAmount) {
    receiver = royaltyAddress;
    royaltyAmount = salePrice * royaltyFee / 1000; // royalty is set with 2 decimals, thus divide by 1000 instead of 100
  }

  function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable, ERC165Storage, IERC165, AccessControl) returns (bool) {
    return super.supportsInterface(interfaceId);
  }

  function sweepEth() external onlyAdmin {
    uint256 balance = address(this).balance;
    require(balance > 0, "NO_FUNDS_TO_WITHDRAW");
    (bool sent, ) = owner().call{value: balance}("");
    require(sent, "FAILED_SENDING_FUNDS");
  }

  function sweepErc20(IERC20 token) external onlyAdmin {
    uint256 balance = token.balanceOf(address(this));
    require(balance > 0, "NO_FUNDS_TO_WITHDRAW");
    token.transfer(owner(), balance);
  }

  receive() external payable {}

  fallback() external payable {}
}

File 2 of 19 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

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

File 3 of 19 : AccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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.
     *
     * May emit a {RoleGranted} event.
     */
    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.
     *
     * May emit a {RoleRevoked} event.
     */
    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`.
     *
     * May emit a {RoleRevoked} event.
     */
    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.
     *
     * May emit a {RoleGranted} event.
     *
     * [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.
     *
     * May emit a {RoleGranted} event.
     */
    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.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 19 : 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 6 of 19 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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

File 7 of 19 : 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 8 of 19 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev See {ERC721-_burn}. This override additionally checks to see if a
     * token-specific URI was set for the token, and if so, it deletes the token URI from
     * the storage mapping.
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

File 9 of 19 : ERC165Storage.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165Storage.sol)

pragma solidity ^0.8.0;

import "./ERC165.sol";

/**
 * @dev Storage based implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165Storage is ERC165 {
    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

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

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

File 10 of 19 : 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 11 of 19 : 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 12 of 19 : 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 13 of 19 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

File 14 of 19 : 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 19 : 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 19 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 17 of 19 : 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 18 of 19 : 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 19 of 19 : 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_conkPunks","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"param","type":"string"},{"indexed":false,"internalType":"address","name":"value","type":"address"}],"name":"AddressPropertyChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"addr","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"AdminMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"addr","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"AirdropMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"param","type":"string"},{"indexed":false,"internalType":"bool","name":"value","type":"bool"}],"name":"BoolPropertyChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"addr","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ConkPunksHoldersMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"addr","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"PublicMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"mintCount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"startFrom","type":"uint256"}],"name":"RandomizationUpdate","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":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":false,"internalType":"string","name":"param","type":"string"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"UintPropertyChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"newBaseUrl","type":"string"}],"name":"UpdateBaseUrl","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"string","name":"newTokenURI","type":"string"}],"name":"UpdateTokenURI","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CONKPUNKS","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"payee","type":"address"},{"internalType":"uint256","name":"points","type":"uint256"}],"name":"addPayee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"adminAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"adminMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"airdropMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"airdropMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"allocPoints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUrl","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"batchAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"conkPunksHolderMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"conkPunksHolderMintingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"address","name":"payee","type":"address"},{"internalType":"uint256","name":"points","type":"uint256"}],"name":"editPayee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"payees","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":[],"name":"royaltyAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"url","type":"string"}],"name":"setBaseUrl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setConkPunksHolderMintingEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setMintingEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"priceInEth","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"priceInWei","type":"uint256"}],"name":"setPriceInWei","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setRoyaltyAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setRoyaltyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setStopMintingAt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"string","name":"dotJson","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"specificMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopMintingAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"sweepErc20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sweepEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","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":"totalAllocPoints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526801158e460913d0000060115561022b6012556103e8601355605060145560168054600161ff0160a01b031916750100b495023d8eb9526d8ec346703f2cff12f2a6963d1790553480156200005857600080fd5b5060405162005828380380620058288339810160408190526200007b9162000c97565b6040518060400160405280601081526020016f42696e61727920436f6e6b50756e6b7360801b8152506040518060400160405280600381526020016204243560ec1b8152508160009081620000d1919062000d6d565b506001620000e0828262000d6d565b505050620000fd620000f7620002d560201b60201c565b620002d9565b6001600160a01b0381166080526200011c6380ac58cd60e01b6200032b565b6200012e635b5e139f60e01b6200032b565b6200014063780e9d6360e01b6200032b565b6200015263152a902d60e11b6200032b565b6200015f600033620003b0565b6200017a6000805160206200580883398151915233620003b0565b601654620001a29060008051602062005808833981519152906001600160a01b0316620003b0565b604080516101608101825260348152605260208201526064918101919091526073606082015260808082015260aa60a082015260ac60c082015260b260e082015261010761010082015261011e61012082015261020461014082015260005b600b811015620002cc5760165462000240906001600160a01b03168383600b811062000231576200023162000e39565b602002015161ffff16620003c0565b6016547f90363c347ac279caf3ee0f1a07c9c17f19f56b1e394697a1d23b056c2c5bb36b906001600160a01b03168383600b811062000283576200028362000e39565b6020020151604051620002af9291906001600160a01b0392909216825261ffff16602082015260400190565b60405180910390a180620002c38162000e65565b91505062000201565b50505062000f74565b3390565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160e01b031980821690036200038b5760405162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e746572666163652069640000000060448201526064015b60405180910390fd5b6001600160e01b0319166000908152600d60205260409020805460ff19166001179055565b620003bc8282620004ba565b5050565b60125460105410620004025760405162461bcd60e51b815260206004820152600a60248201526913525395115117d3d55560b21b604482015260640162000382565b6012548110620004435760405162461bcd60e51b815260206004820152600b60248201526a09288bea89e9ebe90928e960ab1b604482015260640162000382565b600060105460125462000457919062000e81565b905062000465818362000544565b620004718383620005c1565b6200048782620004818162000717565b62000777565b60108054906000620004998362000e65565b9091555050600e8054906000620004b08362000e65565b9190505550505050565b620004c6828262000813565b620003bc576000828152600c602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620005003390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b601b60006200055560018562000e81565b8152602001908152602001600020546000036200058c576200057960018362000e81565b6000828152601b60205260409020555050565b601b60006200059d60018562000e81565b81526020808201929092526040908101600090812054848252601b90935220555050565b6001600160a01b038216620006195760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640162000382565b6000818152600260205260409020546001600160a01b031615620006805760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640162000382565b6200068e6000838362000840565b6001600160a01b0382166000908152600360205260408120805460019290620006b990849062000e97565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60606000620007268362000858565b9050600060405180604001604052806005815260200164173539b7b760d91b815250905081816040516020016200075f92919062000edf565b60405160208183030381529060405292505050919050565b6000828152600260205260409020546001600160a01b0316620007f45760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b606482015260840162000382565b6000828152600a602052604090206200080e828262000d6d565b505050565b6000828152600c602090815260408083206001600160a01b038516845290915290205460ff165b92915050565b6200080e8383836200097b60201b6200254c1760201c565b606081600003620008805750506040805180820190915260018152600360fc1b602082015290565b8160005b8115620008b05780620008978162000e65565b9150620008a89050600a8362000f16565b915062000884565b6000816001600160401b03811115620008cd57620008cd62000cc9565b6040519080825280601f01601f191660200182016040528015620008f8576020820181803683370190505b508593509050815b8315620009725762000914600a8562000f2d565b6200092190603062000e97565b60f81b82620009308362000f44565b9250828151811062000946576200094662000e39565b60200101906001600160f81b031916908160001a9053506200096a600a8562000f16565b935062000900565b50949350505050565b620009938383836200080e60201b62000f481760201c565b6001600160a01b038316620009f157620009eb81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b62000a17565b816001600160a01b0316836001600160a01b03161462000a175762000a17838262000a57565b6001600160a01b03821662000a31576200080e8162000b04565b826001600160a01b0316826001600160a01b0316146200080e576200080e828262000bbe565b6000600162000a718462000c0f60201b6200197c1760201c565b62000a7d919062000e81565b60008381526007602052604090205490915080821462000ad1576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009062000b189060019062000e81565b6000838152600960205260408120546008805493945090928490811062000b435762000b4362000e39565b90600052602060002001549050806008838154811062000b675762000b6762000e39565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548062000ba25762000ba262000f5e565b6001900381819060005260206000200160009055905550505050565b600062000bd68362000c0f60201b6200197c1760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b03821662000c7b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840162000382565b506001600160a01b031660009081526003602052604090205490565b60006020828403121562000caa57600080fd5b81516001600160a01b038116811462000cc257600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c9082168062000cf457607f821691505b60208210810362000d1557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200080e57600081815260208120601f850160051c8101602086101562000d445750805b601f850160051c820191505b8181101562000d655782815560010162000d50565b505050505050565b81516001600160401b0381111562000d895762000d8962000cc9565b62000da18162000d9a845462000cdf565b8462000d1b565b602080601f83116001811462000dd9576000841562000dc05750858301515b600019600386901b1c1916600185901b17855562000d65565b600085815260208120601f198616915b8281101562000e0a5788860151825594840194600190910190840162000de9565b508582101562000e295787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820162000e7a5762000e7a62000e4f565b5060010190565b818103818111156200083a576200083a62000e4f565b808201808211156200083a576200083a62000e4f565b6000815160005b8181101562000ed0576020818501810151868301520162000eb4565b50600093019283525090919050565b600062000ef862000ef1838662000ead565b8462000ead565b949350505050565b634e487b7160e01b600052601260045260246000fd5b60008262000f285762000f2862000f00565b500490565b60008262000f3f5762000f3f62000f00565b500690565b60008162000f565762000f5662000e4f565b506000190190565b634e487b7160e01b600052603160045260246000fd5b60805161486a62000f9e60003960008181610a0901528181611c6c0152611d07015261486a6000f3fe6080604052600436106103805760003560e01c80636352211e116101cf578063a035b1fe11610101578063c7c3268b1161009a578063e985e9c51161006c578063e985e9c514610ae1578063efc6dbf214610b2a578063f2fde38b14610b40578063fc6f946814610b6057005b8063c7c3268b14610a61578063c87b56dd14610a81578063d547741f14610aa1578063d9fe3eae14610ac157005b8063ad2f852a116100d3578063ad2f852a146109d7578063b01e1669146109f7578063b88d4fde14610a2b578063b8997a9714610a4b57005b8063a035b1fe14610979578063a0712d681461098f578063a217fddf146109a2578063a22cb465146109b757005b80638da5cb5b116101735780639659867e116101455780639659867e1461090d5780639ac84414146109235780639edfbec9146109385780639fd6db121461095857005b80638da5cb5b1461087457806391b7f5ed1461089257806391d14854146108b257806395d89b41146108f857005b806375b238fc116101ac57806375b238fc146107ed5780638774e5d014610821578063893d7edb146108415780638bf1516d1461086157005b80636352211e1461079857806370a08231146107b8578063715018a6146107d857005b80631ed3598f116102b357806336568abe1161024c5780634ea3871a1161021e5780634ea3871a146107235780634f6ccce7146107435780635bcabf041461076357806363037b0c1461077857005b806336568abe146106ad5780633e4086e5146106cd5780633f0d6258146106ed57806342842e0e1461070357005b8063248a9ca311610285578063248a9ca3146105fe5780632a55205a1461062e5780632f2ff15d1461066d5780632f745c591461068d57005b80631ed3598f146105875780631fa36cbe146105a75780631fc201f9146105bd57806323b872dd146105de57005b8063095ea7b311610325578063162094c4116102f7578063162094c41461051c57806318160ddd1461053c57806318f9b023146105515780631a23ab5f1461057157005b8063095ea7b31461049c5780630dc28efe146104bc5780630f75066e146104dc57806311c1907c146104fc57005b8063047fc9aa1161035e578063047fc9aa1461040c57806306d254da1461042257806306fdde0314610442578063081812fc1461046457005b8062e844b01461038957806301ffc9a7146103a9578063032b49f9146103de57005b3661038757005b005b34801561039557600080fd5b506103876103a4366004613eaa565b610b80565b3480156103b557600080fd5b506103c96103c4366004613edd565b610c6d565b60405190151581526020015b60405180910390f35b3480156103ea57600080fd5b506103fe6103f9366004613efa565b610c7e565b6040519081526020016103d5565b34801561041857600080fd5b506103fe60125481565b34801561042e57600080fd5b5061038761043d366004613f28565b610c9f565b34801561044e57600080fd5b50610457610d7f565b6040516103d59190613f95565b34801561047057600080fd5b5061048461047f366004613efa565b610e11565b6040516001600160a01b0390911681526020016103d5565b3480156104a857600080fd5b506103876104b7366004613fa8565b610e38565b3480156104c857600080fd5b506103876104d7366004613fd4565b610f4d565b3480156104e857600080fd5b506103876104f7366004614004565b610fb7565b34801561050857600080fd5b50610387610517366004613fd4565b6110f2565b34801561052857600080fd5b50610387610537366004614085565b611158565b34801561054857600080fd5b506008546103fe565b34801561055d57600080fd5b5061038761056c366004613fa8565b611232565b34801561057d57600080fd5b506103fe60135481565b34801561059357600080fd5b506103876105a2366004613efa565b611379565b3480156105b357600080fd5b506103fe601a5481565b3480156105c957600080fd5b506016546103c990600160a81b900460ff1681565b3480156105ea57600080fd5b506103876105f93660046140d1565b61143f565b34801561060a57600080fd5b506103fe610619366004613efa565b6000908152600c602052604090206001015490565b34801561063a57600080fd5b5061064e610649366004614101565b6114b7565b604080516001600160a01b0390931683526020830191909152016103d5565b34801561067957600080fd5b50610387610688366004613fd4565b6114ed565b34801561069957600080fd5b506103fe6106a8366004613fa8565b611512565b3480156106b957600080fd5b506103876106c8366004613fd4565b6115a8565b3480156106d957600080fd5b506103876106e8366004613efa565b611630565b3480156106f957600080fd5b506103fe600f5481565b34801561070f57600080fd5b5061038761071e3660046140d1565b6116e3565b34801561072f57600080fd5b5061038761073e366004613eaa565b6116fe565b34801561074f57600080fd5b506103fe61075e366004613efa565b6117cc565b34801561076f57600080fd5b5061045761185f565b34801561078457600080fd5b50610484610793366004613efa565b6118ed565b3480156107a457600080fd5b506104846107b3366004613efa565b611917565b3480156107c457600080fd5b506103fe6107d3366004613f28565b61197c565b3480156107e457600080fd5b50610387611a02565b3480156107f957600080fd5b506103fe7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177581565b34801561082d57600080fd5b5061038761083c366004613efa565b611a16565b34801561084d57600080fd5b5061038761085c366004613fd4565b611ac4565b61038761086f366004613efa565b611b6f565b34801561088057600080fd5b50600b546001600160a01b0316610484565b34801561089e57600080fd5b506103876108ad366004613efa565b611e11565b3480156108be57600080fd5b506103c96108cd366004613fd4565b6000918252600c602090815260408084206001600160a01b0393909316845291905290205460ff1690565b34801561090457600080fd5b50610457611ed2565b34801561091957600080fd5b506103fe60105481565b34801561092f57600080fd5b50610387611ee1565b34801561094457600080fd5b50610387610953366004614123565b61202b565b34801561096457600080fd5b506016546103c990600160a01b900460ff1681565b34801561098557600080fd5b506103fe60115481565b61038761099d366004613efa565b6120d5565b3480156109ae57600080fd5b506103fe600081565b3480156109c357600080fd5b506103876109d2366004614198565b6121e3565b3480156109e357600080fd5b50601554610484906001600160a01b031681565b348015610a0357600080fd5b506104847f000000000000000000000000000000000000000000000000000000000000000081565b348015610a3757600080fd5b50610387610a463660046141dc565b6121ee565b348015610a5757600080fd5b506103fe60145481565b348015610a6d57600080fd5b50610387610a7c3660046142bc565b61226d565b348015610a8d57600080fd5b50610457610a9c366004613efa565b612306565b348015610aad57600080fd5b50610387610abc366004613fd4565b612311565b348015610acd57600080fd5b50610387610adc366004613f28565b612336565b348015610aed57600080fd5b506103c9610afc3660046142fe565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610b3657600080fd5b506103fe600e5481565b348015610b4c57600080fd5b50610387610b5b366004613f28565b6124d6565b348015610b6c57600080fd5b50601654610484906001600160a01b031681565b336000908152600080516020614815833981519152602052604090205460ff16610bdf5760405162461bcd60e51b815260206004820152601360248201526000805160206147f583398151915260448201526064015b60405180910390fd5b60168054821515600160a81b0260ff60a81b199091161790556040517faf0a21dcba8ecaaa2ac47734f3e34a4dfad90acf9cef0887246fbedec2bf255590610c629083906040808252601d908201527f636f6e6b50756e6b73486f6c6465724d696e74696e67456e61626c65640000006060820152901515602082015260800190565b60405180910390a150565b6000610c7882612604565b92915050565b60198181548110610c8e57600080fd5b600091825260209091200154905081565b336000908152600080516020614815833981519152602052604090205460ff16610cf95760405162461bcd60e51b815260206004820152601360248201526000805160206147f58339815191526044820152606401610bd6565b601580546001600160a01b0319166001600160a01b03831690811790915560408051818152600e918101919091527f726f79616c747941646472657373000000000000000000000000000000000000606082015260208101919091527fa0595d3994065522f393bcbdd66c48e61cb68322e8bea3001d79b41cfac67f8f90608001610c62565b606060008054610d8e9061432c565b80601f0160208091040260200160405190810160405280929190818152602001828054610dba9061432c565b8015610e075780601f10610ddc57610100808354040283529160200191610e07565b820191906000526020600020905b815481529060010190602001808311610dea57829003601f168201915b5050505050905090565b6000610e1c82612635565b506000908152600460205260409020546001600160a01b031690565b6000610e4382611917565b9050806001600160a01b0316836001600160a01b031603610eb05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610bd6565b336001600160a01b0382161480610ecc5750610ecc8133610afc565b610f3e5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610bd6565b610f488383612699565b505050565b336000908152600080516020614815833981519152602052604090205460ff16610fa75760405162461bcd60e51b815260206004820152601360248201526000805160206147f58339815191526044820152606401610bd6565b610fb382826001612707565b5050565b336000908152600080516020614815833981519152602052604090205460ff166110115760405162461bcd60e51b815260206004820152601360248201526000805160206147f58339815191526044820152606401610bd6565b601854831061104f5760405162461bcd60e51b815260206004820152600a6024820152691253959053125117d25160b21b6044820152606401610bd6565b806019848154811061106357611063614366565b9060005260206000200154601a5461107b9190614392565b61108591906143a5565b601a81905550816018848154811061109f5761109f614366565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080601984815481106110e1576110e1614366565b600091825260209091200155505050565b336000908152600080516020614815833981519152602052604090205460ff1661114c5760405162461bcd60e51b815260206004820152601360248201526000805160206147f58339815191526044820152606401610bd6565b610fb382826002612707565b336000908152600080516020614815833981519152602052604090205460ff166111b25760405162461bcd60e51b815260206004820152601360248201526000805160206147f58339815191526044820152606401610bd6565b6111f28383838080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061271292505050565b7f0418254f69edc41d3d2b429767526234e99f60018e7e21cda80307bf3ef28cc4838383604051611225939291906143e1565b60405180910390a1505050565b336000908152600080516020614815833981519152602052604090205460ff1661128c5760405162461bcd60e51b815260206004820152601360248201526000805160206147f58339815191526044820152606401610bd6565b6001600160a01b0382166112e25760405162461bcd60e51b815260206004820152600f60248201527f494e56414c49445f4144445245535300000000000000000000000000000000006044820152606401610bd6565b6018805460018082019092557fb13d2d76d1f4b7be834882e410b3e3a8afaf69f83600ae24db354391d2378d2e0180546001600160a01b0319166001600160a01b03851617905560198054918201815560009081527f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c9695909101829055601a80548392906113709084906143a5565b90915550505050565b336000908152600080516020614815833981519152602052604090205460ff166113d35760405162461bcd60e51b815260206004820152601360248201526000805160206147f58339815191526044820152606401610bd6565b601381905560408051818152600d918101919091527f73746f704d696e74696e674174000000000000000000000000000000000000006060820152602081018290527f63b0d00ca7be95e8ed90417045f614395b95949f5e8b9a472a7997480acbdb6290608001610c62565b61144933826127b4565b6114ac5760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526d1c881b9bdc88185c1c1c9bdd995960921b6064820152608401610bd6565b610f48838383612833565b6015546014546001600160a01b03909116906000906103e8906114da9085614404565b6114e49190614431565b90509250929050565b6000828152600c6020526040902060010154611508816129da565b610f4883836129e4565b600061151d8361197c565b821061157f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610bd6565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6001600160a01b03811633146116265760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c6600000000000000000000000000000000006064820152608401610bd6565b610fb38282612a86565b336000908152600080516020614815833981519152602052604090205460ff1661168a5760405162461bcd60e51b815260206004820152601360248201526000805160206147f58339815191526044820152606401610bd6565b601481905560408051818152600a9181019190915269726f79616c747946656560b01b6060820152602081018290527f63b0d00ca7be95e8ed90417045f614395b95949f5e8b9a472a7997480acbdb6290608001610c62565b610f48838383604051806020016040528060008152506121ee565b336000908152600080516020614815833981519152602052604090205460ff166117585760405162461bcd60e51b815260206004820152601360248201526000805160206147f58339815191526044820152606401610bd6565b60168054821515600160a01b0260ff60a01b199091161790556040517faf0a21dcba8ecaaa2ac47734f3e34a4dfad90acf9cef0887246fbedec2bf255590610c629083906040808252600e908201526d1b5a5b9d1a5b99d15b98589b195960921b6060820152901515602082015260800190565b60006117d760085490565b821061183a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610bd6565b6008828154811061184d5761184d614366565b90600052602060002001549050919050565b6017805461186c9061432c565b80601f01602080910402602001604051908101604052809291908181526020018280546118989061432c565b80156118e55780601f106118ba576101008083540402835291602001916118e5565b820191906000526020600020905b8154815290600101906020018083116118c857829003601f168201915b505050505081565b601881815481106118fd57600080fd5b6000918252602090912001546001600160a01b0316905081565b6000818152600260205260408120546001600160a01b031680610c785760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610bd6565b60006001600160a01b0382166119e65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610bd6565b506001600160a01b031660009081526003602052604090205490565b611a0a612b09565b611a146000612b63565b565b336000908152600080516020614815833981519152602052604090205460ff16611a705760405162461bcd60e51b815260206004820152601360248201526000805160206147f58339815191526044820152606401610bd6565b60118190556040805181815260059181019190915264707269636560d81b6060820152602081018290527f63b0d00ca7be95e8ed90417045f614395b95949f5e8b9a472a7997480acbdb6290608001610c62565b336000908152600080516020614815833981519152602052604090205460ff16611b1e5760405162461bcd60e51b815260206004820152601360248201526000805160206147f58339815191526044820152606401610bd6565b611b288183612bb5565b604080516001600160a01b0383168152602081018490527f90363c347ac279caf3ee0f1a07c9c17f19f56b1e394697a1d23b056c2c5bb36b91015b60405180910390a15050565b60125460105410611baf5760405162461bcd60e51b815260206004820152600a60248201526913525395115117d3d55560b21b6044820152606401610bd6565b601654600160a81b900460ff16611c145760405162461bcd60e51b815260206004820152602360248201527f434f4e4b5f50554e4b535f484f4c444552535f4d494e54494e475f444953414260448201526213115160ea1b6064820152608401610bd6565b6011543414611c545760405162461bcd60e51b815260206004820152600c60248201526b15d493d391d7d05353d5539560a21b6044820152606401610bd6565b6040516370a0823160e01b81523360048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015611cbb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cdf9190614445565b118015611d7d57506040516331a9108f60e11b81526004810182905233906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690636352211e90602401602060405180830381865afa158015611d4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d72919061445e565b6001600160a01b0316145b611dc95760405162461bcd60e51b815260206004820152601260248201527f4e4f545f544f4b454e5f49445f4f574e455200000000000000000000000000006044820152606401610bd6565b611dd33382612bb5565b611ddb612c9d565b60408051338152602081018390527f22bb3516cc1f103e9493d5f627ad4e066f631645d1e3fa0a93eb7b3f23efe0f49101610c62565b336000908152600080516020614815833981519152602052604090205460ff16611e6b5760405162461bcd60e51b815260206004820152601360248201526000805160206147f58339815191526044820152606401610bd6565b611e7d81670de0b6b3a7640000614404565b60118190556040517f63b0d00ca7be95e8ed90417045f614395b95949f5e8b9a472a7997480acbdb6291610c6291604080825260059082015264707269636560d81b6060820152602081019190915260800190565b606060018054610d8e9061432c565b336000908152600080516020614815833981519152602052604090205460ff16611f3b5760405162461bcd60e51b815260206004820152601360248201526000805160206147f58339815191526044820152606401610bd6565b4780611f805760405162461bcd60e51b81526020600482015260146024820152734e4f5f46554e44535f544f5f574954484452415760601b6044820152606401610bd6565b6000611f94600b546001600160a01b031690565b6001600160a01b03168260405160006040518083038185875af1925050503d8060008114611fde576040519150601f19603f3d011682016040523d82523d6000602084013e611fe3565b606091505b5050905080610fb35760405162461bcd60e51b81526020600482015260146024820152734641494c45445f53454e44494e475f46554e445360601b6044820152606401610bd6565b336000908152600080516020614815833981519152602052604090205460ff166120855760405162461bcd60e51b815260206004820152601360248201526000805160206147f58339815191526044820152606401610bd6565b60005b81811015610f48576120c360018484848181106120a7576120a7614366565b90506020020160208101906120bc9190613f28565b6002612707565b806120cd8161447b565b915050612088565b601654600160a01b900460ff1661212e5760405162461bcd60e51b815260206004820152601060248201527f4d494e54494e475f44495341424c4544000000000000000000000000000000006044820152606401610bd6565b6013548160105461213f91906143a5565b11156121815760405162461bcd60e51b81526020600482015260116024820152700a2aa829ca892a8b2bea89e9ebe90928e9607b1b6044820152606401610bd6565b8060115461218f9190614404565b34146121cc5760405162461bcd60e51b815260206004820152600c60248201526b15d493d391d7d05353d5539560a21b6044820152606401610bd6565b6121d881336000612e12565b6121e0612c9d565b50565b610fb3338383613077565b6121f833836127b4565b61225b5760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526d1c881b9bdc88185c1c1c9bdd995960921b6064820152608401610bd6565b61226784848484613145565b50505050565b336000908152600080516020614815833981519152602052604090205460ff166122c75760405162461bcd60e51b815260206004820152601360248201526000805160206147f58339815191526044820152606401610bd6565b60176122d48284836144e2565b507f1140693e0fafb790f2ecee2223ee8bc35ebb7aa6afa489c3af81794ded527b9f8282604051611b639291906145a3565b6060610c78826131c3565b6000828152600c602052604090206001015461232c816129da565b610f488383612a86565b336000908152600080516020614815833981519152602052604090205460ff166123905760405162461bcd60e51b815260206004820152601360248201526000805160206147f58339815191526044820152606401610bd6565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa1580156123d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123fb9190614445565b9050600081116124445760405162461bcd60e51b81526020600482015260146024820152734e4f5f46554e44535f544f5f574954484452415760601b6044820152606401610bd6565b816001600160a01b031663a9059cbb612465600b546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af11580156124b2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f4891906145b7565b6124de612b09565b6001600160a01b0381166125435760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bd6565b6121e081612b63565b6001600160a01b0383166125a7576125a281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6125ca565b816001600160a01b0316836001600160a01b0316146125ca576125ca83826132be565b6001600160a01b0382166125e157610f488161335b565b826001600160a01b0316826001600160a01b031614610f4857610f48828261340a565b600061260f8261344e565b80610c785750506001600160e01b0319166000908152600d602052604090205460ff1690565b6000818152600260205260409020546001600160a01b03166121e05760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610bd6565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906126ce82611917565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610f48838383612e12565b6000828152600260205260409020546001600160a01b031661279c5760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201527f6578697374656e7420746f6b656e0000000000000000000000000000000000006064820152608401610bd6565b6000828152600a60205260409020610f4882826145d4565b6000806127c083611917565b9050806001600160a01b0316846001600160a01b0316148061280757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b8061282b5750836001600160a01b031661282084610e11565b6001600160a01b0316145b949350505050565b826001600160a01b031661284682611917565b6001600160a01b0316146128aa5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610bd6565b6001600160a01b03821661290c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610bd6565b612917838383613473565b612922600082612699565b6001600160a01b038316600090815260036020526040812080546001929061294b908490614392565b90915550506001600160a01b03821660009081526003602052604081208054600192906129799084906143a5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6121e0813361347e565b6000828152600c602090815260408083206001600160a01b038516845290915290205460ff16610fb3576000828152600c602090815260408083206001600160a01b03851684529091529020805460ff19166001179055612a423390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000828152600c602090815260408083206001600160a01b038516845290915290205460ff1615610fb3576000828152600c602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600b546001600160a01b03163314611a145760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bd6565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60125460105410612bf55760405162461bcd60e51b815260206004820152600a60248201526913525395115117d3d55560b21b6044820152606401610bd6565b6012548110612c345760405162461bcd60e51b815260206004820152600b60248201526a09288bea89e9ebe90928e960ab1b6044820152606401610bd6565b6000601054601254612c469190614392565b9050612c5281836134fe565b612c5c8383613574565b612c6e82612c69846136c2565b612712565b60108054906000612c7e8361447b565b9091555050600e8054906000612c938361447b565b9190505550505050565b60003411612ced5760405162461bcd60e51b815260206004820152601360248201527f494e53554646494349454e545f414d4f554e54000000000000000000000000006044820152606401610bd6565b60005b6018548110156121e057600060198281548110612d0f57612d0f614366565b9060005260206000200154905060008111612d2a5750612e00565b601a54600090612d3a8334614404565b612d449190614431565b9050600060188481548110612d5b57612d5b614366565b60009182526020822001546040516001600160a01b039091169184919081818185875af1925050503d8060008114612daf576040519150601f19603f3d011682016040523d82523d6000602084013e612db4565b606091505b5050905080612dfc5760405162461bcd60e51b81526020600482015260146024820152734641494c45445f53454e44494e475f46554e445360601b6044820152606401610bd6565b5050505b80612e0a8161447b565b915050612cf0565b60125460105410612e525760405162461bcd60e51b815260206004820152600a60248201526913525395115117d3d55560b21b6044820152606401610bd6565b60125483601054612e6391906143a5565b1115612ea55760405162461bcd60e51b81526020600482015260116024820152700a2aa829ca892a8b2bea89e9ebe90928e9607b1b6044820152606401610bd6565b60005b83811015612267576000612eba613706565b9050612ec68482613574565b612ed381612c69836136c2565b60108054906000612ee38361447b565b9091555060009050836002811115612efd57612efd614694565b03612f4a57604080516001600160a01b0386168152602081018390527f748a2986091c2034d6e93b6f44f771a79f0e1d6acd8a60c68c17d4e1e2feaed291015b60405180910390a1612ffe565b6001836002811115612f5e57612f5e614694565b03612fa257604080516001600160a01b0386168152602081018390527f90363c347ac279caf3ee0f1a07c9c17f19f56b1e394697a1d23b056c2c5bb36b9101612f3d565b6002836002811115612fb657612fb6614694565b03612ffe57604080516001600160a01b0386168152602081018390527f7f9c9cb9137926c7f7c3bdbb971b627d14e5f95ded13be068becbd8ce8198361910160405180910390a15b600183600281111561301257613012614694565b0361302d57600e80549060006130278361447b565b91905055505b600283600281111561304157613041614694565b0361305c57600f80549060006130568361447b565b91905055505b613064613768565b508061306f8161447b565b915050612ea8565b816001600160a01b0316836001600160a01b0316036130d85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610bd6565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b613150848484612833565b61315c8484848461384c565b6122675760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610bd6565b60606131ce82612635565b6000828152600a6020526040812080546131e79061432c565b80601f01602080910402602001604051908101604052809291908181526020018280546132139061432c565b80156132605780601f1061323557610100808354040283529160200191613260565b820191906000526020600020905b81548152906001019060200180831161324357829003601f168201915b505050505090506000613271613998565b90508051600003613283575092915050565b8151156132b557808260405160200161329d9291906146aa565b60405160208183030381529060405292505050919050565b61282b846139a7565b600060016132cb8461197c565b6132d59190614392565b600083815260076020526040902054909150808214613328576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061336d90600190614392565b6000838152600960205260408120546008805493945090928490811061339557613395614366565b9060005260206000200154905080600883815481106133b6576133b6614366565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806133ee576133ee6146d9565b6001900381819060005260206000200160009055905550505050565b60006134158361197c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160e01b03198216637965db0b60e01b1480610c785750610c7882613a0d565b610f4883838361254c565b6000828152600c602090815260408083206001600160a01b038516845290915290205460ff16610fb3576134bc816001600160a01b03166014613a32565b6134c7836020613a32565b6040516020016134d89291906146ef565b60408051601f198184030181529082905262461bcd60e51b8252610bd691600401613f95565b601b600061350d600185614392565b8152602001908152602001600020546000036135415761352e600183614392565b6000828152601b60205260409020555050565b601b6000613550600185614392565b81526020808201929092526040908101600090812054848252601b90935220555050565b6001600160a01b0382166135ca5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610bd6565b6000818152600260205260409020546001600160a01b03161561362f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610bd6565b61363b60008383613473565b6001600160a01b03821660009081526003602052604081208054600192906136649084906143a5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b606060006136cf83613bdb565b9050600060405180604001604052806005815260200164173539b7b760d91b8152509050818160405160200161329d9291906146aa565b6000806010546012546137199190614392565b9050600061372682613ce7565b6000818152601b6020526040812054919250908103613746575080613757565b506000818152601b60205260409020545b61376183836134fe565b9392505050565b60135460105403611a14576016805460ff60a01b1916905560408051818152600e818301526d1b5a5b9d1a5b99d15b98589b195960921b60608201526000602082015290517faf0a21dcba8ecaaa2ac47734f3e34a4dfad90acf9cef0887246fbedec2bf25559181900360800190a16016805460ff60a81b1916905560408051818152601d818301527f636f6e6b50756e6b73486f6c6465724d696e74696e67456e61626c656400000060608201526000602082015290517faf0a21dcba8ecaaa2ac47734f3e34a4dfad90acf9cef0887246fbedec2bf25559181900360800190a1565b60006001600160a01b0384163b1561398d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613890903390899088908890600401614770565b6020604051808303816000875af19250505080156138cb575060408051601f3d908101601f191682019092526138c8918101906147ac565b60015b613973573d8080156138f9576040519150601f19603f3d011682016040523d82523d6000602084013e6138fe565b606091505b50805160000361396b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610bd6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061282b565b506001949350505050565b606060178054610d8e9061432c565b60606139b282612635565b60006139bc613998565b905060008151116139dc5760405180602001604052806000815250613761565b806139e684613d4b565b6040516020016139f79291906146aa565b6040516020818303038152906040529392505050565b60006001600160e01b0319821663780e9d6360e01b1480610c785750610c7882613e4c565b60606000613a41836002614404565b613a4c9060026143a5565b67ffffffffffffffff811115613a6457613a646141c6565b6040519080825280601f01601f191660200182016040528015613a8e576020820181803683370190505b509050600360fc1b81600081518110613aa957613aa9614366565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110613ad857613ad8614366565b60200101906001600160f81b031916908160001a9053506000613afc846002614404565b613b079060016143a5565b90505b6001811115613b8c577f303132333435363738396162636465660000000000000000000000000000000085600f1660108110613b4857613b48614366565b1a60f81b828281518110613b5e57613b5e614366565b60200101906001600160f81b031916908160001a90535060049490941c93613b85816147c9565b9050613b0a565b5083156137615760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610bd6565b606081600003613c025750506040805180820190915260018152600360fc1b602082015290565b8160005b8115613c2c5780613c168161447b565b9150613c259050600a83614431565b9150613c06565b60008167ffffffffffffffff811115613c4757613c476141c6565b6040519080825280601f01601f191660200182016040528015613c71576020820181803683370190505b508593509050815b8315613cde57613c8a600a856147e0565b613c959060306143a5565b60f81b82613ca2836147c9565b92508281518110613cb557613cb5614366565b60200101906001600160f81b031916908160001a905350613cd7600a85614431565b9350613c79565b50949350505050565b6040516bffffffffffffffffffffffff1933606090811b8216602084015241901b166034820152446048820152456068820152426088820152600090829060a8016040516020818303038152906040528051906020012060001c610c7891906147e0565b606081600003613d725750506040805180820190915260018152600360fc1b602082015290565b8160005b8115613d9c5780613d868161447b565b9150613d959050600a83614431565b9150613d76565b60008167ffffffffffffffff811115613db757613db76141c6565b6040519080825280601f01601f191660200182016040528015613de1576020820181803683370190505b5090505b841561282b57613df6600183614392565b9150613e03600a866147e0565b613e0e9060306143a5565b60f81b818381518110613e2357613e23614366565b60200101906001600160f81b031916908160001a905350613e45600a86614431565b9450613de5565b60006001600160e01b031982166380ac58cd60e01b1480613e7d57506001600160e01b03198216635b5e139f60e01b145b80610c7857506301ffc9a760e01b6001600160e01b0319831614610c78565b80151581146121e057600080fd5b600060208284031215613ebc57600080fd5b813561376181613e9c565b6001600160e01b0319811681146121e057600080fd5b600060208284031215613eef57600080fd5b813561376181613ec7565b600060208284031215613f0c57600080fd5b5035919050565b6001600160a01b03811681146121e057600080fd5b600060208284031215613f3a57600080fd5b813561376181613f13565b60005b83811015613f60578181015183820152602001613f48565b50506000910152565b60008151808452613f81816020860160208601613f45565b601f01601f19169290920160200192915050565b6020815260006137616020830184613f69565b60008060408385031215613fbb57600080fd5b8235613fc681613f13565b946020939093013593505050565b60008060408385031215613fe757600080fd5b823591506020830135613ff981613f13565b809150509250929050565b60008060006060848603121561401957600080fd5b83359250602084013561402b81613f13565b929592945050506040919091013590565b60008083601f84011261404e57600080fd5b50813567ffffffffffffffff81111561406657600080fd5b60208301915083602082850101111561407e57600080fd5b9250929050565b60008060006040848603121561409a57600080fd5b83359250602084013567ffffffffffffffff8111156140b857600080fd5b6140c48682870161403c565b9497909650939450505050565b6000806000606084860312156140e657600080fd5b83356140f181613f13565b9250602084013561402b81613f13565b6000806040838503121561411457600080fd5b50508035926020909101359150565b6000806020838503121561413657600080fd5b823567ffffffffffffffff8082111561414e57600080fd5b818501915085601f83011261416257600080fd5b81358181111561417157600080fd5b8660208260051b850101111561418657600080fd5b60209290920196919550909350505050565b600080604083850312156141ab57600080fd5b82356141b681613f13565b91506020830135613ff981613e9c565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156141f257600080fd5b84356141fd81613f13565b9350602085013561420d81613f13565b925060408501359150606085013567ffffffffffffffff8082111561423157600080fd5b818701915087601f83011261424557600080fd5b813581811115614257576142576141c6565b604051601f8201601f19908116603f0116810190838211818310171561427f5761427f6141c6565b816040528281528a602084870101111561429857600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080602083850312156142cf57600080fd5b823567ffffffffffffffff8111156142e657600080fd5b6142f28582860161403c565b90969095509350505050565b6000806040838503121561431157600080fd5b823561431c81613f13565b91506020830135613ff981613f13565b600181811c9082168061434057607f821691505b60208210810361436057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b81810381811115610c7857610c7861437c565b80820180821115610c7857610c7861437c565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b8381526040602082015260006143fb6040830184866143b8565b95945050505050565b8082028115828204841417610c7857610c7861437c565b634e487b7160e01b600052601260045260246000fd5b6000826144405761444061441b565b500490565b60006020828403121561445757600080fd5b5051919050565b60006020828403121561447057600080fd5b815161376181613f13565b60006001820161448d5761448d61437c565b5060010190565b601f821115610f4857600081815260208120601f850160051c810160208610156144bb5750805b601f850160051c820191505b818110156144da578281556001016144c7565b505050505050565b67ffffffffffffffff8311156144fa576144fa6141c6565b61450e83614508835461432c565b83614494565b6000601f841160018114614542576000851561452a5750838201355b600019600387901b1c1916600186901b17835561459c565b600083815260209020601f19861690835b828110156145735786850135825560209485019460019092019101614553565b50868210156145905760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b60208152600061282b6020830184866143b8565b6000602082840312156145c957600080fd5b815161376181613e9c565b815167ffffffffffffffff8111156145ee576145ee6141c6565b614602816145fc845461432c565b84614494565b602080601f831160018114614637576000841561461f5750858301515b600019600386901b1c1916600185901b1785556144da565b600085815260208120601f198616915b8281101561466657888601518255948401946001909101908401614647565b50858210156146845787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052602160045260246000fd5b600083516146bc818460208801613f45565b8351908301906146d0818360208801613f45565b01949350505050565b634e487b7160e01b600052603160045260246000fd5b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351614727816017850160208801613f45565b7f206973206d697373696e6720726f6c65200000000000000000000000000000006017918401918201528351614764816028840160208801613f45565b01602801949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526147a26080830184613f69565b9695505050505050565b6000602082840312156147be57600080fd5b815161376181613ec7565b6000816147d8576147d861437c565b506000190190565b6000826147ef576147ef61441b565b50069056fe41444d494e5f524f4c455f524551554952454400000000000000000000000000003ceef2c1db83b6787a5c41679a318a5ac9afba2aefaa5b63262a742c74a3a8a26469706673582212201c776862af35f835311c75d1a451a587bd9fd97eeb5afe2bc5b733e87cf663fd64736f6c63430008110033a49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217750000000000000000000000003d8b6254acd2c7aec285b251c78a793b80a18772

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

0000000000000000000000003d8b6254acd2c7aec285b251c78a793b80a18772

-----Decoded View---------------
Arg [0] : _conkPunks (address): 0x3d8b6254acd2c7aec285b251c78a793b80a18772

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000003d8b6254acd2c7aec285b251c78a793b80a18772


Loading