ETH Price: $2,486.09 (-1.26%)

Token

.pepe (PEPE)
 

Overview

Max Total Supply

166 PEPE

Holders

31

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PEPE
0xcd65be108a947604da254bb78ac9069f1caebc1c
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
PepeZone

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 28 : Pepe.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

import "../Standard.sol";

import "../../external/ENS.sol";
import "../../external/PublicResolver.sol";

contract PepeZone is StandardZone {
  using Strings for uint256;

  event EnsOriginSet(bytes32 indexed ensOrigin);

  ENS public ens;
  PublicResolver public resolver;

  bool public avatar;
  bytes32 public ensOrigin;

  mapping (uint256 => bytes32) public idToLabel;

  constructor(ENS _registry, PublicResolver _resolver)
    StandardZone(
      msg.sender,
      hex"5b0ff7c1d5683bef738838377aa985128bbc5c6d2c0aaa42cd72a1a09c34e624",
      ".pepe",
      "PEPE",
      "ipfs://"
    )
  {
    ens = _registry;
    resolver = _resolver;
  }

  function _transfer(
      address from,
      address to,
      uint256 tokenId
  ) internal virtual override {

    super._transfer(from, to, tokenId);

    if(idToLabel[tokenId] != 0x0 && ens.owner(keccak256(abi.encodePacked(ensOrigin, idToLabel[tokenId]))) == from){
      bytes32 subnode = ens.setSubnodeOwner(ensOrigin, idToLabel[tokenId], address(this));
      ens.setOwner(subnode, to);
    }
  }

  function register(
    address to,
    bytes32 parent,
    string memory label
  ) public virtual override returns (bytes32 namehash) {
    require(
      _isApprovedOrOwner(_msgSender(), uint256(parent)),
      "must own parent"
    );
    require(_isValidLabel(bytes(label)), "invalid label");

    bytes32 _label = keccak256(bytes(label));
    namehash = _register(to, parent, _label);

    emit ResourceRegistered(parent, label);
  }

  function _register(
    address to,
    bytes32 parent,
    bytes32 label
  ) internal virtual returns (bytes32 namehash) {
    namehash = keccak256(abi.encodePacked(parent, label));

    if (parent == getOrigin()) {
      bytes32 subnode = ens.setSubnodeOwner(ensOrigin, label, address(this));
      resolver.setAddr(subnode, to);

      if (avatar) {
        string memory urn = _generateUrn(namehash);
        resolver.setText(subnode, "avatar", urn);
      }

      ens.setResolver(subnode, address(resolver));
      ens.setOwner(subnode, to);
    }
    _safeMint(to, uint256(namehash));
    idToLabel[uint256(namehash)] = label;
  }

  function mapZone(string memory label, string memory tld) external {
    require(
      _isApprovedOrOwner(_msgSender(), uint256(getOrigin())),
      "must own zone"
    );

    ensOrigin = keccak256(
      abi.encodePacked(
        keccak256(abi.encodePacked(bytes32(0x0), keccak256(bytes(tld)))),
        keccak256(bytes(label))
      )
    );

    emit EnsOriginSet(ensOrigin);
  }

  function _generateUrn(bytes32 domain)
    internal
    view
    returns (string memory urn)
  {
    string memory addr = uint256(uint160(address(this))).toHexString(20);
    string memory tokenId = uint256(domain).toString();
    urn = string(abi.encodePacked("eip155:1/erc721:", addr, "/", tokenId));
  }

  function setAvatar(bool enabled) external {
    require(
      _isApprovedOrOwner(_msgSender(), uint256(getOrigin())),
      "must own zone"
    );
    avatar = enabled;
  }

  function setTokenURI(uint256 tokenId, string memory _tokenURI) internal {
    require(
      _isApprovedOrOwner(_msgSender(), uint256(getOrigin())),
      "must own zone"
    );
    _setTokenURI(tokenId, _tokenURI);
  }
}

File 2 of 28 : Standard.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

import "./Base.sol";

contract StandardZone is BaseZone {
  string public baseURI;

  constructor(
    address admin,
    bytes32 origin,
    string memory name,
    string memory symbol,
    string memory baseTokenURI
  ) BaseZone(admin, origin, name, symbol) {
    _setBaseURI(baseTokenURI);
  }

  function setBaseURI(string memory base) public {
    require(
      _isApprovedOrOwner(_msgSender(), uint256(getOrigin())),
      "must own zone"
    );
    _setBaseURI(base);
  }

  // function contractURI() public view returns (string memory) {
  //   return tokenURI(uint256(getOrigin()));
  // }

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

  function _setBaseURI(string memory base) internal virtual {
    baseURI = base;
  }
}

File 3 of 28 : ENS.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

interface ENS {

    // Logged when the owner of a node assigns a new owner to a subnode.
    event NewOwner(bytes32 indexed node, bytes32 indexed label, address owner);

    // Logged when the owner of a node transfers ownership to a new account.
    event Transfer(bytes32 indexed node, address owner);

    // Logged when the resolver for a node changes.
    event NewResolver(bytes32 indexed node, address resolver);

    // Logged when the TTL of a node changes
    event NewTTL(bytes32 indexed node, uint64 ttl);

    // Logged when an operator is added or removed.
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    function setRecord(bytes32 node, address _owner, address _resolver, uint64 _ttl) external;
    function setSubnodeRecord(bytes32 node, bytes32 label, address _owner, address _resolver, uint64 _ttl) external;
    function setSubnodeOwner(bytes32 node, bytes32 label, address _owner) external returns(bytes32);
    function setResolver(bytes32 node, address _resolver) external;
    function setOwner(bytes32 node, address _owner) external;
    function setTTL(bytes32 node, uint64 _ttl) external;
    function setApprovalForAll(address operator, bool approved) external;
    function owner(bytes32 node) external view returns (address);
    function resolver(bytes32 node) external view returns (address);
    function ttl(bytes32 node) external view returns (uint64);
    function recordExists(bytes32 node) external view returns (bool);
    function isApprovedForAll(address _owner, address operator) external view returns (bool);
}

File 4 of 28 : PublicResolver.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

import "./ENS.sol";
import "./profiles/AddrResolver.sol";
import "./profiles/TextResolver.sol";

/**
 * A simple resolver anyone can use; only allows the owner of a node to set its
 * address.
 */
contract PublicResolver is AddrResolver, TextResolver {
  ENS ens;

  /**
    * A mapping of operators. An address that is authorised for an address
    * may make any changes to the name that the owner could, but may not update
    * the set of authorisations.
    * (owner, operator) => approved
    */
  mapping(address => mapping(address => bool)) private _operatorApprovals;

  // Logged when an operator is added or removed.
  event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

  constructor(ENS _ens){
    ens = _ens;
  }

  /**
    * @dev See {IERC1155-setApprovalForAll}.
    */
  function setApprovalForAll(address operator, bool approved) external{
    require(
      msg.sender != operator,
      "ERC1155: setting approval status for self"
    );

    _operatorApprovals[msg.sender][operator] = approved;
    emit ApprovalForAll(msg.sender, operator, approved);
  }

  function isAuthorised(bytes32 node) internal override view returns(bool) {
    address owner = ens.owner(node);
    return owner == msg.sender || isApprovedForAll(owner, msg.sender);
  }

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

File 5 of 28 : Base.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

import "./Interface.sol";
import "../common/StandardNFT.sol";

import "@openzeppelin/contracts/utils/math/SafeMath.sol";

contract BaseZone is ZoneInterface, StandardNFT {
  using SafeMath for uint256;

  bytes32 private _origin;

  constructor(
    address admin,
    bytes32 origin,
    string memory name,
    string memory symbol
  ) ERC721(name, symbol) EIP712MetaTransaction(name) {
    _origin = origin;
    _safeMint(admin, uint256(origin));
    emit ZoneCreated(origin, name, symbol);
  }

  function getOrigin() public view override returns (bytes32) {
    return _origin;
  }

  function owner() public view virtual override returns (address) {
    return ownerOf(uint256(_origin));
  }

  modifier onlyOwner() {
    require(owner() == _msgSender(), "Ownable: caller is not the owner");
    _;
  }

  function exists(bytes32 namehash)
    external
    view
    virtual
    override
    returns (bool)
  {
    return _exists(uint256(namehash));
  }

  function register(
    address to,
    bytes32 parent,
    string memory label
  ) public virtual override returns (bytes32 namehash) {
    require(
      _isApprovedOrOwner(_msgSender(), uint256(parent)),
      "must own parent"
    );
    require(_isValidLabel(bytes(label)), "invalid label");

    namehash = keccak256(abi.encodePacked(parent, keccak256(bytes(label))));
    _safeMint(to, uint256(namehash));

    emit ResourceRegistered(parent, label);
  }

  function _isValidLabel(bytes memory label)
    internal
    view
    virtual
    returns (bool valid)
  {
    require(label.length > 0, "must include a label");

    valid = true;

    for (uint256 i = 0; i < label.length; i++) {
      uint8 char = uint8(label[i]);
      valid =
        valid &&
        (char == 45 ||
          (char >= 48 && char <= 57) ||
          (char >= 97 && char <= 122));
    }
  }

  function _msgSender()
    internal
    view
    virtual
    override
    returns (address sender)
  {
    return EIP712MetaTransaction.msgSender();
  }
}

File 6 of 28 : Interface.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

interface ZoneInterface {
  event ZoneCreated(bytes32 indexed origin, string name, string symbol);
  event ResourceRegistered(bytes32 indexed parent, string label);

  function getOrigin() external view returns (bytes32);

  function owner() external view returns (address);

  function exists(bytes32 namehash) external view returns (bool);

  function register(
    address to,
    bytes32 parent,
    string memory label
  ) external returns (bytes32 namehash);
}

File 7 of 28 : StandardNFT.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

import "./ERC721HexURI.sol";
import "./EIP712MetaTransaction.sol";

import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/math/Math.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";

abstract contract StandardNFT is
  ERC721HexURI,
  ERC721Burnable,
  ERC721Enumerable,
  ERC721URIStorage,
  EIP712MetaTransaction
{
  using Strings for uint256;
  using SafeMath for uint256;

  // Context Overrides
  function _msgSender() internal view virtual override returns (address sender) {
    return EIP712MetaTransaction.msgSender();
  }

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

  // ERC721Enumerable Overrides
  function supportsInterface(
    bytes4 interfaceId
  ) public view virtual override(ERC721, ERC721Enumerable) returns (bool) {
    return super.supportsInterface(interfaceId);
  }

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

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

File 8 of 28 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 9 of 28 : ERC721HexURI.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";

abstract contract ERC721HexURI is ERC721 {
  using Strings for uint256;

  function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
    string memory base = _baseURI();
    return bytes(base).length > 0 ? string(abi.encodePacked(base, tokenId.toHexString(32))) : "";
  }
}

File 10 of 28 : EIP712MetaTransaction.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

import "./EIP712Base.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

contract EIP712MetaTransaction is EIP712Base {
  using SafeMath for uint256;

  event MetaTransactionExecuted(address userAddress, address payable relayerAddress, bytes functionSignature);

  struct MetaTransaction {
    uint256 nonce;
    address from;
    bytes functionSignature;
  }

  bytes32 private constant META_TRANSACTION_TYPEHASH = keccak256(bytes("MetaTransaction(uint256 nonce,address from,bytes functionSignature)"));
  mapping(address => uint256) private nonces;

  constructor(string memory name) EIP712Base(name) {}

  function convertBytesToBytes4(
    bytes memory inBytes
  ) internal pure returns (bytes4 outBytes4) {
    if (inBytes.length == 0) {
      return 0x0;
    }

    assembly {
      outBytes4 := mload(add(inBytes, 32))
    }
  }

  function executeMetaTransaction(
    address userAddress,
    bytes memory functionSignature,
    bytes32 sigR,
    bytes32 sigS,
    uint8 sigV
  ) public payable returns(bytes memory) {
    bytes4 destinationFunctionSig = convertBytesToBytes4(functionSignature);
    require(destinationFunctionSig != msg.sig, "functionSignature can not be of executeMetaTransaction method");
    MetaTransaction memory metaTx = MetaTransaction({
      nonce: nonces[userAddress],
      from: userAddress,
      functionSignature: functionSignature
    });
    require(verify(userAddress, metaTx, sigR, sigS, sigV), "Signer and signature do not match");
    nonces[userAddress] = nonces[userAddress].add(1);
    // Append userAddress at the end to extract it from calling context
    (bool success, bytes memory returnData) = address(this).call(abi.encodePacked(functionSignature, userAddress));

    require(success, "Function call not successful");
    emit MetaTransactionExecuted(userAddress, payable(msg.sender), functionSignature);
    return returnData;
  }

  function hashMetaTransaction(MetaTransaction memory metaTx) internal pure returns (bytes32) {
    return keccak256(abi.encode(
      META_TRANSACTION_TYPEHASH,
      metaTx.nonce,
      metaTx.from,
      keccak256(metaTx.functionSignature)
    ));
  }

  function getNonce(address user) external view returns(uint256 nonce) {
    nonce = nonces[user];
  }

  function verify(address user, MetaTransaction memory metaTx, bytes32 sigR, bytes32 sigS, uint8 sigV) internal view returns (bool) {
    address signer = ecrecover(toTypedMessageHash(hashMetaTransaction(metaTx)), sigV, sigR, sigS);
    require(signer != address(0), "Invalid signature");
    return signer == user;
  }

  function msgSender() internal view returns(address sender) {
    if(msg.sender == address(this)) {
      bytes memory array = msg.data;
      uint256 index = msg.data.length;
      assembly {
        // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
        sender := and(mload(add(array, index)), 0xffffffffffffffffffffffffffffffffffffffff)
      }
    } else {
      sender = msg.sender;
    }
    return sender;
  }
}

File 11 of 28 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 12 of 28 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a / b + (a % b == 0 ? 0 : 1);
    }
}

File 13 of 28 : ERC721Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Burnable.sol)

pragma solidity ^0.8.0;

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

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

File 14 of 28 : 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 15 of 28 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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) {
        require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token");

        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 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 override {
        super._burn(tokenId);

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

File 16 of 28 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, 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);
    }

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

    /**
     * @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 of token that is not own");
        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);
    }

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

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

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

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

File 17 of 28 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

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

File 18 of 28 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 21 of 28 : 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 22 of 28 : 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 23 of 28 : 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 24 of 28 : EIP712Base.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

contract EIP712Base {
  struct EIP712Domain {
    string name;
    string version;
    address verifyingContract;
    bytes32 salt;
  }

  bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256(bytes("EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)"));

  bytes32 internal domainSeparator;

  constructor(string memory name) {
    domainSeparator = keccak256(abi.encode(
      EIP712_DOMAIN_TYPEHASH,
      keccak256(bytes(name)),
      keccak256(bytes("1")),
      address(this),
      bytes32(getChainID())
    ));
  }

  function getChainID() internal view returns (uint256 id) {
    assembly {
      id := chainid()
    }
  }

  function getDomainSeparator() private view returns(bytes32) {
    return domainSeparator;
  }

  /**
  * Accept message hash and returns hash message in EIP712 compatible form
  * So that it can be used to recover signer from signature signed using EIP712 formatted data
  * https://eips.ethereum.org/EIPS/eip-712
  * "\\x19" makes the encoding deterministic
  * "\\x01" is the version byte to make it compatible to EIP-191
  */
  function toTypedMessageHash(bytes32 messageHash) internal view returns(bytes32) {
    return keccak256(abi.encodePacked("\x19\x01", getDomainSeparator(), messageHash));
  }
}

File 25 of 28 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 tokenId);

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

File 26 of 28 : AddrResolver.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.4;

import "../ResolverBase.sol";

interface IAddrResolver {
  event AddrChanged(bytes32 indexed node, address a);
  function addr(bytes32 node) external view returns (address payable);
}

interface IAddressResolver {
  event AddressChanged(bytes32 indexed node, uint coinType, bytes newAddress);
  function addr(bytes32 node, uint coinType) external view returns(bytes memory);
}

abstract contract AddrResolver is IAddrResolver, IAddressResolver, ResolverBase {
  uint constant private COIN_TYPE_ETH = 60;

  mapping(bytes32=>mapping(uint=>bytes)) _addresses;

  /**
    * Sets the address associated with an ENS node.
    * May only be called by the owner of that node in the ENS registry.
    * @param node The node to update.
    * @param a The address to set.
    */
  function setAddr(bytes32 node, address a) virtual external authorised(node) {
    setAddr(node, COIN_TYPE_ETH, addressToBytes(a));
  }

  /**
    * Returns the address associated with an ENS node.
    * @param node The ENS node to query.
    * @return The associated address.
    */
  function addr(bytes32 node) virtual override public view returns (address payable) {
    bytes memory a = addr(node, COIN_TYPE_ETH);
    if(a.length == 0) {
      return payable(0);
    }
    return bytesToAddress(a);
  }

  function setAddr(bytes32 node, uint coinType, bytes memory a) virtual public authorised(node) {
    emit AddressChanged(node, coinType, a);
    if(coinType == COIN_TYPE_ETH) {
      emit AddrChanged(node, bytesToAddress(a));
    }
    _addresses[node][coinType] = a;
  }

  function addr(bytes32 node, uint coinType) virtual override public view returns(bytes memory) {
    return _addresses[node][coinType];
  }

  function bytesToAddress(bytes memory b) internal pure returns(address payable a) {
    require(b.length == 20);
    assembly {
      a := div(mload(add(b, 32)), exp(256, 12))
    }
  }

  function addressToBytes(address a) internal pure returns(bytes memory b) {
    b = new bytes(20);
    assembly {
      mstore(add(b, 32), mul(a, exp(256, 12)))
    }
  }
}

File 27 of 28 : TextResolver.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

import "../ResolverBase.sol";

interface ITextResolver {
  event TextChanged(bytes32 indexed node, string indexed indexedKey, string key);
  function text(bytes32 node, string calldata key) external view returns (string memory);
}

abstract contract TextResolver is ITextResolver, ResolverBase {
  mapping(bytes32=>mapping(string=>string)) texts;

  /**
    * Sets the text data associated with an ENS node and key.
    * May only be called by the owner of that node in the ENS registry.
    * @param node The node to update.
    * @param key The key to set.
    * @param value The text data value to set.
    */
  function setText(bytes32 node, string calldata key, string calldata value) virtual external authorised(node) {
    texts[node][key] = value;
    emit TextChanged(node, key, key);
  }

  /**
    * Returns the text data associated with an ENS node and key.
    * @param node The ENS node to query.
    * @param key The text data key to query.
    * @return The associated text data.
    */
  function text(bytes32 node, string calldata key) virtual override external view returns (string memory) {
    return texts[node][key];
  }
}

File 28 of 28 : ResolverBase.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.4;

abstract contract ResolverBase {
    function isAuthorised(bytes32 node) internal virtual view returns(bool);

    modifier authorised(bytes32 node) {
        require(isAuthorised(node));
        _;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract ENS","name":"_registry","type":"address"},{"internalType":"contract PublicResolver","name":"_resolver","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"ensOrigin","type":"bytes32"}],"name":"EnsOriginSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"parent","type":"bytes32"},{"indexed":false,"internalType":"string","name":"label","type":"string"}],"name":"ResourceRegistered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"origin","type":"bytes32"},{"indexed":false,"internalType":"string","name":"name","type":"string"},{"indexed":false,"internalType":"string","name":"symbol","type":"string"}],"name":"ZoneCreated","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"avatar","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ens","outputs":[{"internalType":"contract ENS","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ensOrigin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"namehash","type":"bytes32"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOrigin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"idToLabel","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"string","name":"label","type":"string"},{"internalType":"string","name":"tld","type":"string"}],"name":"mapZone","outputs":[],"stateMutability":"nonpayable","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":"address","name":"to","type":"address"},{"internalType":"bytes32","name":"parent","type":"bytes32"},{"internalType":"string","name":"label","type":"string"}],"name":"register","outputs":[{"internalType":"bytes32","name":"namehash","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resolver","outputs":[{"internalType":"contract PublicResolver","name":"","type":"address"}],"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":"bool","name":"enabled","type":"bool"}],"name":"setAvatar","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"base","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"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"}]

60806040523480156200001157600080fd5b5060405162003e8738038062003e87833981016040819052620000349162000a59565b337f5b0ff7c1d5683bef738838377aa985128bbc5c6d2c0aaa42cd72a1a09c34e624604051806040016040528060058152602001642e7065706560d81b815250604051806040016040528060048152602001635045504560e01b81525060405180604001604052806007815260200166697066733a2f2f60c81b81525084848484818083838160009080519060200190620000d192919062000982565b508051620000e790600190602084019062000982565b5050506040518060800160405280604f815260200162003e38604f9139805160209182012082519282019290922060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608401523060808401524660a0808501919091528151808503909101815260c090930190528151910120600b5550600d8390556200019c848462000229565b827facb8b567519ff790dedfe39925dc221bf74564c192ac5ba2bae09518596911198383604051620001d092919062000b24565b60405180910390a250505050620001ed816200024f60201b60201c565b5050600f80546001600160a01b039687166001600160a01b03199182161790915560108054959096169416939093179093555062000bf7915050565b6200024b8282604051806020016040528060008152506200026460201b60201c565b5050565b80516200024b90600e90602084019062000982565b620002708383620002e0565b6200027f600084848462000436565b620002db5760405162461bcd60e51b8152602060048201526032602482015260008051602062003e1883398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084015b60405180910390fd5b505050565b6001600160a01b038216620003385760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401620002d2565b6000818152600260205260409020546001600160a01b0316156200039f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620002d2565b620003ad60008383620005a8565b6001600160a01b0382166000908152600360205260408120805460019290620003d890849062000b56565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600062000457846001600160a01b0316620005c060201b620011511760201c565b156200059c576001600160a01b03841663150b7a0262000476620005c6565b8786866040518563ffffffff1660e01b81526004016200049a949392919062000ae5565b602060405180830381600087803b158015620004b557600080fd5b505af1925050508015620004e8575060408051601f3d908101601f19168201909252620004e59181019062000a28565b60015b62000581573d80801562000519576040519150601f19603f3d011682016040523d82523d6000602084013e6200051e565b606091505b508051620005795760405162461bcd60e51b8152602060048201526032602482015260008051602062003e1883398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620002d2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050620005a0565b5060015b949350505050565b620002db838383620005e260201b620011571760201c565b3b151590565b6000620005dd620006be60201b6200120f1760201c565b905090565b620005fa838383620002db60201b620008821760201c565b6001600160a01b03831662000658576200065281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6200067e565b816001600160a01b0316836001600160a01b0316146200067e576200067e83826200071d565b6001600160a01b0382166200069857620002db81620007ca565b826001600160a01b0316826001600160a01b031614620002db57620002db8282620008a8565b6000333014156200071757600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506200071a9050565b50335b90565b600060016200073784620008f960201b62000f4a1760201c565b62000743919062000b71565b60008381526007602052604090205490915080821462000797576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090620007de9060019062000b71565b600083815260096020526040812054600880549394509092849081106200081557634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106200084557634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806200088c57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000620008c083620008f960201b62000f4a1760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b038216620009665760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401620002d2565b506001600160a01b031660009081526003602052604090205490565b828054620009909062000b8b565b90600052602060002090601f016020900481019282620009b45760008555620009ff565b82601f10620009cf57805160ff1916838001178555620009ff565b82800160010185558215620009ff579182015b82811115620009ff578251825591602001919060010190620009e2565b5062000a0d92915062000a11565b5090565b5b8082111562000a0d576000815560010162000a12565b60006020828403121562000a3a578081fd5b81516001600160e01b03198116811462000a52578182fd5b9392505050565b6000806040838503121562000a6c578081fd5b825162000a798162000bde565b602084015190925062000a8c8162000bde565b809150509250929050565b60008151808452815b8181101562000abe5760208185018101518683018201520162000aa0565b8181111562000ad05782602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009062000b1a9083018462000a97565b9695505050505050565b60408152600062000b39604083018562000a97565b828103602084015262000b4d818562000a97565b95945050505050565b6000821982111562000b6c5762000b6c62000bc8565b500190565b60008282101562000b865762000b8662000bc8565b500390565b600181811c9082168062000ba057607f821691505b6020821081141562000bc257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811462000bf457600080fd5b50565b6132118062000c076000396000f3fe6080604052600436106101e35760003560e01c80635aef7de611610102578063aa4bb0e711610095578063d9862e8811610064578063d9862e881461058e578063df1f29ee146105ae578063e985e9c5146105c3578063fc1d1ef91461060c57600080fd5b8063aa4bb0e714610501578063adc5eda914610521578063b88d4fde1461054e578063c87b56dd1461056e57600080fd5b806370a08231116100d157806370a08231146104975780638da5cb5b146104b757806395d89b41146104cc578063a22cb465146104e157600080fd5b80635aef7de6146104215780636352211e1461044257806364422b86146104625780636c0360eb1461048257600080fd5b80632d0335ab1161017a57806342842e0e1161014957806342842e0e146103a157806342966c68146103c15780634f6ccce7146103e157806355f804b31461040157600080fd5b80632d0335ab1461030b5780632f745c591461034157806338a699a4146103615780633f15457f1461038157600080fd5b8063095ea7b3116101b6578063095ea7b3146102975780630c53c51c146102b957806318160ddd146102cc57806323b872dd146102eb57600080fd5b806301ffc9a7146101e857806304f3bcec1461021d57806306fdde0314610255578063081812fc14610277575b600080fd5b3480156101f457600080fd5b50610208610203366004612ccb565b610622565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b5060105461023d906001600160a01b031681565b6040516001600160a01b039091168152602001610214565b34801561026157600080fd5b5061026a610633565b6040516102149190612f45565b34801561028357600080fd5b5061023d610292366004612c9b565b6106c5565b3480156102a357600080fd5b506102b76102b2366004612c56565b61075f565b005b61026a6102c7366004612bdb565b610887565b3480156102d857600080fd5b506008545b604051908152602001610214565b3480156102f757600080fd5b506102b7610306366004612aa6565b610afe565b34801561031757600080fd5b506102dd610326366004612a36565b6001600160a01b03166000908152600c602052604090205490565b34801561034d57600080fd5b506102dd61035c366004612c56565b610b36565b34801561036d57600080fd5b5061020861037c366004612c9b565b610bcc565b34801561038d57600080fd5b50600f5461023d906001600160a01b031681565b3480156103ad57600080fd5b506102b76103bc366004612aa6565b610beb565b3480156103cd57600080fd5b506102b76103dc366004612c9b565b610c06565b3480156103ed57600080fd5b506102dd6103fc366004612c9b565b610c82565b34801561040d57600080fd5b506102b761041c366004612d03565b610d23565b34801561042d57600080fd5b5060105461020890600160a01b900460ff1681565b34801561044e57600080fd5b5061023d61045d366004612c9b565b610d5b565b34801561046e57600080fd5b506102dd61047d366004612b84565b610dd2565b34801561048e57600080fd5b5061026a610ebc565b3480156104a357600080fd5b506102dd6104b2366004612a36565b610f4a565b3480156104c357600080fd5b5061023d610fd1565b3480156104d857600080fd5b5061026a610fe6565b3480156104ed57600080fd5b506102b76104fc366004612b50565b610ff5565b34801561050d57600080fd5b506102b761051c366004612d36565b61100b565b34801561052d57600080fd5b506102dd61053c366004612c9b565b60126020526000908152604090205481565b34801561055a57600080fd5b506102b7610569366004612ae6565b6110c2565b34801561057a57600080fd5b5061026a610589366004612c9b565b611101565b34801561059a57600080fd5b506102b76105a9366004612c81565b61110c565b3480156105ba57600080fd5b50600d546102dd565b3480156105cf57600080fd5b506102086105de366004612a6e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561061857600080fd5b506102dd60115481565b600061062d8261126c565b92915050565b606060008054610642906130c7565b80601f016020809104026020016040519081016040528092919081815260200182805461066e906130c7565b80156106bb5780601f10610690576101008083540402835291602001916106bb565b820191906000526020600020905b81548152906001019060200180831161069e57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107435760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061076a82610d5b565b9050806001600160a01b0316836001600160a01b031614156107d85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161073a565b806001600160a01b03166107ea611291565b6001600160a01b031614806108065750610806816105de611291565b6108785760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161073a565b610882838361129b565b505050565b6060600061089486611309565b90506000356001600160e01b0319908116908216141561091c5760405162461bcd60e51b815260206004820152603d60248201527f66756e6374696f6e5369676e61747572652063616e206e6f74206265206f662060448201527f657865637574654d6574615472616e73616374696f6e206d6574686f64000000606482015260840161073a565b604080516060810182526001600160a01b0389166000818152600c6020908152908490205483528201529081018790526109598882888888611325565b6109af5760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b606482015260840161073a565b6001600160a01b0388166000908152600c60205260409020546109d3906001611401565b6001600160a01b0389166000908152600c60209081526040808320939093559151909182913091610a08918c918e9101612ddf565b60408051601f1981840301815290829052610a2291612dc3565b6000604051808303816000865af19150503d8060008114610a5f576040519150601f19603f3d011682016040523d82523d6000602084013e610a64565b606091505b509150915081610ab65760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c00000000604482015260640161073a565b7f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b8a338b604051610ae993929190612e9d565b60405180910390a19998505050505050505050565b610b0f610b09611291565b82611414565b610b2b5760405162461bcd60e51b815260040161073a90612fd1565b61088283838361150b565b6000610b4183610f4a565b8210610ba35760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161073a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000818152600260205260408120546001600160a01b0316151561062d565b610882838383604051806020016040528060008152506110c2565b610c11610b09611291565b610c765760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b606482015260840161073a565b610c7f81611711565b50565b6000610c8d60085490565b8210610cf05760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161073a565b60088281548110610d1157634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610d36610d2e611291565b600d54611414565b610d525760405162461bcd60e51b815260040161073a90612faa565b610c7f8161171a565b6000818152600260205260408120546001600160a01b03168061062d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161073a565b6000610de5610ddf611291565b84611414565b610e235760405162461bcd60e51b815260206004820152600f60248201526e1b5d5cdd081bdddb881c185c995b9d608a1b604482015260640161073a565b610e2c8261172d565b610e685760405162461bcd60e51b815260206004820152600d60248201526c1a5b9d985b1a59081b1858995b609a1b604482015260640161073a565b81516020830120610e7a858583611818565b9150837ffa0de44d6b928def17acff11cc1684fd8bcdfc30b81206468debd6fd42e5cd9f84604051610eac9190612f45565b60405180910390a2509392505050565b600e8054610ec9906130c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef5906130c7565b8015610f425780601f10610f1757610100808354040283529160200191610f42565b820191906000526020600020905b815481529060010190602001808311610f2557829003601f168201915b505050505081565b60006001600160a01b038216610fb55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161073a565b506001600160a01b031660009081526003602052604090205490565b6000610fe1600d5460001c610d5b565b905090565b606060018054610642906130c7565b611007611000611291565b8383611ab9565b5050565b611016610d2e611291565b6110325760405162461bcd60e51b815260040161073a90612faa565b80516020808301919091206040805160009381019390935282015260600160408051601f198184030181528282528051602091820120855186830120918401529082015260600160408051601f198184030181529082905280516020909101206011819055907f39aa1b29fd73338513bea88d97e17f82836aa0d570cb98a3519d479c3d468af190600090a25050565b6110d36110cd611291565b83611414565b6110ef5760405162461bcd60e51b815260040161073a90612fd1565b6110fb84848484611b88565b50505050565b606061062d82611bbb565b611117610d2e611291565b6111335760405162461bcd60e51b815260040161073a90612faa565b60108054911515600160a01b0260ff60a01b19909216919091179055565b3b151590565b6001600160a01b0383166111b2576111ad81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6111d5565b816001600160a01b0316836001600160a01b0316146111d5576111d58382611d2d565b6001600160a01b0382166111ec5761088281611dca565b826001600160a01b0316826001600160a01b031614610882576108828282611ea3565b60003330141561126657600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506112699050565b50335b90565b60006001600160e01b0319821663780e9d6360e01b148061062d575061062d82611ee7565b6000610fe161120f565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112d082610d5b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081516000141561131d57506000919050565b506020015190565b600080600161133b61133688611f37565b611fb4565b6040805160008152602081018083529290925260ff861690820152606081018790526080810186905260a0016020604051602081039080840390855afa158015611389573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166113e05760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b604482015260640161073a565b866001600160a01b0316816001600160a01b03161491505095945050505050565b600061140d8284613022565b9392505050565b6000818152600260205260408120546001600160a01b031661148d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161073a565b600061149883610d5b565b9050806001600160a01b0316846001600160a01b031614806114d35750836001600160a01b03166114c8846106c5565b6001600160a01b0316145b8061150357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b611516838383611fe4565b600081815260126020526040902054158015906116035750600f546011546000838152601260209081526040918290205491516001600160a01b038089169516936302571be393611574939192909101918252602082015260400190565b604051602081830303815290604052805190602001206040518263ffffffff1660e01b81526004016115a891815260200190565b60206040518083038186803b1580156115c057600080fd5b505afa1580156115d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115f89190612a52565b6001600160a01b0316145b1561088257600f546011546000838152601260205260408082205490516306ab592360e01b815260048101939093526024830152306044830152916001600160a01b0316906306ab592390606401602060405180830381600087803b15801561166b57600080fd5b505af115801561167f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116a39190612cb3565b600f54604051635b0fc9c360e01b8152600481018390526001600160a01b038681166024830152929350911690635b0fc9c390604401600060405180830381600087803b1580156116f357600080fd5b505af1158015611707573d6000803e3d6000fd5b5050505050505050565b610c7f8161218f565b805161100790600e9060208401906128cb565b6000808251116117765760405162461bcd60e51b81526020600482015260146024820152731b5d5cdd081a5b98db1d59194818481b1858995b60621b604482015260640161073a565b50600160005b82518110156118125760008382815181106117a757634e487b7160e01b600052603260045260246000fd5b016020015160f81c90508280156117fc57508060ff16602d14806117de575060308160ff16101580156117de575060398160ff1611155b806117fc575060618160ff16101580156117fc5750607a8160ff1611155b925050808061180a906130fc565b91505061177c565b50919050565b60408051602080820185905281830184905282518083038401815260609092019092528051910120600d54831415611a9757600f546011546040516306ab592360e01b81526004810191909152602481018490523060448201526000916001600160a01b0316906306ab592390606401602060405180830381600087803b1580156118a257600080fd5b505af11580156118b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118da9190612cb3565b60105460405162d5fa2b60e81b8152600481018390526001600160a01b03888116602483015292935091169063d5fa2b0090604401600060405180830381600087803b15801561192957600080fd5b505af115801561193d573d6000803e3d6000fd5b5050601054600160a01b900460ff161591506119c79050576000611960836121cf565b60105460405163043c4ea360e21b81529192506001600160a01b0316906310f13a8c906119939085908590600401612f0f565b600060405180830381600087803b1580156119ad57600080fd5b505af11580156119c1573d6000803e3d6000fd5b50505050505b600f54601054604051630c4b7b8560e11b8152600481018490526001600160a01b039182166024820152911690631896f70a90604401600060405180830381600087803b158015611a1757600080fd5b505af1158015611a2b573d6000803e3d6000fd5b5050600f54604051635b0fc9c360e01b8152600481018590526001600160a01b0389811660248301529091169250635b0fc9c39150604401600060405180830381600087803b158015611a7d57600080fd5b505af1158015611a91573d6000803e3d6000fd5b50505050505b611aa18482612200565b60008181526012602052604090209190915592915050565b816001600160a01b0316836001600160a01b03161415611b1b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161073a565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611b9384848461150b565b611b9f8484848461221a565b6110fb5760405162461bcd60e51b815260040161073a90612f58565b6000818152600260205260409020546060906001600160a01b0316611c3c5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b606482015260840161073a565b6000828152600a602052604081208054611c55906130c7565b80601f0160208091040260200160405190810160405280929190818152602001828054611c81906130c7565b8015611cce5780601f10611ca357610100808354040283529160200191611cce565b820191906000526020600020905b815481529060010190602001808311611cb157829003601f168201915b505050505090506000611cdf61232e565b9050805160001415611cf2575092915050565b815115611d24578082604051602001611d0c929190612e16565b60405160208183030381529060405292505050919050565b6115038461233d565b60006001611d3a84610f4a565b611d44919061306d565b600083815260076020526040902054909150808214611d97576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611ddc9060019061306d565b60008381526009602052604081205460088054939450909284908110611e1257634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611e4157634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e8757634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611eae83610f4a565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160e01b031982166380ac58cd60e01b1480611f1857506001600160e01b03198216635b5e139f60e01b145b8061062d57506301ffc9a760e01b6001600160e01b031983161461062d565b60006040518060800160405280604381526020016131996043913980516020918201208351848301516040808701518051908601209051611f97950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000611fbf600b5490565b60405161190160f01b6020820152602281019190915260428101839052606201611f97565b826001600160a01b0316611ff782610d5b565b6001600160a01b03161461205f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161073a565b6001600160a01b0382166120c15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161073a565b6120cc83838361239c565b6120d760008261129b565b6001600160a01b038316600090815260036020526040812080546001929061210090849061306d565b90915550506001600160a01b038216600090815260036020526040812080546001929061212e908490613022565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b612198816123a7565b6000818152600a6020526040902080546121b1906130c7565b159050610c7f576000818152600a60205260408120610c7f9161294f565b606060006121de30601461244e565b905060006121eb84612630565b90508181604051602001611d0c929190612e45565b61100782826040518060200160405280600081525061274a565b60006001600160a01b0384163b1561232357836001600160a01b031663150b7a02612243611291565b8786866040518563ffffffff1660e01b81526004016122659493929190612ed2565b602060405180830381600087803b15801561227f57600080fd5b505af19250505080156122af575060408051601f3d908101601f191682019092526122ac91810190612ce7565b60015b612309573d8080156122dd576040519150601f19603f3d011682016040523d82523d6000602084013e6122e2565b606091505b5080516123015760405162461bcd60e51b815260040161073a90612f58565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611503565b506001949350505050565b6060600e8054610642906130c7565b6060600061234961232e565b90506000815111612369576040518060200160405280600081525061140d565b8061237584602061244e565b604051602001612386929190612e16565b6040516020818303038152906040529392505050565b610882838383611157565b60006123b282610d5b565b90506123c08160008461239c565b6123cb60008361129b565b6001600160a01b03811660009081526003602052604081208054600192906123f490849061306d565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6060600061245d83600261304e565b612468906002613022565b67ffffffffffffffff81111561248e57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124b8576020820181803683370190505b509050600360fc1b816000815181106124e157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061251e57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600061254284600261304e565b61254d906001613022565b90505b60018111156125e1576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061258f57634e487b7160e01b600052603260045260246000fd5b1a60f81b8282815181106125b357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c936125da816130b0565b9050612550565b50831561140d5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161073a565b6060816126545750506040805180820190915260018152600360fc1b602082015290565b8160005b811561267e5780612668816130fc565b91506126779050600a8361303a565b9150612658565b60008167ffffffffffffffff8111156126a757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156126d1576020820181803683370190505b5090505b8415611503576126e660018361306d565b91506126f3600a86613117565b6126fe906030613022565b60f81b81838151811061272157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612743600a8661303a565b94506126d5565b612754838361277d565b612761600084848461221a565b6108825760405162461bcd60e51b815260040161073a90612f58565b6001600160a01b0382166127d35760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161073a565b6000818152600260205260409020546001600160a01b0316156128385760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161073a565b6128446000838361239c565b6001600160a01b038216600090815260036020526040812080546001929061286d908490613022565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546128d7906130c7565b90600052602060002090601f0160209004810192826128f9576000855561293f565b82601f1061291257805160ff191683800117855561293f565b8280016001018555821561293f579182015b8281111561293f578251825591602001919060010190612924565b5061294b929150612985565b5090565b50805461295b906130c7565b6000825580601f1061296b575050565b601f016020900490600052602060002090810190610c7f91905b5b8082111561294b5760008155600101612986565b803580151581146129aa57600080fd5b919050565b600082601f8301126129bf578081fd5b813567ffffffffffffffff808211156129da576129da613157565b604051601f8301601f19908116603f01168101908282118183101715612a0257612a02613157565b81604052838152866020858801011115612a1a578485fd5b8360208701602083013792830160200193909352509392505050565b600060208284031215612a47578081fd5b813561140d8161316d565b600060208284031215612a63578081fd5b815161140d8161316d565b60008060408385031215612a80578081fd5b8235612a8b8161316d565b91506020830135612a9b8161316d565b809150509250929050565b600080600060608486031215612aba578081fd5b8335612ac58161316d565b92506020840135612ad58161316d565b929592945050506040919091013590565b60008060008060808587031215612afb578081fd5b8435612b068161316d565b93506020850135612b168161316d565b925060408501359150606085013567ffffffffffffffff811115612b38578182fd5b612b44878288016129af565b91505092959194509250565b60008060408385031215612b62578182fd5b8235612b6d8161316d565b9150612b7b6020840161299a565b90509250929050565b600080600060608486031215612b98578283fd5b8335612ba38161316d565b925060208401359150604084013567ffffffffffffffff811115612bc5578182fd5b612bd1868287016129af565b9150509250925092565b600080600080600060a08688031215612bf2578081fd5b8535612bfd8161316d565b9450602086013567ffffffffffffffff811115612c18578182fd5b612c24888289016129af565b9450506040860135925060608601359150608086013560ff81168114612c48578182fd5b809150509295509295909350565b60008060408385031215612c68578182fd5b8235612c738161316d565b946020939093013593505050565b600060208284031215612c92578081fd5b61140d8261299a565b600060208284031215612cac578081fd5b5035919050565b600060208284031215612cc4578081fd5b5051919050565b600060208284031215612cdc578081fd5b813561140d81613182565b600060208284031215612cf8578081fd5b815161140d81613182565b600060208284031215612d14578081fd5b813567ffffffffffffffff811115612d2a578182fd5b611503848285016129af565b60008060408385031215612d48578182fd5b823567ffffffffffffffff80821115612d5f578384fd5b612d6b868387016129af565b93506020850135915080821115612d80578283fd5b50612d8d858286016129af565b9150509250929050565b60008151808452612daf816020860160208601613084565b601f01601f19169290920160200192915050565b60008251612dd5818460208701613084565b9190910192915050565b60008351612df1818460208801613084565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b60008351612e28818460208801613084565b835190830190612e3c818360208801613084565b01949350505050565b6f32b4b8189a9a9d1897b2b9319b99189d60811b815260008351612e70816010850160208801613084565b602f60f81b6010918401918201528351612e91816011840160208801613084565b01601101949350505050565b6001600160a01b03848116825283166020820152606060408201819052600090612ec990830184612d97565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612f0590830184612d97565b9695505050505050565b82815260606020820152600660608201526530bb30ba30b960d11b608082015260a06040820152600061150360a0830184612d97565b60208152600061140d6020830184612d97565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600d908201526c6d757374206f776e207a6f6e6560981b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156130355761303561312b565b500190565b60008261304957613049613141565b500490565b60008160001904831182151516156130685761306861312b565b500290565b60008282101561307f5761307f61312b565b500390565b60005b8381101561309f578181015183820152602001613087565b838111156110fb5750506000910152565b6000816130bf576130bf61312b565b506000190190565b600181811c908216806130db57607f821691505b6020821081141561181257634e487b7160e01b600052602260045260246000fd5b60006000198214156131105761311061312b565b5060010190565b60008261312657613126613141565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610c7f57600080fd5b6001600160e01b031981168114610c7f57600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a26469706673582212202e748e56c2ef5aac0a1aa589851b5289ad221350e132632768b717c6b23fcbd464736f6c634300080400334552433732313a207472616e7366657220746f206e6f6e204552433732315265454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c742900000000000000000000000000000000000c2e074ec69a0dfb2997ba6c7d2e1e0000000000000000000000004976fb03c32e5b8cfe2b6ccb31c09ba78ebaba41

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80635aef7de611610102578063aa4bb0e711610095578063d9862e8811610064578063d9862e881461058e578063df1f29ee146105ae578063e985e9c5146105c3578063fc1d1ef91461060c57600080fd5b8063aa4bb0e714610501578063adc5eda914610521578063b88d4fde1461054e578063c87b56dd1461056e57600080fd5b806370a08231116100d157806370a08231146104975780638da5cb5b146104b757806395d89b41146104cc578063a22cb465146104e157600080fd5b80635aef7de6146104215780636352211e1461044257806364422b86146104625780636c0360eb1461048257600080fd5b80632d0335ab1161017a57806342842e0e1161014957806342842e0e146103a157806342966c68146103c15780634f6ccce7146103e157806355f804b31461040157600080fd5b80632d0335ab1461030b5780632f745c591461034157806338a699a4146103615780633f15457f1461038157600080fd5b8063095ea7b3116101b6578063095ea7b3146102975780630c53c51c146102b957806318160ddd146102cc57806323b872dd146102eb57600080fd5b806301ffc9a7146101e857806304f3bcec1461021d57806306fdde0314610255578063081812fc14610277575b600080fd5b3480156101f457600080fd5b50610208610203366004612ccb565b610622565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b5060105461023d906001600160a01b031681565b6040516001600160a01b039091168152602001610214565b34801561026157600080fd5b5061026a610633565b6040516102149190612f45565b34801561028357600080fd5b5061023d610292366004612c9b565b6106c5565b3480156102a357600080fd5b506102b76102b2366004612c56565b61075f565b005b61026a6102c7366004612bdb565b610887565b3480156102d857600080fd5b506008545b604051908152602001610214565b3480156102f757600080fd5b506102b7610306366004612aa6565b610afe565b34801561031757600080fd5b506102dd610326366004612a36565b6001600160a01b03166000908152600c602052604090205490565b34801561034d57600080fd5b506102dd61035c366004612c56565b610b36565b34801561036d57600080fd5b5061020861037c366004612c9b565b610bcc565b34801561038d57600080fd5b50600f5461023d906001600160a01b031681565b3480156103ad57600080fd5b506102b76103bc366004612aa6565b610beb565b3480156103cd57600080fd5b506102b76103dc366004612c9b565b610c06565b3480156103ed57600080fd5b506102dd6103fc366004612c9b565b610c82565b34801561040d57600080fd5b506102b761041c366004612d03565b610d23565b34801561042d57600080fd5b5060105461020890600160a01b900460ff1681565b34801561044e57600080fd5b5061023d61045d366004612c9b565b610d5b565b34801561046e57600080fd5b506102dd61047d366004612b84565b610dd2565b34801561048e57600080fd5b5061026a610ebc565b3480156104a357600080fd5b506102dd6104b2366004612a36565b610f4a565b3480156104c357600080fd5b5061023d610fd1565b3480156104d857600080fd5b5061026a610fe6565b3480156104ed57600080fd5b506102b76104fc366004612b50565b610ff5565b34801561050d57600080fd5b506102b761051c366004612d36565b61100b565b34801561052d57600080fd5b506102dd61053c366004612c9b565b60126020526000908152604090205481565b34801561055a57600080fd5b506102b7610569366004612ae6565b6110c2565b34801561057a57600080fd5b5061026a610589366004612c9b565b611101565b34801561059a57600080fd5b506102b76105a9366004612c81565b61110c565b3480156105ba57600080fd5b50600d546102dd565b3480156105cf57600080fd5b506102086105de366004612a6e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561061857600080fd5b506102dd60115481565b600061062d8261126c565b92915050565b606060008054610642906130c7565b80601f016020809104026020016040519081016040528092919081815260200182805461066e906130c7565b80156106bb5780601f10610690576101008083540402835291602001916106bb565b820191906000526020600020905b81548152906001019060200180831161069e57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107435760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061076a82610d5b565b9050806001600160a01b0316836001600160a01b031614156107d85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161073a565b806001600160a01b03166107ea611291565b6001600160a01b031614806108065750610806816105de611291565b6108785760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161073a565b610882838361129b565b505050565b6060600061089486611309565b90506000356001600160e01b0319908116908216141561091c5760405162461bcd60e51b815260206004820152603d60248201527f66756e6374696f6e5369676e61747572652063616e206e6f74206265206f662060448201527f657865637574654d6574615472616e73616374696f6e206d6574686f64000000606482015260840161073a565b604080516060810182526001600160a01b0389166000818152600c6020908152908490205483528201529081018790526109598882888888611325565b6109af5760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b606482015260840161073a565b6001600160a01b0388166000908152600c60205260409020546109d3906001611401565b6001600160a01b0389166000908152600c60209081526040808320939093559151909182913091610a08918c918e9101612ddf565b60408051601f1981840301815290829052610a2291612dc3565b6000604051808303816000865af19150503d8060008114610a5f576040519150601f19603f3d011682016040523d82523d6000602084013e610a64565b606091505b509150915081610ab65760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c00000000604482015260640161073a565b7f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b8a338b604051610ae993929190612e9d565b60405180910390a19998505050505050505050565b610b0f610b09611291565b82611414565b610b2b5760405162461bcd60e51b815260040161073a90612fd1565b61088283838361150b565b6000610b4183610f4a565b8210610ba35760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161073a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000818152600260205260408120546001600160a01b0316151561062d565b610882838383604051806020016040528060008152506110c2565b610c11610b09611291565b610c765760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b606482015260840161073a565b610c7f81611711565b50565b6000610c8d60085490565b8210610cf05760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161073a565b60088281548110610d1157634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610d36610d2e611291565b600d54611414565b610d525760405162461bcd60e51b815260040161073a90612faa565b610c7f8161171a565b6000818152600260205260408120546001600160a01b03168061062d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161073a565b6000610de5610ddf611291565b84611414565b610e235760405162461bcd60e51b815260206004820152600f60248201526e1b5d5cdd081bdddb881c185c995b9d608a1b604482015260640161073a565b610e2c8261172d565b610e685760405162461bcd60e51b815260206004820152600d60248201526c1a5b9d985b1a59081b1858995b609a1b604482015260640161073a565b81516020830120610e7a858583611818565b9150837ffa0de44d6b928def17acff11cc1684fd8bcdfc30b81206468debd6fd42e5cd9f84604051610eac9190612f45565b60405180910390a2509392505050565b600e8054610ec9906130c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef5906130c7565b8015610f425780601f10610f1757610100808354040283529160200191610f42565b820191906000526020600020905b815481529060010190602001808311610f2557829003601f168201915b505050505081565b60006001600160a01b038216610fb55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161073a565b506001600160a01b031660009081526003602052604090205490565b6000610fe1600d5460001c610d5b565b905090565b606060018054610642906130c7565b611007611000611291565b8383611ab9565b5050565b611016610d2e611291565b6110325760405162461bcd60e51b815260040161073a90612faa565b80516020808301919091206040805160009381019390935282015260600160408051601f198184030181528282528051602091820120855186830120918401529082015260600160408051601f198184030181529082905280516020909101206011819055907f39aa1b29fd73338513bea88d97e17f82836aa0d570cb98a3519d479c3d468af190600090a25050565b6110d36110cd611291565b83611414565b6110ef5760405162461bcd60e51b815260040161073a90612fd1565b6110fb84848484611b88565b50505050565b606061062d82611bbb565b611117610d2e611291565b6111335760405162461bcd60e51b815260040161073a90612faa565b60108054911515600160a01b0260ff60a01b19909216919091179055565b3b151590565b6001600160a01b0383166111b2576111ad81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6111d5565b816001600160a01b0316836001600160a01b0316146111d5576111d58382611d2d565b6001600160a01b0382166111ec5761088281611dca565b826001600160a01b0316826001600160a01b031614610882576108828282611ea3565b60003330141561126657600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506112699050565b50335b90565b60006001600160e01b0319821663780e9d6360e01b148061062d575061062d82611ee7565b6000610fe161120f565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112d082610d5b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081516000141561131d57506000919050565b506020015190565b600080600161133b61133688611f37565b611fb4565b6040805160008152602081018083529290925260ff861690820152606081018790526080810186905260a0016020604051602081039080840390855afa158015611389573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166113e05760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b604482015260640161073a565b866001600160a01b0316816001600160a01b03161491505095945050505050565b600061140d8284613022565b9392505050565b6000818152600260205260408120546001600160a01b031661148d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161073a565b600061149883610d5b565b9050806001600160a01b0316846001600160a01b031614806114d35750836001600160a01b03166114c8846106c5565b6001600160a01b0316145b8061150357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b611516838383611fe4565b600081815260126020526040902054158015906116035750600f546011546000838152601260209081526040918290205491516001600160a01b038089169516936302571be393611574939192909101918252602082015260400190565b604051602081830303815290604052805190602001206040518263ffffffff1660e01b81526004016115a891815260200190565b60206040518083038186803b1580156115c057600080fd5b505afa1580156115d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115f89190612a52565b6001600160a01b0316145b1561088257600f546011546000838152601260205260408082205490516306ab592360e01b815260048101939093526024830152306044830152916001600160a01b0316906306ab592390606401602060405180830381600087803b15801561166b57600080fd5b505af115801561167f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116a39190612cb3565b600f54604051635b0fc9c360e01b8152600481018390526001600160a01b038681166024830152929350911690635b0fc9c390604401600060405180830381600087803b1580156116f357600080fd5b505af1158015611707573d6000803e3d6000fd5b5050505050505050565b610c7f8161218f565b805161100790600e9060208401906128cb565b6000808251116117765760405162461bcd60e51b81526020600482015260146024820152731b5d5cdd081a5b98db1d59194818481b1858995b60621b604482015260640161073a565b50600160005b82518110156118125760008382815181106117a757634e487b7160e01b600052603260045260246000fd5b016020015160f81c90508280156117fc57508060ff16602d14806117de575060308160ff16101580156117de575060398160ff1611155b806117fc575060618160ff16101580156117fc5750607a8160ff1611155b925050808061180a906130fc565b91505061177c565b50919050565b60408051602080820185905281830184905282518083038401815260609092019092528051910120600d54831415611a9757600f546011546040516306ab592360e01b81526004810191909152602481018490523060448201526000916001600160a01b0316906306ab592390606401602060405180830381600087803b1580156118a257600080fd5b505af11580156118b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118da9190612cb3565b60105460405162d5fa2b60e81b8152600481018390526001600160a01b03888116602483015292935091169063d5fa2b0090604401600060405180830381600087803b15801561192957600080fd5b505af115801561193d573d6000803e3d6000fd5b5050601054600160a01b900460ff161591506119c79050576000611960836121cf565b60105460405163043c4ea360e21b81529192506001600160a01b0316906310f13a8c906119939085908590600401612f0f565b600060405180830381600087803b1580156119ad57600080fd5b505af11580156119c1573d6000803e3d6000fd5b50505050505b600f54601054604051630c4b7b8560e11b8152600481018490526001600160a01b039182166024820152911690631896f70a90604401600060405180830381600087803b158015611a1757600080fd5b505af1158015611a2b573d6000803e3d6000fd5b5050600f54604051635b0fc9c360e01b8152600481018590526001600160a01b0389811660248301529091169250635b0fc9c39150604401600060405180830381600087803b158015611a7d57600080fd5b505af1158015611a91573d6000803e3d6000fd5b50505050505b611aa18482612200565b60008181526012602052604090209190915592915050565b816001600160a01b0316836001600160a01b03161415611b1b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161073a565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611b9384848461150b565b611b9f8484848461221a565b6110fb5760405162461bcd60e51b815260040161073a90612f58565b6000818152600260205260409020546060906001600160a01b0316611c3c5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b606482015260840161073a565b6000828152600a602052604081208054611c55906130c7565b80601f0160208091040260200160405190810160405280929190818152602001828054611c81906130c7565b8015611cce5780601f10611ca357610100808354040283529160200191611cce565b820191906000526020600020905b815481529060010190602001808311611cb157829003601f168201915b505050505090506000611cdf61232e565b9050805160001415611cf2575092915050565b815115611d24578082604051602001611d0c929190612e16565b60405160208183030381529060405292505050919050565b6115038461233d565b60006001611d3a84610f4a565b611d44919061306d565b600083815260076020526040902054909150808214611d97576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611ddc9060019061306d565b60008381526009602052604081205460088054939450909284908110611e1257634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611e4157634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e8757634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611eae83610f4a565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160e01b031982166380ac58cd60e01b1480611f1857506001600160e01b03198216635b5e139f60e01b145b8061062d57506301ffc9a760e01b6001600160e01b031983161461062d565b60006040518060800160405280604381526020016131996043913980516020918201208351848301516040808701518051908601209051611f97950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000611fbf600b5490565b60405161190160f01b6020820152602281019190915260428101839052606201611f97565b826001600160a01b0316611ff782610d5b565b6001600160a01b03161461205f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161073a565b6001600160a01b0382166120c15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161073a565b6120cc83838361239c565b6120d760008261129b565b6001600160a01b038316600090815260036020526040812080546001929061210090849061306d565b90915550506001600160a01b038216600090815260036020526040812080546001929061212e908490613022565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b612198816123a7565b6000818152600a6020526040902080546121b1906130c7565b159050610c7f576000818152600a60205260408120610c7f9161294f565b606060006121de30601461244e565b905060006121eb84612630565b90508181604051602001611d0c929190612e45565b61100782826040518060200160405280600081525061274a565b60006001600160a01b0384163b1561232357836001600160a01b031663150b7a02612243611291565b8786866040518563ffffffff1660e01b81526004016122659493929190612ed2565b602060405180830381600087803b15801561227f57600080fd5b505af19250505080156122af575060408051601f3d908101601f191682019092526122ac91810190612ce7565b60015b612309573d8080156122dd576040519150601f19603f3d011682016040523d82523d6000602084013e6122e2565b606091505b5080516123015760405162461bcd60e51b815260040161073a90612f58565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611503565b506001949350505050565b6060600e8054610642906130c7565b6060600061234961232e565b90506000815111612369576040518060200160405280600081525061140d565b8061237584602061244e565b604051602001612386929190612e16565b6040516020818303038152906040529392505050565b610882838383611157565b60006123b282610d5b565b90506123c08160008461239c565b6123cb60008361129b565b6001600160a01b03811660009081526003602052604081208054600192906123f490849061306d565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6060600061245d83600261304e565b612468906002613022565b67ffffffffffffffff81111561248e57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124b8576020820181803683370190505b509050600360fc1b816000815181106124e157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061251e57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600061254284600261304e565b61254d906001613022565b90505b60018111156125e1576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061258f57634e487b7160e01b600052603260045260246000fd5b1a60f81b8282815181106125b357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c936125da816130b0565b9050612550565b50831561140d5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161073a565b6060816126545750506040805180820190915260018152600360fc1b602082015290565b8160005b811561267e5780612668816130fc565b91506126779050600a8361303a565b9150612658565b60008167ffffffffffffffff8111156126a757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156126d1576020820181803683370190505b5090505b8415611503576126e660018361306d565b91506126f3600a86613117565b6126fe906030613022565b60f81b81838151811061272157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612743600a8661303a565b94506126d5565b612754838361277d565b612761600084848461221a565b6108825760405162461bcd60e51b815260040161073a90612f58565b6001600160a01b0382166127d35760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161073a565b6000818152600260205260409020546001600160a01b0316156128385760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161073a565b6128446000838361239c565b6001600160a01b038216600090815260036020526040812080546001929061286d908490613022565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546128d7906130c7565b90600052602060002090601f0160209004810192826128f9576000855561293f565b82601f1061291257805160ff191683800117855561293f565b8280016001018555821561293f579182015b8281111561293f578251825591602001919060010190612924565b5061294b929150612985565b5090565b50805461295b906130c7565b6000825580601f1061296b575050565b601f016020900490600052602060002090810190610c7f91905b5b8082111561294b5760008155600101612986565b803580151581146129aa57600080fd5b919050565b600082601f8301126129bf578081fd5b813567ffffffffffffffff808211156129da576129da613157565b604051601f8301601f19908116603f01168101908282118183101715612a0257612a02613157565b81604052838152866020858801011115612a1a578485fd5b8360208701602083013792830160200193909352509392505050565b600060208284031215612a47578081fd5b813561140d8161316d565b600060208284031215612a63578081fd5b815161140d8161316d565b60008060408385031215612a80578081fd5b8235612a8b8161316d565b91506020830135612a9b8161316d565b809150509250929050565b600080600060608486031215612aba578081fd5b8335612ac58161316d565b92506020840135612ad58161316d565b929592945050506040919091013590565b60008060008060808587031215612afb578081fd5b8435612b068161316d565b93506020850135612b168161316d565b925060408501359150606085013567ffffffffffffffff811115612b38578182fd5b612b44878288016129af565b91505092959194509250565b60008060408385031215612b62578182fd5b8235612b6d8161316d565b9150612b7b6020840161299a565b90509250929050565b600080600060608486031215612b98578283fd5b8335612ba38161316d565b925060208401359150604084013567ffffffffffffffff811115612bc5578182fd5b612bd1868287016129af565b9150509250925092565b600080600080600060a08688031215612bf2578081fd5b8535612bfd8161316d565b9450602086013567ffffffffffffffff811115612c18578182fd5b612c24888289016129af565b9450506040860135925060608601359150608086013560ff81168114612c48578182fd5b809150509295509295909350565b60008060408385031215612c68578182fd5b8235612c738161316d565b946020939093013593505050565b600060208284031215612c92578081fd5b61140d8261299a565b600060208284031215612cac578081fd5b5035919050565b600060208284031215612cc4578081fd5b5051919050565b600060208284031215612cdc578081fd5b813561140d81613182565b600060208284031215612cf8578081fd5b815161140d81613182565b600060208284031215612d14578081fd5b813567ffffffffffffffff811115612d2a578182fd5b611503848285016129af565b60008060408385031215612d48578182fd5b823567ffffffffffffffff80821115612d5f578384fd5b612d6b868387016129af565b93506020850135915080821115612d80578283fd5b50612d8d858286016129af565b9150509250929050565b60008151808452612daf816020860160208601613084565b601f01601f19169290920160200192915050565b60008251612dd5818460208701613084565b9190910192915050565b60008351612df1818460208801613084565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b60008351612e28818460208801613084565b835190830190612e3c818360208801613084565b01949350505050565b6f32b4b8189a9a9d1897b2b9319b99189d60811b815260008351612e70816010850160208801613084565b602f60f81b6010918401918201528351612e91816011840160208801613084565b01601101949350505050565b6001600160a01b03848116825283166020820152606060408201819052600090612ec990830184612d97565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612f0590830184612d97565b9695505050505050565b82815260606020820152600660608201526530bb30ba30b960d11b608082015260a06040820152600061150360a0830184612d97565b60208152600061140d6020830184612d97565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600d908201526c6d757374206f776e207a6f6e6560981b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156130355761303561312b565b500190565b60008261304957613049613141565b500490565b60008160001904831182151516156130685761306861312b565b500290565b60008282101561307f5761307f61312b565b500390565b60005b8381101561309f578181015183820152602001613087565b838111156110fb5750506000910152565b6000816130bf576130bf61312b565b506000190190565b600181811c908216806130db57607f821691505b6020821081141561181257634e487b7160e01b600052602260045260246000fd5b60006000198214156131105761311061312b565b5060010190565b60008261312657613126613141565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610c7f57600080fd5b6001600160e01b031981168114610c7f57600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a26469706673582212202e748e56c2ef5aac0a1aa589851b5289ad221350e132632768b717c6b23fcbd464736f6c63430008040033

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

00000000000000000000000000000000000c2e074ec69a0dfb2997ba6c7d2e1e0000000000000000000000004976fb03c32e5b8cfe2b6ccb31c09ba78ebaba41

-----Decoded View---------------
Arg [0] : _registry (address): 0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e
Arg [1] : _resolver (address): 0x4976fb03C32e5B8cfe2b6cCB31c09Ba78EBaBa41

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000c2e074ec69a0dfb2997ba6c7d2e1e
Arg [1] : 0000000000000000000000004976fb03c32e5b8cfe2b6ccb31c09ba78ebaba41


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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