ETH Price: $2,606.72 (-5.50%)

Token

Reflektioner (REFL)
 

Overview

Max Total Supply

61 REFL

Holders

44

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 REFL
0xaa120ad8752e6f2204c007b9a73122954beeefeb
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Reflektioner is an on-chain generative art project by TENGIL. Generative abstract reflections of high dimensional rivers generated entirely on-chain. Reflektioner is the step of a visual journey in a latent space of noisy reflections.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Reflektioner

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 16 : Reflektioner.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "svgnft/contracts/SVG721.sol";

contract Reflektioner is ERC721, ERC721Enumerable, Ownable {
  using Counters for Counters.Counter;
  using Strings for uint256;

  uint256 public constant MAX_SUPPLY = 999;
  uint256 public PRICE = 0.13 ether;
  uint256 public OPEN_BLOCK_NUMBER = 13462275;
  Counters.Counter private _tokenIdCounter;
  mapping(uint256 => bytes32) private _seeds;
  mapping(address => Counters.Counter) private _walletCounter;
  mapping(uint256 => Counters.Counter) private _hourlyCounts;
  string[15] private palettes = [
    'F08B26FBC86DBB4A403A151C81414B',
    'F08B26F1D9C3D9C3B3BB4A403A151C',
    '9dafa5F1D9C3e0c38ada391b2d2f23',
    '111111202c222f4131405742608772',
    'D9DFC62f4131608772B7CAADEDF0E9',
    '111111444444111111888888FBFCDD',
    '272643EEEEFFe3f6f52c698db2f7ef',
    '0f084b26408b3d60a7f7d6e0f2b5d4',
    '0f084b26408b3d60a781b1d5a0d2e7',
    '3d5a8098c1d9b2f7efee6c4d293241',
    'fe938ce6b89cead2ac9cafb74281a4',
    '3550706d597ab56576e56b6feaac8b',
    '335c67FBFCDDF08B269e2a2b540b0e',
    'f7d6e0f2b5d4F987C5FBAED286002d',
    '8C687FD1C2CCeff7f6f7d6e06d597a'
  ];
  string[2][3] private aspectRatios = [["1000", "1000"], ["711", "1000"], ["1000", "711"]];
  string public constant DESCRIPTION = "Generative abstract reflections of high dimensional rivers generated entirely on-chain. Reflektioner is the first step of a visual journey in a latent space of noisy reflections.";
  

  constructor() ERC721("Reflektioner", "REFL") {}


  function mint(uint256 numberOfTokens) public payable {
    require(isOpenForMint(), "Not open for minting yet!");
    require(totalSupply() < MAX_SUPPLY, "Sold out!");
    require(numberOfTokens > 0 && numberOfTokens <= 5, "You can mint between 1 and 5 tokens per transaction.");
    require(totalSupply() + numberOfTokens <= MAX_SUPPLY, "This transaction would lead to too many tokens minted!");
    require(getCurrentPeriodCount() + numberOfTokens <= MAX_SUPPLY/3, "No more available to mint this period, please hold.");
    require(msg.value >= PRICE * numberOfTokens, "PRICE_NOT_MET");
    require(_walletCounter[msg.sender].current() + numberOfTokens <= 5, "This wallet has minted the max number!");
    

    for (uint256 i = 0; i < numberOfTokens; i++){
      uint256 tokenId = _tokenIdCounter.current();
      _safeMint(msg.sender, tokenId);

      _seeds[tokenId] = keccak256(abi.encodePacked(tokenId, msg.sender));
      _tokenIdCounter.increment();
      _hourlyCounts[block.timestamp / 8 hours].increment();
      _walletCounter[msg.sender].increment();
    }
  }

  function isOpenForMint() public view returns (bool){
    return block.number >= OPEN_BLOCK_NUMBER;
  }

  function getCurrentPeriodCount() public view returns (uint256){
    uint256 currentPeriod =  block.timestamp / 8 hours;
    return _hourlyCounts[currentPeriod].current();
  }

  function canMint(address minter) public view returns(bool){
    return ((getCurrentPeriodCount() < MAX_SUPPLY/3) && isOpenForMint() && (_tokenIdCounter.current() < MAX_SUPPLY) && (_walletCounter[minter].current() < 5));
  }

  function substring(uint256 start, uint256 end, string memory text) private pure returns (string memory) {
    bytes memory tmp = bytes(text);
    bytes memory a = new bytes(end-start);
    for(uint i=start;i<end;i++){
        a[i-start] = tmp[i];
    }
    return string(a);    
  }

  function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
    require(_exists(tokenId), "URI query for unminted token id");
    string memory name = string(abi.encodePacked("Reflektion #", tokenId.toString()));
    bytes32 h = _seeds[tokenId];
    
    uint256 th = 0;
    uint256 x;
    uint256[] memory p = new uint256[](64);
    uint256[2][32] memory shapes;
    for (uint256 i = 0; i < 32; i+=1) {
      p[i*2] = uint256(uint8(h[i] & 0x0f));
      p[i*2 + 1] = uint256(uint8(h[i] >> 4));
      shapes[i] = [p[i*2], th+p[i*2+1]];
      th += p[i*2+1];
    }
    string memory y;
    string[2] memory ar = aspectRatios[p[42]%3];

    string memory output = string(abi.encodePacked('<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 ', ar[0] ,' ', ar[1], '" version="1.1"><defs>'));

    {
    for(uint256 i = 0; i < 4; i++){
      output = string(abi.encodePacked(output,
                                           '<linearGradient id="g', 
                                           i.toString(),
                                           '" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:#',
                                           substring(i*6, (i+1)*6, palettes[p[13]%15]),
                                           '"/><stop offset="100%" style="stop-color:#', 
                                           substring((i+1)*6, (i+2)*6, palettes[p[13]%15]), 
                                           '"/></linearGradient>'));
    }
    }
    {
    output = string(abi.encodePacked(output, '<filter id="df"><feTurbulence baseFrequency="0.0',
                                        p[63]<11?'0':'', 
                                        (200 + p[63]*1100/15).toString(), 
                                        ', 0.',
                                        p[62] > 7 ? '0':'',
                                        (100 + p[62]*500/15).toString(),
                                        '" type="',
                                        p[25] > 7 ? 'turbulence': 'fractalNoise'
                                      )
                      );
    }
    {
      output = string(abi.encodePacked(output, 
        '" numOctaves="', 
        (p[61]/4 + 2).toString(), 
        '" result="t" seed="', 
        (uint256(h) % 9543129).toString(), 
        '"/><feDisplacementMap in2="t" in="SourceGraphic" scale="',
        (p[50] > 5) ? ((p[51] > 3)? "350" : "200") : ((p[51] > 4)? "130" : "180"),
        '" xChannelSelector="R"/></filter><clipPath id="c"><rect x="0" y="0" width="', 
        ar[0],
        '" height="',
        ar[1],
        '"/></clipPath></defs>'));
    }
    output = string(abi.encodePacked(output, 
      '<rect x="0" y="0" width="',
      ar[0],'" height="',
      ar[1],
      '" fill="url(#g',
      (uint256(keccak256(abi.encodePacked(p[33])))%4).toString() ,
      ')"></rect><g clip-path="url(#c)" filter="url(#df)">'));

    {
    for (uint256 i=0; i<32;i++){
      x = shapes[i][0]*500/15;
      if (p[50] > 5){
        // Circles
        y = (shapes[i][1]*1000/th).toString();
        output = string(abi.encodePacked(output,'<circle cx="', 
          (x).toString() ,
          '" cy="',
          y,
          '" r="200" fill="url(#g',
          (uint256(keccak256(abi.encodePacked(p[2*i])))%4).toString(),
          ')"/><circle cx="', 
          (500 + x).toString() ,
          '" cy="',
          y,
          '" r="200" fill="url(#g',
          (uint256(keccak256(abi.encodePacked(p[2*i + 1])))%4).toString(),
          ')"/>'));
      }
      else {
        // Strips
        y = ((shapes[i][1] - p[i*2+1])*1000/th).toString();
        bool yIsZero = keccak256(abi.encodePacked(y)) == keccak256(abi.encodePacked("0"));
        output = string(abi.encodePacked(output,'<rect x="-70" y="',
          yIsZero ? "-70" : y,
          '" width="',
          (x+70).toString(),
          '" height="',
          (p[50] < 11)? (yIsZero ? (p[i*2+1]*1000/th + 70).toString() : (p[i*2+1]*1000/th).toString()) : (x+70).toString(),
          '" fill="url(#g',
          (uint256(keccak256(abi.encodePacked(p[2*i])))%4).toString(),
          ')"/><rect x="')); 
        output=string(abi.encodePacked(output,
          x.toString() ,
          '" y="',
          yIsZero ? "-70" : y,
          '" width="',
          (1070-x).toString(),
          '" height="',
          (p[50] < 11) ? (yIsZero ? (p[i*2+1]*1000/th + 70).toString() : (p[i*2+1]*1000/th).toString()) : (1070-x).toString(),
          '" fill="url(#g',
          (uint256(keccak256(abi.encodePacked(p[2*i + 1])))%4).toString(),
          ')"/>'));
      }
    }
    }

    output = string(abi.encodePacked(output, '</g></svg>'));

    
    return SVG721.metadata(name, DESCRIPTION, output);
  }

  function reflektion(uint256 tokenId) public view returns (uint256){
    return uint256(_seeds[tokenId]) % 1234313;
  }

  function withdraw() public onlyOwner {
    (bool success, ) = msg.sender.call{value: address(this).balance}("");
    require(success, "Transfer failed.");
  }

  function setPrice(uint256 newPrice) public onlyOwner {
    PRICE = newPrice;
  }

  function setStartBlock(uint256 startBlock) public onlyOwner {
    OPEN_BLOCK_NUMBER = startBlock;
  }

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

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

File 2 of 16 : SVG721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Base64.sol";

library SVG721 {
  function metadata(
    string memory tokenName,
    string memory tokenDescription,
    string memory svgString
  ) internal pure returns (string memory) {
    string memory json = string(abi.encodePacked('{"name":"', tokenName, '","description":"', tokenDescription, '","image": "data:image/svg+xml;base64,', Base64.encode(bytes(svgString)), '"}'));
    return string(abi.encodePacked("data:application/json;base64,", Base64.encode(bytes(json))));
  }
}

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

/// [MIT License]
/// @title Base64
/// @notice Provides a function for encoding some bytes in base64
/// @author Brecht Devos <[email protected]>
library Base64 {
  bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

  /// @notice Encodes some bytes to the base64 representation
  function encode(bytes memory data) internal pure returns (string memory) {
    uint256 len = data.length;
    if (len == 0) return "";

    // multiply by 4/3 rounded up
    uint256 encodedLen = 4 * ((len + 2) / 3);

    // Add some extra buffer at the end
    bytes memory result = new bytes(encodedLen + 32);

    bytes memory table = TABLE;

    assembly {
      let tablePtr := add(table, 1)
      let resultPtr := add(result, 32)

      for {
        let i := 0
      } lt(i, len) {

      } {
        i := add(i, 3)
        let input := and(mload(add(data, i)), 0xffffff)

        let out := mload(add(tablePtr, and(shr(18, input), 0x3F)))
        out := shl(8, out)
        out := add(out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF))
        out := shl(8, out)
        out := add(out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF))
        out := shl(8, out)
        out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF))
        out := shl(224, out)

        mstore(resultPtr, out)

        resultPtr := add(resultPtr, 4)
      }

      switch mod(len, 3)
      case 1 {
        mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
      }
      case 2 {
        mstore(sub(resultPtr, 1), shl(248, 0x3d))
      }

      mstore(result, encodedLen)
    }

    return string(result);
  }
}

File 4 of 16 : IERC165.sol
// SPDX-License-Identifier: MIT

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 5 of 16 : ERC165.sol
// SPDX-License-Identifier: MIT

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 6 of 16 : Strings.sol
// SPDX-License-Identifier: MIT

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 7 of 16 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 8 of 16 : Context.sol
// SPDX-License-Identifier: MIT

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 9 of 16 : Address.sol
// SPDX-License-Identifier: MIT

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 10 of 16 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

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 11 of 16 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

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 12 of 16 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

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 13 of 16 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

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 14 of 16 : IERC721.sol
// SPDX-License-Identifier: MIT

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 15 of 16 : ERC721.sol
// SPDX-License-Identifier: MIT

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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //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 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 16 of 16 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DESCRIPTION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPEN_BLOCK_NUMBER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"canMint","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":[],"name":"getCurrentPeriodCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"isOpenForMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"reflektion","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"startBlock","type":"uint256"}],"name":"setStartBlock","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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6701cdda4faccd0000600b5562cd6b03600c55601e6102608181527f46303842323646424338364442423441343033413135314338313431344200006102805260809081526102a08281527f46303842323646314439433344394333423342423441343033413135314300006102c05260a0526102e08281527f39646166613546314439433365306333386164613339316232643266323300006103005260c0526103208281527f31313131313132303263323232663431333134303537343236303837373200006103405260e0526103608281527f443944464336326634313331363038373732423743414144454446304539000061038052610100526103a08281527f31313131313134343434343431313131313138383838383846424643444400006103c052610120526103e08281527f323732363433454545454646653366366635326336393864623266376566000061040052610140526104208281527f306630383462323634303862336436306137663764366530663262356434000061044052610160526104608281527f306630383462323634303862336436306137383162316435613064326537000061048052610180526104a08281527f33643561383039386331643962326637656665653663346432393332343100006104c0526101a0526104e08281527f6665393338636536623839636561643261633963616662373432383161340000610500526101c0526105208281527f3335353037303664353937616235363537366535366236666561616338620000610540526101e0526105608281527f333335633637464246434444463038423236396532613262353430623065000061058052610200526105a08281527f66376436653066326235643446393837433546424145443238363030326400006105c052610220526106206040526105e09182527f38433638374644314332434365666637663666376436653036643539376100006106005261024091909152620002ec90601190600f620004a1565b506040805160e081018252600460a08201818152630313030360e41b60c0840181905260608085019283528551808701875284815260208181018490526080808801929092529386528651808201885260038189018181526237313160e81b8386018190529083528951808b018b528881528088018790528388015286890192909252885192830189528289019687529282019390935293845285518087018752818152808401929092528383019190915293830191909152620003b392909190620004f8565b50348015620003c157600080fd5b50604080518082018252600c81526b2932b33632b5ba34b7b732b960a11b6020808301918252835180850190945260048452631491519360e21b908401528151919291620004129160009162000546565b5080516200042890600190602084019062000546565b505050620004456200043f6200044b60201b60201c565b6200044f565b62000710565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82600f8101928215620004e6579160200282015b82811115620004e65782518051620004d591849160209091019062000546565b5091602001919060010190620004b5565b50620004f4929150620005d1565b5090565b60068301918390821562000538579160200282015b8281111562000538578251620005279083906002620005f2565b50916020019190600201906200050d565b50620004f492915062000637565b8280546200055490620006d3565b90600052602060002090601f016020900481019282620005785760008555620005c3565b82601f106200059357805160ff1916838001178555620005c3565b82800160010185558215620005c3579182015b82811115620005c3578251825591602001919060010190620005a6565b50620004f492915062000658565b80821115620004f4576000620005e882826200066f565b50600101620005d1565b8260028101928215620004e6579160200282015b82811115620004e657825180516200062691849160209091019062000546565b509160200191906001019062000606565b80821115620004f45760006200064e8282620006b1565b5060020162000637565b5b80821115620004f4576000815560010162000659565b5080546200067d90620006d3565b6000825580601f106200068e575050565b601f016020900490600052602060002090810190620006ae919062000658565b50565b506000620006c082826200066f565b50620006d19060010160006200066f565b565b600181811c90821680620006e857607f821691505b602082108114156200070a57634e487b7160e01b600052602260045260246000fd5b50919050565b613c0b80620007206000396000f3fe6080604052600436106101d85760003560e01c8063715018a611610102578063c2ba474411610095578063e985e9c511610064578063e985e9c514610510578063f1ae885614610559578063f2fde38b1461056e578063f35e4a6e1461058e57600080fd5b8063c2ba4744146104a3578063c87b56dd146104c3578063cacf3142146104e3578063d5f8b760146104fb57600080fd5b806395d89b41116100d157806395d89b411461043b578063a0712d6814610450578063a22cb46514610463578063b88d4fde1461048357600080fd5b8063715018a6146103d25780638d859f3e146103e75780638da5cb5b146103fd57806391b7f5ed1461041b57600080fd5b80632f745c591161017a57806347c6d0f01161014957806347c6d0f0146103525780634f6ccce7146103725780636352211e1461039257806370a08231146103b257600080fd5b80632f745c59146102e757806332cb6b0c146103075780633ccfd60b1461031d57806342842e0e1461033257600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806311a429121461028e57806318160ddd146102b257806323b872dd146102c757600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004612be9565b6105ae565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b506102276105bf565b6040516102099190612c65565b34801561024057600080fd5b5061025461024f366004612c78565b610651565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004612cad565b6106eb565b005b34801561029a57600080fd5b506102a4600c5481565b604051908152602001610209565b3480156102be57600080fd5b506008546102a4565b3480156102d357600080fd5b5061028c6102e2366004612cd7565b610801565b3480156102f357600080fd5b506102a4610302366004612cad565b610832565b34801561031357600080fd5b506102a46103e781565b34801561032957600080fd5b5061028c6108c8565b34801561033e57600080fd5b5061028c61034d366004612cd7565b610980565b34801561035e57600080fd5b506102a461036d366004612c78565b61099b565b34801561037e57600080fd5b506102a461038d366004612c78565b6109b8565b34801561039e57600080fd5b506102546103ad366004612c78565b610a4b565b3480156103be57600080fd5b506102a46103cd366004612d13565b610ac2565b3480156103de57600080fd5b5061028c610b49565b3480156103f357600080fd5b506102a4600b5481565b34801561040957600080fd5b50600a546001600160a01b0316610254565b34801561042757600080fd5b5061028c610436366004612c78565b610b7f565b34801561044757600080fd5b50610227610bae565b61028c61045e366004612c78565b610bbd565b34801561046f57600080fd5b5061028c61047e366004612d2e565b610f7e565b34801561048f57600080fd5b5061028c61049e366004612d80565b611043565b3480156104af57600080fd5b506101fd6104be366004612d13565b61107b565b3480156104cf57600080fd5b506102276104de366004612c78565b6110dc565b3480156104ef57600080fd5b50600c544310156101fd565b34801561050757600080fd5b506102a4611de6565b34801561051c57600080fd5b506101fd61052b366004612e5c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561056557600080fd5b50610227611e0a565b34801561057a57600080fd5b5061028c610589366004612d13565b611e26565b34801561059a57600080fd5b5061028c6105a9366004612c78565b611ebe565b60006105b982611eed565b92915050565b6060600080546105ce90612e8f565b80601f01602080910402602001604051908101604052809291908181526020018280546105fa90612e8f565b80156106475780601f1061061c57610100808354040283529160200191610647565b820191906000526020600020905b81548152906001019060200180831161062a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106cf5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106f682610a4b565b9050806001600160a01b0316836001600160a01b031614156107645760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106c6565b336001600160a01b03821614806107805750610780813361052b565b6107f25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106c6565b6107fc8383611f12565b505050565b61080b3382611f80565b6108275760405162461bcd60e51b81526004016106c690612eca565b6107fc838383612077565b600061083d83610ac2565b821061089f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106c6565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146108f25760405162461bcd60e51b81526004016106c690612f1b565b604051600090339047908381818185875af1925050503d8060008114610934576040519150601f19603f3d011682016040523d82523d6000602084013e610939565b606091505b505090508061097d5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016106c6565b50565b6107fc83838360405180602001604052806000815250611043565b6000818152600e60205260408120546105b9906212d58990612f66565b60006109c360085490565b8210610a265760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106c6565b60088281548110610a3957610a39612f7a565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806105b95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106c6565b60006001600160a01b038216610b2d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106c6565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610b735760405162461bcd60e51b81526004016106c690612f1b565b610b7d6000612222565b565b600a546001600160a01b03163314610ba95760405162461bcd60e51b81526004016106c690612f1b565b600b55565b6060600180546105ce90612e8f565b600c54431015610c0f5760405162461bcd60e51b815260206004820152601960248201527f4e6f74206f70656e20666f72206d696e74696e6720796574210000000000000060448201526064016106c6565b6103e7610c1b60085490565b10610c545760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b60448201526064016106c6565b600081118015610c65575060058111155b610cce5760405162461bcd60e51b815260206004820152603460248201527f596f752063616e206d696e74206265747765656e203120616e64203520746f6b60448201527332b739903832b9103a3930b739b0b1ba34b7b71760611b60648201526084016106c6565b6103e781610cdb60085490565b610ce59190612fa6565b1115610d525760405162461bcd60e51b815260206004820152603660248201527f54686973207472616e73616374696f6e20776f756c64206c65616420746f20746044820152756f6f206d616e7920746f6b656e73206d696e7465642160501b60648201526084016106c6565b610d5f60036103e7612fbe565b81610d68611de6565b610d729190612fa6565b1115610ddc5760405162461bcd60e51b815260206004820152603360248201527f4e6f206d6f726520617661696c61626c6520746f206d696e742074686973207060448201527232b934b7b21610383632b0b9b2903437b6321760691b60648201526084016106c6565b80600b54610dea9190612fd2565b341015610e295760405162461bcd60e51b815260206004820152600d60248201526c14149250d157d393d517d35155609a1b60448201526064016106c6565b336000908152600f6020526040902054600590610e47908390612fa6565b1115610ea45760405162461bcd60e51b815260206004820152602660248201527f546869732077616c6c657420686173206d696e74656420746865206d6178206e604482015265756d6265722160d01b60648201526084016106c6565b60005b81811015610f7a576000610eba600d5490565b9050610ec63382612274565b8033604051602001610ef492919091825260601b6bffffffffffffffffffffffff1916602082015260340190565b60408051601f1981840301815291815281516020928301206000848152600e909352912055610f27600d80546001019055565b610f5160106000610f3a61708042612fbe565b815260200190815260200160002080546001019055565b336000908152600f60205260409020805460010190555080610f7281612ff1565b915050610ea7565b5050565b6001600160a01b038216331415610fd75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106c6565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61104d3383611f80565b6110695760405162461bcd60e51b81526004016106c690612eca565b6110758484848461228e565b50505050565b600061108a60036103e7612fbe565b611092611de6565b1080156110a15750600c544310155b80156110b657506103e76110b4600d5490565b105b80156105b95750506001600160a01b03166000908152600f602052604090205460051190565b6000818152600260205260409020546060906001600160a01b03166111435760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f7220756e6d696e74656420746f6b656e2069640060448201526064016106c6565b600061114e836122c1565b60405160200161115e9190613028565b60408051808303601f190181526000868152600e602052828120548385526108208501845291945090929091829182918160200160208202803683370190505090506111a8612b87565b60005b602081101561132a578581602081106111c6576111c6612f7a565b1a600f16836111d6836002612fd2565b815181106111e6576111e6612f7a565b602002602001018181525050600486826020811061120657611206612f7a565b1a60f81b6001600160f81b031916901c60f81c60ff168382600261122a9190612fd2565b611235906001612fa6565b8151811061124557611245612f7a565b60200260200101818152505060405180604001604052808483600261126a9190612fd2565b8151811061127a5761127a612f7a565b60200260200101518152602001848360026112959190612fd2565b6112a0906001612fa6565b815181106112b0576112b0612f7a565b6020026020010151876112c39190612fa6565b90528282602081106112d7576112d7612f7a565b6020020152826112e8826002612fd2565b6112f3906001612fa6565b8151811061130357611303612f7a565b6020026020010151856113169190612fa6565b9450611323600182612fa6565b90506111ab565b50606060006020600385602a8151811061134657611346612f7a565b60200260200101516113589190612f66565b6003811061136857611368612f7a565b6040805180820190915291600291820201906000835b8282101561142157838201805461139490612e8f565b80601f01602080910402602001604051908101604052809291908181526020018280546113c090612e8f565b801561140d5780601f106113e25761010080835404028352916020019161140d565b820191906000526020600020905b8154815290600101906020018083116113f057829003601f168201915b50505050508152602001906001019061137e565b50505050905060008160006002811061143c5761143c612f7a565b6020020151826001602002015160405160200161145a92919061305c565b604051602081830303815290604052905060005b60048110156115ea5781611481826122c1565b61156d61148f846006612fd2565b61149a856001612fa6565b6114a5906006612fd2565b6011600f8c600d815181106114bc576114bc612f7a565b60200260200101516114ce9190612f66565b600f81106114de576114de612f7a565b0180546114ea90612e8f565b80601f016020809104026020016040519081016040528092919081815260200182805461151690612e8f565b80156115635780601f1061153857610100808354040283529160200191611563565b820191906000526020600020905b81548152906001019060200180831161154657829003601f168201915b50505050506123bf565b6115b361157b856001612fa6565b611586906006612fd2565b611591866002612fa6565b61159c906006612fd2565b6011600f8d600d815181106114bc576114bc612f7a565b6040516020016115c69493929190613102565b604051602081830303815290604052915080806115e290612ff1565b91505061146e565b5080600b86603f8151811061160157611601612f7a565b602002602001015110611623576040518060200160405280600081525061163e565b604051806040016040528060018152602001600360fc1b8152505b611685600f88603f8151811061165657611656612f7a565b602002602001015161044c61166b9190612fd2565b6116759190612fbe565b6116809060c8612fa6565b6122c1565b600788603e8151811061169a5761169a612f7a565b6020026020010151116116bc57604051806020016040528060008152506116d7565b604051806040016040528060018152602001600360fc1b8152505b611719600f8a603e815181106116ef576116ef612f7a565b60200260200101516101f46117049190612fd2565b61170e9190612fbe565b611680906064612fa6565b60078a60198151811061172e5761172e612f7a565b602002602001015111611765576040518060400160405280600c81526020016b6672616374616c4e6f69736560a01b815250611789565b6040518060400160405280600a81526020016974757262756c656e636560b01b8152505b60405160200161179e9695949392919061323e565b6040516020818303038152906040529050806117e5600487603d815181106117c8576117c8612f7a565b60200260200101516117da9190612fbe565b611680906002612fa6565b6117f561168062919dd98c612f66565b60058860328151811061180a5761180a612f7a565b60200260200101511161187b5760048860338151811061182c5761182c612f7a565b60200260200101511161185a576040518060400160405280600381526020016203138360ec1b8152506118db565b6040518060400160405280600381526020016203133360ec1b8152506118db565b60038860338151811061189057611890612f7a565b6020026020010151116118be576040518060400160405280600381526020016203230360ec1b8152506118db565b6040518060400160405280600381526020016203335360ec1b8152505b85516020808801516040516118f59796959493920161332c565b60408051601f198184030181529190529050808260006020020151836001602002015161196d60048960218151811061193057611930612f7a565b602002602001015160405160200161194a91815260200190565b6040516020818303038152906040528051906020012060001c6116809190612f66565b60405160200161198094939291906134c6565b604051602081830303815290604052905060005b6020811015611d9557600f8582602081106119b1576119b1612f7a565b6020020151516119c3906101f4612fd2565b6119cd9190612fbe565b96506005866032815181106119e4576119e4612f7a565b60200260200101511115611ab057611a2a88868360208110611a0857611a08612f7a565b602002015160016020020151611a20906103e8612fd2565b6116809190612fbe565b935081611a36886122c1565b85611a5860048a611a48876002612fd2565b8151811061193057611930612f7a565b611a676116808c6101f4612fa6565b88611a8460048d611a798a6002612fd2565b611a48906001612fa6565b604051602001611a9a97969594939291906135c0565b6040516020818303038152906040529150611d83565b611b178887611ac0846002612fd2565b611acb906001612fa6565b81518110611adb57611adb612f7a565b6020026020010151878460208110611af557611af5612f7a565b602002015160016020020151611b0b91906136ef565b611a20906103e8612fd2565b93506000604051602001611b3290600360fc1b815260010190565b6040516020818303038152906040528051906020012085604051602001611b599190613706565b604051602081830303815290604052805190602001201490508281611b7e5785611b9b565b6040518060400160405280600381526020016202d37360ec1b8152505b611ba96116808b6046612fa6565b600b8a603281518110611bbe57611bbe612f7a565b602002602001015110611bde57611bd96116808c6046612fa6565b611c78565b83611c2357611bd98c8b611bf3886002612fd2565b611bfe906001612fa6565b81518110611c0e57611c0e612f7a565b60200260200101516103e8611a209190612fd2565b611c788c8b611c33886002612fd2565b611c3e906001612fa6565b81518110611c4e57611c4e612f7a565b60200260200101516103e8611c639190612fd2565b611c6d9190612fbe565b611680906046612fa6565b611c8960048c611a48896002612fd2565b604051602001611c9d959493929190613722565b604051602081830303815290604052925082611cb8896122c1565b82611cc35786611ce0565b6040518060400160405280600381526020016202d37360ec1b8152505b611cef6116808c61042e6136ef565b600b8b603281518110611d0457611d04612f7a565b602002602001015110611d2557611d206116808d61042e6136ef565b611d4a565b84611d3a57611d208d8c611bf3896002612fd2565b611d4a8d8c611c33896002612fd2565b611d5b60048d611a798a6002612fd2565b604051602001611d709695949392919061380f565b6040516020818303038152906040529250505b80611d8d81612ff1565b915050611994565b5080604051602001611da791906138ef565b60408051601f1981840301815260e0830190915260b2808352909250611dd7918b91613b2460208301398361248c565b9b9a5050505050505050505050565b600080611df561708042612fbe565b60009081526010602052604090205492915050565b6040518060e0016040528060b28152602001613b2460b2913981565b600a546001600160a01b03163314611e505760405162461bcd60e51b81526004016106c690612f1b565b6001600160a01b038116611eb55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106c6565b61097d81612222565b600a546001600160a01b03163314611ee85760405162461bcd60e51b81526004016106c690612f1b565b600c55565b60006001600160e01b0319821663780e9d6360e01b14806105b957506105b9826124f0565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611f4782610a4b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611ff95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106c6565b600061200483610a4b565b9050806001600160a01b0316846001600160a01b0316148061203f5750836001600160a01b031661203484610651565b6001600160a01b0316145b8061206f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661208a82610a4b565b6001600160a01b0316146120f25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106c6565b6001600160a01b0382166121545760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106c6565b61215f838383612540565b61216a600082611f12565b6001600160a01b03831660009081526003602052604081208054600192906121939084906136ef565b90915550506001600160a01b03821660009081526003602052604081208054600192906121c1908490612fa6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610f7a82826040518060200160405280600081525061254b565b612299848484612077565b6122a58484848461257e565b6110755760405162461bcd60e51b81526004016106c69061391d565b6060816122e55750506040805180820190915260018152600360fc1b602082015290565b8160005b811561230f57806122f981612ff1565b91506123089050600a83612fbe565b91506122e9565b60008167ffffffffffffffff81111561232a5761232a612d6a565b6040519080825280601f01601f191660200182016040528015612354576020820181803683370190505b5090505b841561206f576123696001836136ef565b9150612376600a86612f66565b612381906030612fa6565b60f81b81838151811061239657612396612f7a565b60200101906001600160f81b031916908160001a9053506123b8600a86612fbe565b9450612358565b60608160006123ce86866136ef565b67ffffffffffffffff8111156123e6576123e6612d6a565b6040519080825280601f01601f191660200182016040528015612410576020820181803683370190505b509050855b858110156124825782818151811061242f5761242f612f7a565b01602001516001600160f81b0319168261244989846136ef565b8151811061245957612459612f7a565b60200101906001600160f81b031916908160001a9053508061247a81612ff1565b915050612415565b5095945050505050565b60606000848461249b8561268b565b6040516020016124ad9392919061396f565b60405160208183030381529060405290506124c78161268b565b6040516020016124d79190613a2e565b6040516020818303038152906040529150509392505050565b60006001600160e01b031982166380ac58cd60e01b148061252157506001600160e01b03198216635b5e139f60e01b145b806105b957506301ffc9a760e01b6001600160e01b03198316146105b9565b6107fc8383836127f1565b61255583836128a9565b612562600084848461257e565b6107fc5760405162461bcd60e51b81526004016106c69061391d565b60006001600160a01b0384163b1561268057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906125c2903390899088908890600401613a73565b602060405180830381600087803b1580156125dc57600080fd5b505af192505050801561260c575060408051601f3d908101601f1916820190925261260991810190613ab0565b60015b612666573d80801561263a576040519150601f19603f3d011682016040523d82523d6000602084013e61263f565b606091505b50805161265e5760405162461bcd60e51b81526004016106c69061391d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061206f565b506001949350505050565b8051606090806126ab575050604080516020810190915260008152919050565b600060036126ba836002612fa6565b6126c49190612fbe565b6126cf906004612fd2565b905060006126de826020612fa6565b67ffffffffffffffff8111156126f6576126f6612d6a565b6040519080825280601f01601f191660200182016040528015612720576020820181803683370190505b5090506000604051806060016040528060408152602001613ae4604091399050600181016020830160005b868110156127ac576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b83526004909201910161274b565b5060038606600181146127c657600281146127d7576127e3565b613d3d60f01b6001198301526127e3565b603d60f81b6000198301525b505050918152949350505050565b6001600160a01b03831661284c5761284781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61286f565b816001600160a01b0316836001600160a01b03161461286f5761286f83826129f7565b6001600160a01b038216612886576107fc81612a94565b826001600160a01b0316826001600160a01b0316146107fc576107fc8282612b43565b6001600160a01b0382166128ff5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106c6565b6000818152600260205260409020546001600160a01b0316156129645760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106c6565b61297060008383612540565b6001600160a01b0382166000908152600360205260408120805460019290612999908490612fa6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001612a0484610ac2565b612a0e91906136ef565b600083815260076020526040902054909150808214612a61576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612aa6906001906136ef565b60008381526009602052604081205460088054939450909284908110612ace57612ace612f7a565b906000526020600020015490508060088381548110612aef57612aef612f7a565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612b2757612b27613acd565b6001900381819060005260206000200160009055905550505050565b6000612b4e83610ac2565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6040518061040001604052806020905b612b9f612bb5565b815260200190600190039081612b975790505090565b60405180604001604052806002906020820280368337509192915050565b6001600160e01b03198116811461097d57600080fd5b600060208284031215612bfb57600080fd5b8135612c0681612bd3565b9392505050565b60005b83811015612c28578181015183820152602001612c10565b838111156110755750506000910152565b60008151808452612c51816020860160208601612c0d565b601f01601f19169290920160200192915050565b602081526000612c066020830184612c39565b600060208284031215612c8a57600080fd5b5035919050565b80356001600160a01b0381168114612ca857600080fd5b919050565b60008060408385031215612cc057600080fd5b612cc983612c91565b946020939093013593505050565b600080600060608486031215612cec57600080fd5b612cf584612c91565b9250612d0360208501612c91565b9150604084013590509250925092565b600060208284031215612d2557600080fd5b612c0682612c91565b60008060408385031215612d4157600080fd5b612d4a83612c91565b915060208301358015158114612d5f57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215612d9657600080fd5b612d9f85612c91565b9350612dad60208601612c91565b925060408501359150606085013567ffffffffffffffff80821115612dd157600080fd5b818701915087601f830112612de557600080fd5b813581811115612df757612df7612d6a565b604051601f8201601f19908116603f01168101908382118183101715612e1f57612e1f612d6a565b816040528281528a6020848701011115612e3857600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215612e6f57600080fd5b612e7883612c91565b9150612e8660208401612c91565b90509250929050565b600181811c90821680612ea357607f821691505b60208210811415612ec457634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601260045260246000fd5b600082612f7557612f75612f50565b500690565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008219821115612fb957612fb9612f90565b500190565b600082612fcd57612fcd612f50565b500490565b6000816000190483118215151615612fec57612fec612f90565b500290565b600060001982141561300557613005612f90565b5060010190565b6000815161301e818560208601612c0d565b9290920192915050565b6b5265666c656b74696f6e202360a01b81526000825161304f81600c850160208701612c0d565b91909101600c0192915050565b7f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f32308152740181817b9bb3391103b34b2bba137bc1e911810181605d1b6020820152600083516130b2816035850160208801612c0d565b600160fd1b60359184019182015283516130d3816036840160208801612c0d565b7511103b32b939b4b7b71e91189718911f1e3232b3399f60511b60369290910191820152604c01949350505050565b60008551613114818460208a01612c0d565b743c6c696e6561724772616469656e742069643d226760581b9083019081528551613146816015840160208a01612c0d565b7f222078313d223025222079313d223025222078323d2231303025222079323d22601592909101918201527f31303025223e3c73746f70206f66667365743d22302522207374796c653d227360358201526a746f702d636f6c6f723a2360a81b605582015284516131be816060840160208901612c0d565b7f222f3e3c73746f70206f66667365743d223130302522207374796c653d22737460609290910191820152696f702d636f6c6f723a2360b01b6080820152835161320f81608a840160208801612c0d565b7311179f1e17b634b732b0b923b930b234b2b73a1f60611b608a9290910191820152609e019695505050505050565b6000875160206132518285838d01612c0d565b7f3c66696c7465722069643d226466223e3c666554757262756c656e63652062619184019182526f073654672657175656e63793d22302e360841b8183015288516132a281603085018c8501612c0d565b88519201916132b78160308501848c01612c0d565b631610181760e11b6030939091019283015286516132db8160348501848b01612c0d565b86519201916132f08160348501848a01612c0d565b6711103a3cb8329e9160c11b60349390910192830152845161331881603c8501848901612c0d565b91909101603c019998505050505050505050565b6000875161333e818460208c01612c0d565b6d1110373ab6a7b1ba30bb32b99e9160911b908301908152875161336981600e840160208c01612c0d565b7211103932b9bab63a1e913a111039b2b2b21e9160691b600e9290910191820152865161339d816021840160208b01612c0d565b7f222f3e3c6665446973706c6163656d656e744d617020696e323d22742220696e602192909101918201527f3d22536f757263654772617068696322207363616c653d22000000000000000060418201528551613401816059840160208a01612c0d565b7f2220784368616e6e656c53656c6563746f723d2252222f3e3c2f66696c746572605992909101918201527f3e3c636c6970506174682069643d2263223e3c7265637420783d22302220793d60798201526a111811103bb4b23a341e9160a91b60998201526134b961349861349261347c60a485018961300c565b6911103432b4b3b43a1e9160b11b8152600a0190565b8661300c565b7411179f1e17b1b634b82830ba341f1e17b232b3399f60591b815260150190565b9998505050505050505050565b600085516134d8818460208a01612c0d565b7f3c7265637420783d22302220793d2230222077696474683d22000000000000009083019081528551613512816019840160208a01612c0d565b6911103432b4b3b43a1e9160b11b60199290910191820152845161353d816023840160208901612c0d565b6d222066696c6c3d2275726c28236760901b60239290910191820152835161356c816031840160208801612c0d565b7f29223e3c2f726563743e3c6720636c69702d706174683d2275726c28236329226031929091019182015272103334b63a32b91e913ab9361411b23314911f60691b60518201526064019695505050505050565b600088516135d2818460208d01612c0d565b6b1e31b4b931b6329031bc1e9160a11b90830190815288516135fb81600c840160208d01612c0d565b65111031bc9e9160d11b600c92909101918201528751613622816012840160208c01612c0d565b752220723d22323030222066696c6c3d2275726c28236760501b601292909101918201528651613659816028840160208b01612c0d565b6f1491179f1e31b4b931b6329031bc1e9160811b60289290910191820152855161368a816038840160208a01612c0d565b611dd76136df6136d96136b76136b160388688010165111031bc9e9160d11b815260060190565b8a61300c565b752220723d22323030222066696c6c3d2275726c28236760501b815260160190565b8761300c565b631491179f60e11b815260040190565b60008282101561370157613701612f90565b500390565b60008251613718818460208701612c0d565b9190910192915050565b60008651613734818460208b01612c0d565b701e3932b1ba103c1e91169b9811103c9e9160791b9083019081528651613762816011840160208b01612c0d565b6811103bb4b23a341e9160b91b60119290910191820152855161378c81601a840160208a01612c0d565b6911103432b4b3b43a1e9160b11b601a929091019182015284516137b7816024840160208901612c0d565b6d222066696c6c3d2275726c28236760901b6024929091019182015283516137e6816032840160208801612c0d565b6c1491179f1e3932b1ba103c1e9160991b60329290910191820152603f01979650505050505050565b6000875160206138228285838d01612c0d565b8851918401916138358184848d01612c0d565b6411103c9e9160d91b920191825287516138558160058501848c01612c0d565b6811103bb4b23a341e9160b91b60059390910192830152865161387e81600e8501848b01612c0d565b6911103432b4b3b43a1e9160b11b600e939091019283015285516138a88160188501848a01612c0d565b6d222066696c6c3d2275726c28236760901b6018939091019283015284516138d68160268501848901612c0d565b611dd7602682850101631491179f60e11b815260040190565b60008251613901818460208701612c0d565b691e17b39f1e17b9bb339f60b11b920191825250600a01919050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b683d913730b6b2911d1160b91b81528351600090613994816009850160208901612c0d565b701116113232b9b1b934b83a34b7b7111d1160791b60099184019182015284516139c581601a840160208901612c0d565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c3b62601a929091019182015265185cd94d8d0b60d21b603a8201528351613a12816040840160208801612c0d565b61227d60f01b6040929091019182015260420195945050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251613a6681601d850160208701612c0d565b91909101601d0192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613aa690830184612c39565b9695505050505050565b600060208284031215613ac257600080fd5b8151612c0681612bd3565b634e487b7160e01b600052603160045260246000fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f47656e65726174697665206162737472616374207265666c656374696f6e73206f6620686967682064696d656e73696f6e616c207269766572732067656e65726174656420656e746972656c79206f6e2d636861696e2e205265666c656b74696f6e6572206973207468652066697273742073746570206f6620612076697375616c206a6f75726e657920696e2061206c6174656e74207370616365206f66206e6f697379207265666c656374696f6e732ea264697066735822122098a81b639ead22d06c17c531e4b30374c582fe42c16676174b544bd40891eff164736f6c63430008090033

Deployed Bytecode

0x6080604052600436106101d85760003560e01c8063715018a611610102578063c2ba474411610095578063e985e9c511610064578063e985e9c514610510578063f1ae885614610559578063f2fde38b1461056e578063f35e4a6e1461058e57600080fd5b8063c2ba4744146104a3578063c87b56dd146104c3578063cacf3142146104e3578063d5f8b760146104fb57600080fd5b806395d89b41116100d157806395d89b411461043b578063a0712d6814610450578063a22cb46514610463578063b88d4fde1461048357600080fd5b8063715018a6146103d25780638d859f3e146103e75780638da5cb5b146103fd57806391b7f5ed1461041b57600080fd5b80632f745c591161017a57806347c6d0f01161014957806347c6d0f0146103525780634f6ccce7146103725780636352211e1461039257806370a08231146103b257600080fd5b80632f745c59146102e757806332cb6b0c146103075780633ccfd60b1461031d57806342842e0e1461033257600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806311a429121461028e57806318160ddd146102b257806323b872dd146102c757600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004612be9565b6105ae565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b506102276105bf565b6040516102099190612c65565b34801561024057600080fd5b5061025461024f366004612c78565b610651565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004612cad565b6106eb565b005b34801561029a57600080fd5b506102a4600c5481565b604051908152602001610209565b3480156102be57600080fd5b506008546102a4565b3480156102d357600080fd5b5061028c6102e2366004612cd7565b610801565b3480156102f357600080fd5b506102a4610302366004612cad565b610832565b34801561031357600080fd5b506102a46103e781565b34801561032957600080fd5b5061028c6108c8565b34801561033e57600080fd5b5061028c61034d366004612cd7565b610980565b34801561035e57600080fd5b506102a461036d366004612c78565b61099b565b34801561037e57600080fd5b506102a461038d366004612c78565b6109b8565b34801561039e57600080fd5b506102546103ad366004612c78565b610a4b565b3480156103be57600080fd5b506102a46103cd366004612d13565b610ac2565b3480156103de57600080fd5b5061028c610b49565b3480156103f357600080fd5b506102a4600b5481565b34801561040957600080fd5b50600a546001600160a01b0316610254565b34801561042757600080fd5b5061028c610436366004612c78565b610b7f565b34801561044757600080fd5b50610227610bae565b61028c61045e366004612c78565b610bbd565b34801561046f57600080fd5b5061028c61047e366004612d2e565b610f7e565b34801561048f57600080fd5b5061028c61049e366004612d80565b611043565b3480156104af57600080fd5b506101fd6104be366004612d13565b61107b565b3480156104cf57600080fd5b506102276104de366004612c78565b6110dc565b3480156104ef57600080fd5b50600c544310156101fd565b34801561050757600080fd5b506102a4611de6565b34801561051c57600080fd5b506101fd61052b366004612e5c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561056557600080fd5b50610227611e0a565b34801561057a57600080fd5b5061028c610589366004612d13565b611e26565b34801561059a57600080fd5b5061028c6105a9366004612c78565b611ebe565b60006105b982611eed565b92915050565b6060600080546105ce90612e8f565b80601f01602080910402602001604051908101604052809291908181526020018280546105fa90612e8f565b80156106475780601f1061061c57610100808354040283529160200191610647565b820191906000526020600020905b81548152906001019060200180831161062a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106cf5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106f682610a4b565b9050806001600160a01b0316836001600160a01b031614156107645760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106c6565b336001600160a01b03821614806107805750610780813361052b565b6107f25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106c6565b6107fc8383611f12565b505050565b61080b3382611f80565b6108275760405162461bcd60e51b81526004016106c690612eca565b6107fc838383612077565b600061083d83610ac2565b821061089f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106c6565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146108f25760405162461bcd60e51b81526004016106c690612f1b565b604051600090339047908381818185875af1925050503d8060008114610934576040519150601f19603f3d011682016040523d82523d6000602084013e610939565b606091505b505090508061097d5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016106c6565b50565b6107fc83838360405180602001604052806000815250611043565b6000818152600e60205260408120546105b9906212d58990612f66565b60006109c360085490565b8210610a265760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106c6565b60088281548110610a3957610a39612f7a565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806105b95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106c6565b60006001600160a01b038216610b2d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106c6565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610b735760405162461bcd60e51b81526004016106c690612f1b565b610b7d6000612222565b565b600a546001600160a01b03163314610ba95760405162461bcd60e51b81526004016106c690612f1b565b600b55565b6060600180546105ce90612e8f565b600c54431015610c0f5760405162461bcd60e51b815260206004820152601960248201527f4e6f74206f70656e20666f72206d696e74696e6720796574210000000000000060448201526064016106c6565b6103e7610c1b60085490565b10610c545760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b60448201526064016106c6565b600081118015610c65575060058111155b610cce5760405162461bcd60e51b815260206004820152603460248201527f596f752063616e206d696e74206265747765656e203120616e64203520746f6b60448201527332b739903832b9103a3930b739b0b1ba34b7b71760611b60648201526084016106c6565b6103e781610cdb60085490565b610ce59190612fa6565b1115610d525760405162461bcd60e51b815260206004820152603660248201527f54686973207472616e73616374696f6e20776f756c64206c65616420746f20746044820152756f6f206d616e7920746f6b656e73206d696e7465642160501b60648201526084016106c6565b610d5f60036103e7612fbe565b81610d68611de6565b610d729190612fa6565b1115610ddc5760405162461bcd60e51b815260206004820152603360248201527f4e6f206d6f726520617661696c61626c6520746f206d696e742074686973207060448201527232b934b7b21610383632b0b9b2903437b6321760691b60648201526084016106c6565b80600b54610dea9190612fd2565b341015610e295760405162461bcd60e51b815260206004820152600d60248201526c14149250d157d393d517d35155609a1b60448201526064016106c6565b336000908152600f6020526040902054600590610e47908390612fa6565b1115610ea45760405162461bcd60e51b815260206004820152602660248201527f546869732077616c6c657420686173206d696e74656420746865206d6178206e604482015265756d6265722160d01b60648201526084016106c6565b60005b81811015610f7a576000610eba600d5490565b9050610ec63382612274565b8033604051602001610ef492919091825260601b6bffffffffffffffffffffffff1916602082015260340190565b60408051601f1981840301815291815281516020928301206000848152600e909352912055610f27600d80546001019055565b610f5160106000610f3a61708042612fbe565b815260200190815260200160002080546001019055565b336000908152600f60205260409020805460010190555080610f7281612ff1565b915050610ea7565b5050565b6001600160a01b038216331415610fd75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106c6565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61104d3383611f80565b6110695760405162461bcd60e51b81526004016106c690612eca565b6110758484848461228e565b50505050565b600061108a60036103e7612fbe565b611092611de6565b1080156110a15750600c544310155b80156110b657506103e76110b4600d5490565b105b80156105b95750506001600160a01b03166000908152600f602052604090205460051190565b6000818152600260205260409020546060906001600160a01b03166111435760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f7220756e6d696e74656420746f6b656e2069640060448201526064016106c6565b600061114e836122c1565b60405160200161115e9190613028565b60408051808303601f190181526000868152600e602052828120548385526108208501845291945090929091829182918160200160208202803683370190505090506111a8612b87565b60005b602081101561132a578581602081106111c6576111c6612f7a565b1a600f16836111d6836002612fd2565b815181106111e6576111e6612f7a565b602002602001018181525050600486826020811061120657611206612f7a565b1a60f81b6001600160f81b031916901c60f81c60ff168382600261122a9190612fd2565b611235906001612fa6565b8151811061124557611245612f7a565b60200260200101818152505060405180604001604052808483600261126a9190612fd2565b8151811061127a5761127a612f7a565b60200260200101518152602001848360026112959190612fd2565b6112a0906001612fa6565b815181106112b0576112b0612f7a565b6020026020010151876112c39190612fa6565b90528282602081106112d7576112d7612f7a565b6020020152826112e8826002612fd2565b6112f3906001612fa6565b8151811061130357611303612f7a565b6020026020010151856113169190612fa6565b9450611323600182612fa6565b90506111ab565b50606060006020600385602a8151811061134657611346612f7a565b60200260200101516113589190612f66565b6003811061136857611368612f7a565b6040805180820190915291600291820201906000835b8282101561142157838201805461139490612e8f565b80601f01602080910402602001604051908101604052809291908181526020018280546113c090612e8f565b801561140d5780601f106113e25761010080835404028352916020019161140d565b820191906000526020600020905b8154815290600101906020018083116113f057829003601f168201915b50505050508152602001906001019061137e565b50505050905060008160006002811061143c5761143c612f7a565b6020020151826001602002015160405160200161145a92919061305c565b604051602081830303815290604052905060005b60048110156115ea5781611481826122c1565b61156d61148f846006612fd2565b61149a856001612fa6565b6114a5906006612fd2565b6011600f8c600d815181106114bc576114bc612f7a565b60200260200101516114ce9190612f66565b600f81106114de576114de612f7a565b0180546114ea90612e8f565b80601f016020809104026020016040519081016040528092919081815260200182805461151690612e8f565b80156115635780601f1061153857610100808354040283529160200191611563565b820191906000526020600020905b81548152906001019060200180831161154657829003601f168201915b50505050506123bf565b6115b361157b856001612fa6565b611586906006612fd2565b611591866002612fa6565b61159c906006612fd2565b6011600f8d600d815181106114bc576114bc612f7a565b6040516020016115c69493929190613102565b604051602081830303815290604052915080806115e290612ff1565b91505061146e565b5080600b86603f8151811061160157611601612f7a565b602002602001015110611623576040518060200160405280600081525061163e565b604051806040016040528060018152602001600360fc1b8152505b611685600f88603f8151811061165657611656612f7a565b602002602001015161044c61166b9190612fd2565b6116759190612fbe565b6116809060c8612fa6565b6122c1565b600788603e8151811061169a5761169a612f7a565b6020026020010151116116bc57604051806020016040528060008152506116d7565b604051806040016040528060018152602001600360fc1b8152505b611719600f8a603e815181106116ef576116ef612f7a565b60200260200101516101f46117049190612fd2565b61170e9190612fbe565b611680906064612fa6565b60078a60198151811061172e5761172e612f7a565b602002602001015111611765576040518060400160405280600c81526020016b6672616374616c4e6f69736560a01b815250611789565b6040518060400160405280600a81526020016974757262756c656e636560b01b8152505b60405160200161179e9695949392919061323e565b6040516020818303038152906040529050806117e5600487603d815181106117c8576117c8612f7a565b60200260200101516117da9190612fbe565b611680906002612fa6565b6117f561168062919dd98c612f66565b60058860328151811061180a5761180a612f7a565b60200260200101511161187b5760048860338151811061182c5761182c612f7a565b60200260200101511161185a576040518060400160405280600381526020016203138360ec1b8152506118db565b6040518060400160405280600381526020016203133360ec1b8152506118db565b60038860338151811061189057611890612f7a565b6020026020010151116118be576040518060400160405280600381526020016203230360ec1b8152506118db565b6040518060400160405280600381526020016203335360ec1b8152505b85516020808801516040516118f59796959493920161332c565b60408051601f198184030181529190529050808260006020020151836001602002015161196d60048960218151811061193057611930612f7a565b602002602001015160405160200161194a91815260200190565b6040516020818303038152906040528051906020012060001c6116809190612f66565b60405160200161198094939291906134c6565b604051602081830303815290604052905060005b6020811015611d9557600f8582602081106119b1576119b1612f7a565b6020020151516119c3906101f4612fd2565b6119cd9190612fbe565b96506005866032815181106119e4576119e4612f7a565b60200260200101511115611ab057611a2a88868360208110611a0857611a08612f7a565b602002015160016020020151611a20906103e8612fd2565b6116809190612fbe565b935081611a36886122c1565b85611a5860048a611a48876002612fd2565b8151811061193057611930612f7a565b611a676116808c6101f4612fa6565b88611a8460048d611a798a6002612fd2565b611a48906001612fa6565b604051602001611a9a97969594939291906135c0565b6040516020818303038152906040529150611d83565b611b178887611ac0846002612fd2565b611acb906001612fa6565b81518110611adb57611adb612f7a565b6020026020010151878460208110611af557611af5612f7a565b602002015160016020020151611b0b91906136ef565b611a20906103e8612fd2565b93506000604051602001611b3290600360fc1b815260010190565b6040516020818303038152906040528051906020012085604051602001611b599190613706565b604051602081830303815290604052805190602001201490508281611b7e5785611b9b565b6040518060400160405280600381526020016202d37360ec1b8152505b611ba96116808b6046612fa6565b600b8a603281518110611bbe57611bbe612f7a565b602002602001015110611bde57611bd96116808c6046612fa6565b611c78565b83611c2357611bd98c8b611bf3886002612fd2565b611bfe906001612fa6565b81518110611c0e57611c0e612f7a565b60200260200101516103e8611a209190612fd2565b611c788c8b611c33886002612fd2565b611c3e906001612fa6565b81518110611c4e57611c4e612f7a565b60200260200101516103e8611c639190612fd2565b611c6d9190612fbe565b611680906046612fa6565b611c8960048c611a48896002612fd2565b604051602001611c9d959493929190613722565b604051602081830303815290604052925082611cb8896122c1565b82611cc35786611ce0565b6040518060400160405280600381526020016202d37360ec1b8152505b611cef6116808c61042e6136ef565b600b8b603281518110611d0457611d04612f7a565b602002602001015110611d2557611d206116808d61042e6136ef565b611d4a565b84611d3a57611d208d8c611bf3896002612fd2565b611d4a8d8c611c33896002612fd2565b611d5b60048d611a798a6002612fd2565b604051602001611d709695949392919061380f565b6040516020818303038152906040529250505b80611d8d81612ff1565b915050611994565b5080604051602001611da791906138ef565b60408051601f1981840301815260e0830190915260b2808352909250611dd7918b91613b2460208301398361248c565b9b9a5050505050505050505050565b600080611df561708042612fbe565b60009081526010602052604090205492915050565b6040518060e0016040528060b28152602001613b2460b2913981565b600a546001600160a01b03163314611e505760405162461bcd60e51b81526004016106c690612f1b565b6001600160a01b038116611eb55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106c6565b61097d81612222565b600a546001600160a01b03163314611ee85760405162461bcd60e51b81526004016106c690612f1b565b600c55565b60006001600160e01b0319821663780e9d6360e01b14806105b957506105b9826124f0565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611f4782610a4b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611ff95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106c6565b600061200483610a4b565b9050806001600160a01b0316846001600160a01b0316148061203f5750836001600160a01b031661203484610651565b6001600160a01b0316145b8061206f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661208a82610a4b565b6001600160a01b0316146120f25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106c6565b6001600160a01b0382166121545760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106c6565b61215f838383612540565b61216a600082611f12565b6001600160a01b03831660009081526003602052604081208054600192906121939084906136ef565b90915550506001600160a01b03821660009081526003602052604081208054600192906121c1908490612fa6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610f7a82826040518060200160405280600081525061254b565b612299848484612077565b6122a58484848461257e565b6110755760405162461bcd60e51b81526004016106c69061391d565b6060816122e55750506040805180820190915260018152600360fc1b602082015290565b8160005b811561230f57806122f981612ff1565b91506123089050600a83612fbe565b91506122e9565b60008167ffffffffffffffff81111561232a5761232a612d6a565b6040519080825280601f01601f191660200182016040528015612354576020820181803683370190505b5090505b841561206f576123696001836136ef565b9150612376600a86612f66565b612381906030612fa6565b60f81b81838151811061239657612396612f7a565b60200101906001600160f81b031916908160001a9053506123b8600a86612fbe565b9450612358565b60608160006123ce86866136ef565b67ffffffffffffffff8111156123e6576123e6612d6a565b6040519080825280601f01601f191660200182016040528015612410576020820181803683370190505b509050855b858110156124825782818151811061242f5761242f612f7a565b01602001516001600160f81b0319168261244989846136ef565b8151811061245957612459612f7a565b60200101906001600160f81b031916908160001a9053508061247a81612ff1565b915050612415565b5095945050505050565b60606000848461249b8561268b565b6040516020016124ad9392919061396f565b60405160208183030381529060405290506124c78161268b565b6040516020016124d79190613a2e565b6040516020818303038152906040529150509392505050565b60006001600160e01b031982166380ac58cd60e01b148061252157506001600160e01b03198216635b5e139f60e01b145b806105b957506301ffc9a760e01b6001600160e01b03198316146105b9565b6107fc8383836127f1565b61255583836128a9565b612562600084848461257e565b6107fc5760405162461bcd60e51b81526004016106c69061391d565b60006001600160a01b0384163b1561268057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906125c2903390899088908890600401613a73565b602060405180830381600087803b1580156125dc57600080fd5b505af192505050801561260c575060408051601f3d908101601f1916820190925261260991810190613ab0565b60015b612666573d80801561263a576040519150601f19603f3d011682016040523d82523d6000602084013e61263f565b606091505b50805161265e5760405162461bcd60e51b81526004016106c69061391d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061206f565b506001949350505050565b8051606090806126ab575050604080516020810190915260008152919050565b600060036126ba836002612fa6565b6126c49190612fbe565b6126cf906004612fd2565b905060006126de826020612fa6565b67ffffffffffffffff8111156126f6576126f6612d6a565b6040519080825280601f01601f191660200182016040528015612720576020820181803683370190505b5090506000604051806060016040528060408152602001613ae4604091399050600181016020830160005b868110156127ac576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b83526004909201910161274b565b5060038606600181146127c657600281146127d7576127e3565b613d3d60f01b6001198301526127e3565b603d60f81b6000198301525b505050918152949350505050565b6001600160a01b03831661284c5761284781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61286f565b816001600160a01b0316836001600160a01b03161461286f5761286f83826129f7565b6001600160a01b038216612886576107fc81612a94565b826001600160a01b0316826001600160a01b0316146107fc576107fc8282612b43565b6001600160a01b0382166128ff5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106c6565b6000818152600260205260409020546001600160a01b0316156129645760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106c6565b61297060008383612540565b6001600160a01b0382166000908152600360205260408120805460019290612999908490612fa6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001612a0484610ac2565b612a0e91906136ef565b600083815260076020526040902054909150808214612a61576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612aa6906001906136ef565b60008381526009602052604081205460088054939450909284908110612ace57612ace612f7a565b906000526020600020015490508060088381548110612aef57612aef612f7a565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612b2757612b27613acd565b6001900381819060005260206000200160009055905550505050565b6000612b4e83610ac2565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6040518061040001604052806020905b612b9f612bb5565b815260200190600190039081612b975790505090565b60405180604001604052806002906020820280368337509192915050565b6001600160e01b03198116811461097d57600080fd5b600060208284031215612bfb57600080fd5b8135612c0681612bd3565b9392505050565b60005b83811015612c28578181015183820152602001612c10565b838111156110755750506000910152565b60008151808452612c51816020860160208601612c0d565b601f01601f19169290920160200192915050565b602081526000612c066020830184612c39565b600060208284031215612c8a57600080fd5b5035919050565b80356001600160a01b0381168114612ca857600080fd5b919050565b60008060408385031215612cc057600080fd5b612cc983612c91565b946020939093013593505050565b600080600060608486031215612cec57600080fd5b612cf584612c91565b9250612d0360208501612c91565b9150604084013590509250925092565b600060208284031215612d2557600080fd5b612c0682612c91565b60008060408385031215612d4157600080fd5b612d4a83612c91565b915060208301358015158114612d5f57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215612d9657600080fd5b612d9f85612c91565b9350612dad60208601612c91565b925060408501359150606085013567ffffffffffffffff80821115612dd157600080fd5b818701915087601f830112612de557600080fd5b813581811115612df757612df7612d6a565b604051601f8201601f19908116603f01168101908382118183101715612e1f57612e1f612d6a565b816040528281528a6020848701011115612e3857600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215612e6f57600080fd5b612e7883612c91565b9150612e8660208401612c91565b90509250929050565b600181811c90821680612ea357607f821691505b60208210811415612ec457634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601260045260246000fd5b600082612f7557612f75612f50565b500690565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008219821115612fb957612fb9612f90565b500190565b600082612fcd57612fcd612f50565b500490565b6000816000190483118215151615612fec57612fec612f90565b500290565b600060001982141561300557613005612f90565b5060010190565b6000815161301e818560208601612c0d565b9290920192915050565b6b5265666c656b74696f6e202360a01b81526000825161304f81600c850160208701612c0d565b91909101600c0192915050565b7f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f32308152740181817b9bb3391103b34b2bba137bc1e911810181605d1b6020820152600083516130b2816035850160208801612c0d565b600160fd1b60359184019182015283516130d3816036840160208801612c0d565b7511103b32b939b4b7b71e91189718911f1e3232b3399f60511b60369290910191820152604c01949350505050565b60008551613114818460208a01612c0d565b743c6c696e6561724772616469656e742069643d226760581b9083019081528551613146816015840160208a01612c0d565b7f222078313d223025222079313d223025222078323d2231303025222079323d22601592909101918201527f31303025223e3c73746f70206f66667365743d22302522207374796c653d227360358201526a746f702d636f6c6f723a2360a81b605582015284516131be816060840160208901612c0d565b7f222f3e3c73746f70206f66667365743d223130302522207374796c653d22737460609290910191820152696f702d636f6c6f723a2360b01b6080820152835161320f81608a840160208801612c0d565b7311179f1e17b634b732b0b923b930b234b2b73a1f60611b608a9290910191820152609e019695505050505050565b6000875160206132518285838d01612c0d565b7f3c66696c7465722069643d226466223e3c666554757262756c656e63652062619184019182526f073654672657175656e63793d22302e360841b8183015288516132a281603085018c8501612c0d565b88519201916132b78160308501848c01612c0d565b631610181760e11b6030939091019283015286516132db8160348501848b01612c0d565b86519201916132f08160348501848a01612c0d565b6711103a3cb8329e9160c11b60349390910192830152845161331881603c8501848901612c0d565b91909101603c019998505050505050505050565b6000875161333e818460208c01612c0d565b6d1110373ab6a7b1ba30bb32b99e9160911b908301908152875161336981600e840160208c01612c0d565b7211103932b9bab63a1e913a111039b2b2b21e9160691b600e9290910191820152865161339d816021840160208b01612c0d565b7f222f3e3c6665446973706c6163656d656e744d617020696e323d22742220696e602192909101918201527f3d22536f757263654772617068696322207363616c653d22000000000000000060418201528551613401816059840160208a01612c0d565b7f2220784368616e6e656c53656c6563746f723d2252222f3e3c2f66696c746572605992909101918201527f3e3c636c6970506174682069643d2263223e3c7265637420783d22302220793d60798201526a111811103bb4b23a341e9160a91b60998201526134b961349861349261347c60a485018961300c565b6911103432b4b3b43a1e9160b11b8152600a0190565b8661300c565b7411179f1e17b1b634b82830ba341f1e17b232b3399f60591b815260150190565b9998505050505050505050565b600085516134d8818460208a01612c0d565b7f3c7265637420783d22302220793d2230222077696474683d22000000000000009083019081528551613512816019840160208a01612c0d565b6911103432b4b3b43a1e9160b11b60199290910191820152845161353d816023840160208901612c0d565b6d222066696c6c3d2275726c28236760901b60239290910191820152835161356c816031840160208801612c0d565b7f29223e3c2f726563743e3c6720636c69702d706174683d2275726c28236329226031929091019182015272103334b63a32b91e913ab9361411b23314911f60691b60518201526064019695505050505050565b600088516135d2818460208d01612c0d565b6b1e31b4b931b6329031bc1e9160a11b90830190815288516135fb81600c840160208d01612c0d565b65111031bc9e9160d11b600c92909101918201528751613622816012840160208c01612c0d565b752220723d22323030222066696c6c3d2275726c28236760501b601292909101918201528651613659816028840160208b01612c0d565b6f1491179f1e31b4b931b6329031bc1e9160811b60289290910191820152855161368a816038840160208a01612c0d565b611dd76136df6136d96136b76136b160388688010165111031bc9e9160d11b815260060190565b8a61300c565b752220723d22323030222066696c6c3d2275726c28236760501b815260160190565b8761300c565b631491179f60e11b815260040190565b60008282101561370157613701612f90565b500390565b60008251613718818460208701612c0d565b9190910192915050565b60008651613734818460208b01612c0d565b701e3932b1ba103c1e91169b9811103c9e9160791b9083019081528651613762816011840160208b01612c0d565b6811103bb4b23a341e9160b91b60119290910191820152855161378c81601a840160208a01612c0d565b6911103432b4b3b43a1e9160b11b601a929091019182015284516137b7816024840160208901612c0d565b6d222066696c6c3d2275726c28236760901b6024929091019182015283516137e6816032840160208801612c0d565b6c1491179f1e3932b1ba103c1e9160991b60329290910191820152603f01979650505050505050565b6000875160206138228285838d01612c0d565b8851918401916138358184848d01612c0d565b6411103c9e9160d91b920191825287516138558160058501848c01612c0d565b6811103bb4b23a341e9160b91b60059390910192830152865161387e81600e8501848b01612c0d565b6911103432b4b3b43a1e9160b11b600e939091019283015285516138a88160188501848a01612c0d565b6d222066696c6c3d2275726c28236760901b6018939091019283015284516138d68160268501848901612c0d565b611dd7602682850101631491179f60e11b815260040190565b60008251613901818460208701612c0d565b691e17b39f1e17b9bb339f60b11b920191825250600a01919050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b683d913730b6b2911d1160b91b81528351600090613994816009850160208901612c0d565b701116113232b9b1b934b83a34b7b7111d1160791b60099184019182015284516139c581601a840160208901612c0d565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c3b62601a929091019182015265185cd94d8d0b60d21b603a8201528351613a12816040840160208801612c0d565b61227d60f01b6040929091019182015260420195945050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251613a6681601d850160208701612c0d565b91909101601d0192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613aa690830184612c39565b9695505050505050565b600060208284031215613ac257600080fd5b8151612c0681612bd3565b634e487b7160e01b600052603160045260246000fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f47656e65726174697665206162737472616374207265666c656374696f6e73206f6620686967682064696d656e73696f6e616c207269766572732067656e65726174656420656e746972656c79206f6e2d636861696e2e205265666c656b74696f6e6572206973207468652066697273742073746570206f6620612076697375616c206a6f75726e657920696e2061206c6174656e74207370616365206f66206e6f697379207265666c656374696f6e732ea264697066735822122098a81b639ead22d06c17c531e4b30374c582fe42c16676174b544bd40891eff164736f6c63430008090033

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.