ETH Price: $2,269.77 (+3.05%)

Token

Metaverse Club (MCLUB)
 

Overview

Max Total Supply

25 MCLUB

Holders

12

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 MCLUB
0xc05c5540859a0f728a32765835aeacf29d14a684
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
MetaverseClub

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 20 runs

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

/*

  Metaverse Club (MCLUB)
  mclub.eth
  @metaverseclub
  https://metaverseclub.io

*/

pragma solidity 0.8.7;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "./Base64.sol";

contract MetaverseClub is ERC721Enumerable, ReentrancyGuard, Ownable {

  // tokenId coounter
  using Counters for Counters.Counter;
  Counters.Counter private _tokenIdCounter;

  // room base url
  string public _roomBaseUrl = "https://metaverseclub.io/";

  // room-specific announcement
  mapping(uint256 => string) private _roomMessage;

  // price per mint and update room message
  uint256 public _price = 0.1 ether;

  // max supply
  uint256 public _maxSupply = 10000;

  // flag for public sale
  bool public _publicSale = false;

  // error msg
  string private tokenIdInvalid = "tokenId invalid";

  // set room message
  function setRoomMessage(uint256 tokenId, string memory newRoomMessage) external payable {
    require(_tokenIdCounter.current() >= tokenId && tokenId > 0, tokenIdInvalid);
    require( msg.sender == ownerOf(tokenId), "token owner only");
    require( msg.value >= _price, "incorrect ETH sent" );
    _roomMessage[tokenId] = newRoomMessage;
  }

  // get room message
  function getRoomMessage(uint256 tokenId) public view returns (string memory) {
    require(_tokenIdCounter.current() >= tokenId && tokenId > 0, tokenIdInvalid);
    bytes memory tempEmptyStringTest = bytes(_roomMessage[tokenId]);
    if (tempEmptyStringTest.length == 0) {
      uint256 randMsg = random("nft", tokenId);
      if (randMsg % 17 == 3)
        return "LFG!";
      else if (randMsg % 7 == 3)
        return "WAGMI!";
      else
        return "gm!";
    } else {
      return _roomMessage[tokenId];
    }
  }

  // set new price
  function setPrice(uint256 newPrice) external onlyOwner {
    _price = newPrice;
  }

  // set new room url
  function setRoomBaseUrl(string memory newUrl) external onlyOwner {
    _roomBaseUrl = newUrl;
  }

  // toggle public sale
  function publicSale(bool val) external onlyOwner {
    _publicSale = val;
  }

  // withdraw funds to owner's wallet
  function withdraw() external payable onlyOwner {
    require(payable(msg.sender).send(address(this).balance));
  }

  // mint num of keycards
  function mint(uint256 num) external payable nonReentrant {
    require( _publicSale, "public sale paused" );
    require( num <= 10, "max 10 per TX" );
    require( _tokenIdCounter.current() + num <= _maxSupply, "max supply reached" );
    require( msg.value >= _price * num, "incorrect ETH sent" );

    for( uint i = 0; i < num; i++ ) {
      _safeMint(_msgSender(), _tokenIdCounter.current() + 1);
      _tokenIdCounter.increment();
    }
  }

  // owner's mint to creator's address
  function mintToCreator(address creatorAddress) external nonReentrant onlyOwner {
    require( _tokenIdCounter.current() + 1 <= _maxSupply, "max supply reached" );
    _safeMint(creatorAddress, _tokenIdCounter.current() + 1);
    _tokenIdCounter.increment();
  }

  // owner to claim keycards
  function ownerClaim(uint256 num) external nonReentrant onlyOwner {
    require( _tokenIdCounter.current() + num <= _maxSupply, "max supply reached" );
    for (uint i = 0; i < num; i++) {
      _safeMint(owner(), _tokenIdCounter.current() + 1);
      _tokenIdCounter.increment();
    }
  }

  // room types
  string[] private assetRoomType = [
    "Camp",
    "Verse",
    "Vault",
    "Plaza",
    "Theater",
    "State",
    "Gallery",
    "Room",
    "Base",
    "Cafe",
    "Yacht",
    "School",
    "Keep",
    "Lab",
    "Home",
    "Factory",
    "Place",
    "Market",
    "Dream",
    "Bank",
    "City",
    "Class",
    "Kingdom",
    "Hall",
    "World",
    "Museum",
    "Game",
    "Dungeon",
    "Pit",
    "Hideout",
    "Planet",
    "Party",
    "Workshop",
    "Country",
    "Nation",
    "Maze",
    "Club",
    "Land",
    "Garden",
    "Asylum",
    "Heaven",
    "Salon",
    "Station",
    "Study",
    "Zone",
    "Arena",
    "Mansion",
    "Matrix",
    "Pub",
    "Space"
  ];

  // room themes
  string[] private assetRoomTheme = [
    "Gothic",
    "Bitcoin",
    "Sci-Fi",
    "Fugazi",
    "Open",
    "VR",
    "Mindful",
    "Meta",
    "Magical",
    "Doge",
    "Haunted",
    "YOLO",
    "DeFi",
    "Flow",
    "Logical",
    "Lion",
    "Doom",
    "Web3",
    "AI",
    "Mega",
    "Orc",
    "Bored",
    "Ethereum",
    "Toad",
    "Hidden",
    "Techno",
    "WAGMI",
    "Mutant",
    "3D",
    "Ape",
    "Network",
    "Skull",
    "Unicorn",
    "Satoshi",
    "Zombie",
    "Moon",
    "Robotic",
    "Crypto",
    "Cyber",
    "Cat",
    "Degen",
    "GM",
    "NFT",
    "Mad",
    "FOMO",
    "Punk",
    "Bear",
    "Coin"
  ];

  // get a random int from a string + tokenId
  function random(string memory input, uint256 tokenId) private pure returns (uint256) {
    return uint256(keccak256(abi.encodePacked(input, toString(tokenId + 420001))));
  }

  // get a random element from an array
  function pluck(uint256 tokenId, string memory keyPrefix, string[] memory sourceArray) private pure returns (string memory) {
    return sourceArray[random(keyPrefix, tokenId) % sourceArray.length];
  }

  // get a room theme from tokenId
  function getRoomTheme(uint256 tokenId) public view returns (string memory) {
    require(_tokenIdCounter.current() >= tokenId && tokenId > 0, tokenIdInvalid);
    return string(abi.encodePacked(pluck(tokenId, "theme", assetRoomTheme)));
  }

  // get a room type from tokenId
  function getRoomType(uint256 tokenId) public view returns (string memory) {
    require(_tokenIdCounter.current() >= tokenId && tokenId > 0, tokenIdInvalid);
    return string(abi.encodePacked(pluck(tokenId, "type", assetRoomType)));
  }

  // get a room url from tokenId
  function getRoomURL(uint256 tokenId) public view returns (string memory) {
    require(_tokenIdCounter.current() >= tokenId && tokenId > 0, tokenIdInvalid);
    return string(abi.encodePacked(_roomBaseUrl, toString(tokenId)));
  }

  // get a linked keycard from tokenId
  function getAssetLink1(uint256 tokenId) private pure returns (uint256) {
    if (tokenId > 1) {
      uint256 rand = random("link1", tokenId);
      if (rand % 99 < 70)
        return rand % (tokenId - 1) + 1;
      else
        return 0;
    } else {
      return 0;
    }
  }

  // get a 2nd linked keycard from tokenId
  function getAssetLink2(uint256 tokenId) private pure returns (uint256) {
    uint256 rand = random("link2", tokenId);
    uint256 link2Id = rand % (tokenId - 1) + 1;
    if (link2Id == getAssetLink1(tokenId)){
      return 0;
    } else {
      if (rand % 99 < 50)
        return link2Id;
      else
        return 0;
    }
  }

  // generate metadata for links
  function getAssetLinks(uint256 tokenId) private pure returns (string memory) {
    string memory traitTypeJson = ', {"trait_type": "Linked", "value": "';
    if (getAssetLink1(tokenId) < 1)
      return '';
    if (getAssetLink2(tokenId) > 0) {
      return string(abi.encodePacked(traitTypeJson, '2 Rooms"}'));
    } else {
      return string(abi.encodePacked(traitTypeJson, '1 Room"}'));
    }
  }

  // generate metadata for stars
  function haveStar(uint256 tokenId) private pure returns (string memory) {
    uint256 starSeed = random("star", tokenId);
    string memory traitTypeJson = ', {"trait_type": "Star", "value": "';
    if (starSeed % 47 == 1)
      return string(abi.encodePacked(traitTypeJson, 'Sirius"}'));
    if (starSeed % 11 == 1)
      return string(abi.encodePacked(traitTypeJson, 'Vega"}'));
    return '';
  }

  // render stars in SVG
  function renderStar(uint256 tokenId) private pure returns (string memory) {
    string memory starFirstPart = '<defs><linearGradient id="star" x1="100%" y1="100%"><stop offset="0%" stop-color="black" stop-opacity=".5"><animate attributeName="stop-color" values="black;black;black;black;gray;';
    string memory starLastPart = ';gray;black;black;black;black" dur="3s" repeatCount="indefinite" /></stop></linearGradient></defs><g style="transform:translate(130px,244px)"><g style="transform:scale(0.1,0.1)"><path fill="url(#star)" d="M189.413,84c-36.913,0-37.328,38.157-37.328,38.157c0-33.181-36.498-38.157-36.498-38.157  c37.328,0,36.498-38.157,36.498-38.157C152.085,84,189.413,84,189.413,84z" /></g></g>';
    uint256 starSeed = random("star", tokenId);
    if (starSeed % 47 == 1)
      return string(abi.encodePacked(starFirstPart, 'aqua', starLastPart));
    if (starSeed % 11 == 1)
      return string(abi.encodePacked(starFirstPart, 'white', starLastPart));
    return '';
  }

  // generate metadata for keys
  function haveKey(uint256 tokenId) private pure returns (string memory) {
    uint256 keySeed = random("key", tokenId);
    string memory traitTypeJson = ', {"trait_type": "Key", "value": "';
    if (keySeed % 301 == 1)
      return string(abi.encodePacked(traitTypeJson, 'Rainbow Key"}'));
    if (keySeed % 161 == 1)
      return string(abi.encodePacked(traitTypeJson, 'Crystal Key"}')); //afcfff
    if (keySeed % 59 == 1)
      return string(abi.encodePacked(traitTypeJson, 'Gold Key"}')); //ffff33
    if (keySeed % 31 == 1)
      return string(abi.encodePacked(traitTypeJson, 'Silver Key"}')); //dddddd
    if (keySeed % 11 == 1)
      return string(abi.encodePacked(traitTypeJson, 'Jade Key"}')); // 66ff66
    return string(abi.encodePacked(traitTypeJson, 'Copper Key"}')); // 995500
  }

  // render keys in SVG
  function renderKey(uint256 tokenId) private pure returns (string memory) {
    string memory keyFirstPart = '<g transform="translate(267,63) scale(0.02,-0.02) rotate(135)" fill="';
    string memory keyLastPart = '" stroke="none"><path d="M832 1024q0 80-56 136t-136 56q-80 0-136-56t-56-136q0-42 19-83-41 19-83 19-80 0-136-56t-56-136q0-80 56-136t136-56q80 0 136 56t56 136q0 42-19 83 41-19 83-19 80 0 136 56t56 136zm851-704q0-17-49-66t-66-49q-9 0-28.5 16t-36.5 33q-17 17-38.5 40t-24.5 26l-96-96L1564 4q28-28 28-68 0-42-39-81t-81-39q-40 0-68 28L733 515Q557 384 368 384q-163 0-265.5 102.5T0 752q0 160 95 313t248 248q153 95 313 95 163 0 265.5-102.5T1024 1040q0-189-131-365l355-355 96 96q-3 3-26 24.5t-40 38.5q-17 17-33 36.5t-16 28.5q0 17 49 66t66 49q13 0 23-10 6-6 46-44.5t82-79.5q42-41 86.5-86t73-78q28.5-33 28.5-41z"/></g>';
    uint256 keySeed = random("key", tokenId);
    if (keySeed % 301 == 1)
      return string(abi.encodePacked('<defs><linearGradient id="rainbow" x1="100%" y1="100%"><stop offset="0%" stop-color="white" stop-opacity=".9"><animate attributeName="stop-color" values="white;red;orange;yellow;green;lightblue;lightpurple;white;" dur="7s" repeatCount="indefinite" /></stop></linearGradient></defs>', keyFirstPart, 'url(#rainbow)', keyLastPart));
    if (keySeed % 161 == 1)
      return string(abi.encodePacked(keyFirstPart, '#afcfff', keyLastPart));
    if (keySeed % 59 == 1)
      return string(abi.encodePacked(keyFirstPart, '#ffff33', keyLastPart));
    if (keySeed % 31 == 1)
      return string(abi.encodePacked(keyFirstPart, '#dddddd', keyLastPart));
    if (keySeed % 11 == 1)
      return string(abi.encodePacked(keyFirstPart, '#66ff66', keyLastPart));
    return string(abi.encodePacked(keyFirstPart, '#995500', keyLastPart));
  }

  // generate metadata for description
  function getDescription(uint256 tokenId) private view returns (string memory) {
    string memory description0 = string(abi.encodePacked('This is a keycard to launch [#', toString(tokenId), ' ', getRoomTheme(tokenId), ' ', getRoomType(tokenId),'](', string(abi.encodePacked(_roomBaseUrl, toString(tokenId))), ') with one click.'));
    string memory description1 = ' And check the linked ';
    uint256 link1Id = getAssetLink1(tokenId);
      if (link1Id > 0) {
        string memory link1description = string(abi.encodePacked('[#', toString(link1Id), ' ', getRoomTheme(link1Id), ' ', getRoomType(link1Id), '](', string(abi.encodePacked(_roomBaseUrl, toString(link1Id))) ,')'));
        uint256 link2Id = getAssetLink2(tokenId);
        if (link2Id > 0) {
          string memory link2description = string(abi.encodePacked('[#', toString(link2Id), ' ', getRoomTheme(link2Id), ' ', getRoomType(link2Id), '](', string(abi.encodePacked(_roomBaseUrl, toString(link2Id))) ,')'));
          if (link2Id > link1Id)
            return string(abi.encodePacked(description0, description1, link1description,' and ',link2description, '.'));
          else
            return string(abi.encodePacked(description0, description1, link2description,' and ',link1description, '.'));
        } else {
          return string(abi.encodePacked(description0, description1, link1description,'.'));
        }
      } else {
        return description0;
      }
    }

  // get a random gradient color from tokenId
  function getBackgrounGradient(uint256 tokenId) private pure returns (string memory) {
    uint256 colorSeed = random("color", tokenId);
    if ( colorSeed % 7 == 3)
      return "black;red;gray;red;purple;black;";
    if ( colorSeed % 7 == 2)
      return "black;green;black;";
    if ( colorSeed % 7 == 1)
      return "black;blue;black;";
    if ( colorSeed % 7 == 4)
      return "black;lightblue;black;";
    if ( colorSeed % 7 == 5)
      return "black;red;purple;blue;black;";
    if ( colorSeed % 7 == 6)
      return "black;blue;purple;blue;black;";
    return "black;gray;red;purple;black;";
  }

  // generate metadata for lasers
  function haveLaser(uint256 tokenId) private pure returns (string memory) {
    uint256 laserSeed = random("laser", tokenId);
    string memory traitTypeJson = ', {"trait_type": "Laser", "value": "';
    if (laserSeed % 251 == 2)
      return string(abi.encodePacked(traitTypeJson, 'Dual Green Lasers"}'));
    if (laserSeed % 167 == 2)
      return string(abi.encodePacked(traitTypeJson, 'Dual Red Lasers"}'));
    if (laserSeed % 71 == 2)
      return string(abi.encodePacked(traitTypeJson, 'Green Laser"}'));
    if (laserSeed % 31 == 2)
      return string(abi.encodePacked(traitTypeJson, 'Red Laser"}'));
    return '';
  }

  // render keycard in SVG
  function renderBackground(uint256 tokenId) private pure returns (string memory) {
    uint256 laserSeed = random("laser", tokenId);
    string memory attribPyramidLasers = '';
    bool dualLasers = false;
    bool singleLaser = false;
    string memory laserColor = 'red';

    if (laserSeed % 31 == 2) { 
      singleLaser = true;
      dualLasers = false;
      laserColor = 'red';
    }

    if (laserSeed % 71 == 2) { 
      singleLaser = true;
      laserColor = 'green';
    }

    if (laserSeed % 167 == 2) { 
      singleLaser = false;
      dualLasers = true;
      laserColor = 'red';
    }

    if (laserSeed % 251 == 2) { 
      singleLaser = false;
      dualLasers = true;
      laserColor = 'green';
    }

    string memory attribPyramidLasersFirstPart = string(abi.encodePacked('<g transform="translate(-154.5,-36)"><line x1="0" y1="0" x2="300" y2="300" stroke="', laserColor, '" stroke-width="1.5" stroke-opacity="1.0"><animateTransform attributeName="transform" attributeType="XML" type="rotate" from="0 300 300" to="360 300 300" dur="20s" repeatCount="indefinite" /></line>'));
    string memory attribPyramidLasersDoublePart = string(abi.encodePacked('<line x1="0" y1="0" x2="300" y2="300" stroke="', laserColor, '" stroke-width="1.5" stroke-opacity="1.0"><animateTransform attributeName="transform" attributeType="XML" type="rotate" from="5 300 300" to="365 300 300" dur="20s" repeatCount="indefinite" /></line>'));
    string memory attribPyramidLasersEndingPart = '</g>';

    if (singleLaser)
      attribPyramidLasers = string(abi.encodePacked(attribPyramidLasersFirstPart, attribPyramidLasersEndingPart));

    if (dualLasers)
      attribPyramidLasers = string(abi.encodePacked(attribPyramidLasersFirstPart, attribPyramidLasersDoublePart, attribPyramidLasersEndingPart));

    return string(abi.encodePacked('<g clip-path="url(#b)"><path fill="000000" d="M0 0h290v500H0z" /><path fill="url(#backgroundGradient)" d="M0 0h290v500H0z" /><g style="filter:url(#d);transform:scale(2.9);transform-origin:center top"><path fill="none" d="M0 0h290v500H0z" /><ellipse cx="50%" rx="180" ry="120" opacity=".95" /></g>', string(abi.encodePacked('<g><filter id="dpf"><feTurbulence type="turbulence" baseFrequency="0.', toString(random("fq", tokenId) % 4), '2" numOctaves="2" result="turbulence" /><feDisplacementMap in2="turbulence" in="SourceGraphic" scale="50" xChannelSelector="R" yChannelSelector="G" /></filter><circle cx="120" cy="-10" r="200" fill="url(#backgroundGradient)" opacity=".3" style="filter: url(#dpf)" /></g>')), '<g style="transform:translate(94px,264px)"><g style="transform:scale(.4,.4)" fill="url(#backgroundGradient)" stroke="rgba(255,255,255,1)"><path stroke-width="2.5" opacity=".5" d="m127.961 0-2.795 9.5v275.668l2.795 2.79 127.962-75.638z"/><path stroke-width="1.8" opacity=".85" d="M127.962 0 0 212.32l127.962 75.639V154.158z"/></g></g>', attribPyramidLasers, '</g>'));
  }

  // generate basic attributes in metadata
  function haveBasicAttributes(uint256 tokenId) private view returns (string memory) {
    string memory traitTypeJson = '{"trait_type": "';
    return string(abi.encodePacked(string(abi.encodePacked(traitTypeJson, 'Room Type", "value": "', getRoomType(tokenId), '"}, ')), string(abi.encodePacked(traitTypeJson, 'Room Theme", "value": "', getRoomTheme(tokenId), '"}')), getAssetLinks(tokenId)));
  }

  // generate tokenURI from tokenId
  function tokenURI(uint256 tokenId) override public view returns (string memory) {
    require(_tokenIdCounter.current() >= tokenId && tokenId > 0, tokenIdInvalid);

    // token info
    string memory tokenFullName = string(abi.encodePacked(getRoomTheme(tokenId), ' ', getRoomType(tokenId)));
    string memory cardInfo = string(abi.encodePacked('<g><text y="70" x="29" fill="#fff" font-family="monospace" font-weight="200" font-size="36">#',toString(tokenId),'</text><text y="115" x="28" fill="#fff" font-family="monospace" font-weight="200" font-size="22">',tokenFullName,'</text><text y="140" x="29" font-family="monospace" font-size="14" fill="#fff"><tspan fill="rgba(255,255,255,0.8)">Metaverse Club</tspan></text></g><g style="transform:translate(22px,444px)" clip-path="url(#e)"><rect width="247" height="26" rx="8" ry="8" fill="rgba(0,0,0,0.6)" /><text x="9" y="17" font-family="monospace" font-size="14" fill="#fff"><tspan fill="rgba(255,255,255,0.6)">',tokenFullName,': </tspan>', getRoomMessage(tokenId),'<animate attributeType="XML" attributeName="x" values="300;-300" dur="15s" repeatCount="indefinite" /></text></g>'));
    string memory svgExtra = string(abi.encodePacked(renderKey(tokenId), renderStar(tokenId)));
    string memory renderDefs = string(abi.encodePacked('<defs><linearGradient id="backgroundGradient" x1="100%" y1="100%"><stop offset="0%" stop-color="black" stop-opacity=".5"><animate attributeName="stop-color" values="', getBackgrounGradient(tokenId),'" dur="20s" repeatCount="indefinite" /></stop></linearGradient></defs><defs><filter id="c"><feImage result="p0" xlink:href="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0nMjkwJyBoZWlnaHQ9JzUwMCcgdmlld0JveD0nMCAwIDI5MCA1MDAnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2Zyc+PHJlY3Qgd2lkdGg9JzI5MHB4JyBoZWlnaHQ9JzUwMHB4JyBmaWxsPScjZjY1YjVjJy8+PC9zdmc+" /></filter><filter id="d"><feGaussianBlur in="SourceGraphic" stdDeviation="', toString(random("sd", tokenId) % 50 + 10), '" /></filter><linearGradient id="a"><stop offset=".7" stop-color="#fff" /><stop offset=".95" stop-color="#fff" stop-opacity="0" /></linearGradient><clipPath id="b"><rect width="290" height="500" rx="42" ry="42" /></clipPath><clipPath id="e"><rect width="247" height="26" rx="8" ry="8"/></clipPath></defs>'));
    string memory outputSVG = string(abi.encodePacked('<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="290" height="500" viewBox="0 0 290 500">', renderDefs, renderBackground(tokenId), cardInfo, svgExtra, '</svg>'));

    // render attributes
    string memory attributes = string(abi.encodePacked('"attributes": [{"trait_type": "Room Name", "value": "', tokenFullName, '"}, ', haveBasicAttributes(tokenId), haveStar(tokenId), haveKey(tokenId), haveLaser(tokenId), ']'));

    // render output json
    string memory basicInfo = string(abi.encodePacked('"name": "#', toString(tokenId), ' ', tokenFullName, '", "description": "', getDescription(tokenId),'", "external_url": "', string(abi.encodePacked(_roomBaseUrl, toString(tokenId))), '", '));
    string memory output = string(abi.encodePacked('data:application/json;base64,', Base64.encode(bytes(string(abi.encodePacked('{', basicInfo, attributes,', "image": "data:image/svg+xml;base64,', Base64.encode(bytes(outputSVG)),'"}'))))));
    return output;
  }

  function toString(uint256 value) private pure returns (string memory) {
  // Inspired by OraclizeAPI's implementation - MIT license
  // 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);
  }

  constructor() ERC721("Metaverse Club", "MCLUB") Ownable() {}
}

File 2 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 3 of 16 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 4 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);
    }
}

File 5 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 6 of 16 : Base64.sol
// SPDX-License-Identifier: MIT
/// @title Base64
/// @notice Provides a function for encoding some bytes in base64
/// @author Brecht Devos <[email protected]>

pragma solidity ^0.8.0;

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 7 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 8 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 9 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 10 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 11 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 12 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 13 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 14 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 15 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 16 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);
}

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

Contract Security Audit

Contract ABI

API
[{"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":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_roomBaseUrl","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getRoomMessage","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getRoomTheme","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getRoomType","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getRoomURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"creatorAddress","type":"address"}],"name":"mintToCreator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"ownerClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"publicSale","outputs":[],"stateMutability":"nonpayable","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":"string","name":"newUrl","type":"string"}],"name":"setRoomBaseUrl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"newRoomMessage","type":"string"}],"name":"setRoomMessage","outputs":[],"stateMutability":"payable","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":"payable","type":"function"}]

60c0604052601960808190527f68747470733a2f2f6d6574617665727365636c75622e696f2f0000000000000060a09081526200004091600d919062000d0f565b5067016345785d8a0000600f9081556127106010556011805460ff19169055604080518082019091528181526e1d1bdad95b9259081a5b9d985b1a59608a1b602090910190815262000096916012919062000d0f565b5060408051610680810182526004610640820181815263043616d760e41b610660840152825282518084018452600580825264566572736560d81b60208381019190915280850192909252845180860186528181526415985d5b1d60da1b81840152848601528451808601865281815264506c617a6160d81b818401526060850152845180860186526007808252662a3432b0ba32b960c91b8285015260808601919091528551808701875282815264537461746560d81b8185015260a0860152855180870187528181526647616c6c65727960c81b8185015260c08601528551808701875284815263526f6f6d60e01b8185015260e086015285518087018752848152634261736560e01b8185015261010086015285518087018752848152634361666560e01b818501526101208601528551808701875282815264165858da1d60da1b818501526101408601528551808701875260068082526514d8da1bdbdb60d21b82860152610160870191909152865180880188528581526304b6565760e41b81860152610180870152865180880188526003808252622630b160e91b828701526101a08801919091528751808901895286815263486f6d6560e01b818701526101c08801528751808901895283815266466163746f727960c81b818701526101e08801528751808901895284815264506c61636560d81b81870152610200880152875180890189528281526513585c9ad95d60d21b818701526102208801528751808901895284815264447265616d60d81b81870152610240880152875180890189528681526342616e6b60e01b8187015261026088015287518089018952868152634369747960e01b818701526102808801528751808901895284815264436c61737360d81b818701526102a088015287518089018952838152664b696e67646f6d60c81b818701526102c0880152875180890189528681526312185b1b60e21b818701526102e0880152875180890189528481526415dbdc9b1960da1b8187015261030088015287518089018952828152654d757365756d60d01b81870152610320880152875180890189528681526347616d6560e01b818701526103408801528751808901895283815266223ab733b2b7b760c91b818701526103608801528751808901895281815262141a5d60ea1b818701526103808801528751808901895283815266121a59195bdd5d60ca1b818701526103a08801528751808901895282815265141b185b995d60d21b818701526103c08801528751808901895284815264506172747960d81b818701526103e08801528751808901895260088152670576f726b73686f760c41b818701526104008801528751808901895283815266436f756e74727960c81b8187015261042088015287518089018952828152652730ba34b7b760d11b8187015261044088015287518089018952868152634d617a6560e01b81870152610460880152875180890189528681526321b63ab160e11b81870152610480880152875180890189528681526313185b9960e21b818701526104a0880152875180890189528281526523b0b93232b760d11b818701526104c088015287518089018952828152654173796c756d60d01b818701526104e088015287518089018952828152652432b0bb32b760d11b81870152610500880152875180890189528481526429b0b637b760d91b81870152610520880152875180890189528381526629ba30ba34b7b760c91b818701526105408801528751808901895284815264537475647960d81b8187015261056088015287518089018952958652635a6f6e6560e01b8686015261058087019590955286518088018852838152644172656e6160d81b818601526105a0870152865180880188529182526626b0b739b4b7b760c91b828501526105c0860191909152855180870187529081526509ac2e8e4d2f60d31b818401526105e08501528451808601865292835262283ab160e91b83830152610600840192909252835180850190945290835264537061636560d81b908301526106208101919091526200068290601390603262000d9e565b5060408051610640810182526006610600820181815265476f7468696360d01b6106208401528252825180840184526007808252662134ba31b7b4b760c91b6020838101919091528085019290925284518086018652838152655363692d466960d01b81840152848601528451808601865283815265467567617a6960d01b8184015260608501528451808601865260048082526327b832b760e11b828501526080860191909152855180870187526002808252612b2960f11b8286015260a08701919091528651808801885283815266135a5b99199d5b60ca1b8186015260c087015286518088018852828152634d65746160e01b8186015260e08701528651808801885283815266135859da58d85b60ca1b818601526101008701528651808801885282815263446f676560e01b81860152610120870152865180880188528381526612185d5b9d195960ca1b818601526101408701528651808801885282815263594f4c4f60e01b8186015261016087015286518088018852828152634465466960e01b818601526101808701528651808801885282815263466c6f7760e01b818601526101a08701528651808801885283815266131bd9da58d85b60ca1b818601526101c087015286518088018852828152632634b7b760e11b818601526101e08701528651808801885282815263446f6f6d60e01b8186015261020087015286518088018852828152635765623360e01b818601526102208701528651808801885281815261414960f01b8186015261024087015286518088018852828152634d65676160e01b81860152610260870152865180880188526003808252624f726360e81b8287015261028088019190915287518089018952600580825264109bdc995960da1b828801526102a08901919091528851808a018a526008815267457468657265756d60c01b818801526102c08901528851808a018a5284815263151bd85960e21b818801526102e08901528851808a018a52878152652434b23232b760d11b818801526103008901528851808a018a5287815265546563686e6f60d01b818801526103208901528851808a018a52818152645741474d4960d81b818801526103408901528851808a018a5287815265135d5d185b9d60d21b818801526103608901528851808a018a52838152610cd160f21b818801526103808901528851808a018a528281526241706560e81b818801526103a08901528851808a018a52858152664e6574776f726b60c81b818801526103c08901528851808a018a528181526414dadd5b1b60da1b818801526103e08901528851808a018a52858152662ab734b1b7b93760c91b818801526104008901528851808a018a52858152665361746f73686960c81b818801526104208901528851808a018a52878152655a6f6d62696560d01b818801526104408901528851808a018a528481526326b7b7b760e11b818801526104608901528851808a018a5294855266526f626f74696360c81b85870152610480880194909452875180890189529586526543727970746f60d01b868601526104a0870195909552865180880188528381526421bcb132b960d91b818601526104c0870152865180880188528581526210d85d60ea1b818601526104e087015286518088018852928352642232b3b2b760d91b838501526105008601929092528551808701875291825261474d60f01b82840152610520850191909152845180860186528381526213919560ea1b81840152610540850152845180860186529283526213585960ea1b838301526105608401929092528351808501855282815263464f4d4f60e01b81830152610580840152835180850185528281526350756e6b60e01b818301526105a084015283518085018552828152632132b0b960e11b818301526105c084015283518085019094529083526321b7b4b760e11b908301526105e081019190915262000c2c90601490603062000dfe565b5034801562000c3a57600080fd5b50604080518082018252600e81526d26b2ba30bb32b939b29021b63ab160911b60208083019182528351808501909452600584526426a1a62aa160d91b90840152815191929162000c8e9160009162000d0f565b50805162000ca490600190602084019062000d0f565b50506001600a555062000cb73362000cbd565b62000f07565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000d1d9062000eca565b90600052602060002090601f01602090048101928262000d41576000855562000d8c565b82601f1062000d5c57805160ff191683800117855562000d8c565b8280016001018555821562000d8c579182015b8281111562000d8c57825182559160200191906001019062000d6f565b5062000d9a92915062000e50565b5090565b82805482825590600052602060002090810192821562000df0579160200282015b8281111562000df0578251805162000ddf91849160209091019062000d0f565b509160200191906001019062000dbf565b5062000d9a92915062000e67565b82805482825590600052602060002090810192821562000df0579160200282015b8281111562000df0578251805162000e3f91849160209091019062000d0f565b509160200191906001019062000e1f565b5b8082111562000d9a576000815560010162000e51565b8082111562000d9a57600062000e7e828262000e88565b5060010162000e67565b50805462000e969062000eca565b6000825580601f1062000ea7575050565b601f01602090049060005260206000209081019062000ec7919062000e50565b50565b600181811c9082168062000edf57607f821691505b6020821081141562000f0157634e487b7160e01b600052602260045260246000fd5b50919050565b615dfe8062000f176000396000f3fe6080604052600436106101a45760003560e01c8063662bc72e116100e8578063662bc72e146103c05780636956ba19146103d557806370a08231146103ef578063715018a61461040f5780637a5e3280146104245780638da5cb5b1461044457806391b7f5ed1461045957806395d89b4114610479578063a0712d681461048e578063a22cb465146104a1578063b88d4fde146104c1578063c4633600146104e1578063c87b56dd14610501578063caab918214610521578063d66148dc14610541578063e985e9c514610561578063f1b66bba14610581578063f2fde38b146105a157600080fd5b806301ffc9a7146101a957806306fdde03146101de57806307a0c58514610200578063081812fc14610222578063095ea7b31461025a5780630b4ab7961461027a57806318160ddd1461029a5780631ea8f3f1146102b957806322f4596f146102cc578063235b6ea1146102e257806323b872dd146102f85780632f745c59146103185780633ccfd60b1461033857806342842e0e14610340578063434f48c4146103605780634f6ccce7146103805780636352211e146103a0575b600080fd5b3480156101b557600080fd5b506101c96101c43660046135aa565b6105c1565b60405190151581526020015b60405180910390f35b3480156101ea57600080fd5b506101f36105ec565b6040516101d591906154b7565b34801561020c57600080fd5b5061022061021b366004613436565b61067e565b005b34801561022e57600080fd5b5061024261023d366004613618565b610740565b6040516001600160a01b0390911681526020016101d5565b34801561026657600080fd5b50610220610275366004613565565b6107c8565b34801561028657600080fd5b506101f3610295366004613618565b6108d9565b3480156102a657600080fd5b506008545b6040519081526020016101d5565b6102206102c7366004613631565b610b15565b3480156102d857600080fd5b506102ab60105481565b3480156102ee57600080fd5b506102ab600f5481565b34801561030457600080fd5b50610220610313366004613484565b610beb565b34801561032457600080fd5b506102ab610333366004613565565b610c1c565b610220610cb2565b34801561034c57600080fd5b5061022061035b366004613484565b610d07565b34801561036c57600080fd5b5061022061037b366004613618565b610d22565b34801561038c57600080fd5b506102ab61039b366004613618565b610df5565b3480156103ac57600080fd5b506102426103bb366004613618565b610e88565b3480156103cc57600080fd5b506101f3610eff565b3480156103e157600080fd5b506011546101c99060ff1681565b3480156103fb57600080fd5b506102ab61040a366004613436565b610f8d565b34801561041b57600080fd5b50610220611014565b34801561043057600080fd5b506101f361043f366004613618565b61104d565b34801561045057600080fd5b506102426111a6565b34801561046557600080fd5b50610220610474366004613618565b6111b5565b34801561048557600080fd5b506101f36111e9565b61022061049c366004613618565b6111f8565b3480156104ad57600080fd5b506102206104bc36600461353b565b61133e565b3480156104cd57600080fd5b506102206104dc3660046134c0565b6113ff565b3480156104ed57600080fd5b506102206104fc3660046135e4565b611437565b34801561050d57600080fd5b506101f361051c366004613618565b61147d565b34801561052d57600080fd5b5061022061053c36600461358f565b611712565b34801561054d57600080fd5b506101f361055c366004613618565b611754565b34801561056d57600080fd5b506101c961057c366004613451565b61187f565b34801561058d57600080fd5b506101f361059c366004613618565b6118ad565b3480156105ad57600080fd5b506102206105bc366004613436565b611904565b60006001600160e01b0319821663780e9d6360e01b14806105e657506105e6826119a4565b92915050565b6060600080546105fb90615744565b80601f016020809104026020016040519081016040528092919081815260200182805461062790615744565b80156106745780601f1061064957610100808354040283529160200191610674565b820191906000526020600020905b81548152906001019060200180831161065757829003601f168201915b5050505050905090565b6002600a5414156106aa5760405162461bcd60e51b81526004016106a19061567f565b60405180910390fd5b6002600a55336106b86111a6565b6001600160a01b0316146106de5760405162461bcd60e51b81526004016106a1906155cd565b601054600c546106ef9060016156b6565b111561070d5760405162461bcd60e51b81526004016106a1906155a1565b61072a8161071a600c5490565b6107259060016156b6565b6119f4565b610738600c80546001019055565b506001600a55565b600061074b82611a0e565b6107ac5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106a1565b506000908152600460205260409020546001600160a01b031690565b60006107d382610e88565b9050806001600160a01b0316836001600160a01b031614156108415760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106a1565b336001600160a01b038216148061085d575061085d813361187f565b6108ca5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b60648201526084016106a1565b6108d48383611a2b565b505050565b6060816108e5600c5490565b101580156108f35750600082115b6012906109135760405162461bcd60e51b81526004016106a191906154ca565b506000828152600e60205260408120805461092d90615744565b80601f016020809104026020016040519081016040528092919081815260200182805461095990615744565b80156109a65780601f1061097b576101008083540402835291602001916109a6565b820191906000526020600020905b81548152906001019060200180831161098957829003601f168201915b50505050509050805160001415610a705760006109de604051806040016040528060038152602001621b999d60ea1b81525085611a99565b90506109eb601182615794565b60031415610a165750506040805180820190915260048152634c46472160e01b602082015292915050565b610a21600782615794565b60031415610a4e5750506040805180820190915260068152655741474d492160d01b602082015292915050565b5050604080518082019091526003815262676d2160e81b602082015292915050565b6000838152600e602052604090208054610a8990615744565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab590615744565b8015610b025780601f10610ad757610100808354040283529160200191610b02565b820191906000526020600020905b815481529060010190602001808311610ae557829003601f168201915b5050505050915050919050565b50919050565b81610b1f600c5490565b10158015610b2d5750600082115b601290610b4d5760405162461bcd60e51b81526004016106a191906154ca565b50610b5782610e88565b6001600160a01b0316336001600160a01b031614610baa5760405162461bcd60e51b815260206004820152601060248201526f746f6b656e206f776e6572206f6e6c7960801b60448201526064016106a1565b600f54341015610bcc5760405162461bcd60e51b81526004016106a190615602565b6000828152600e6020908152604090912082516108d4928401906132e1565b610bf53382611adc565b610c115760405162461bcd60e51b81526004016106a19061562e565b6108d4838383611ba6565b6000610c2783610f8d565b8210610c895760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106a1565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b33610cbb6111a6565b6001600160a01b031614610ce15760405162461bcd60e51b81526004016106a1906155cd565b60405133904780156108fc02916000818181858888f19350505050610d0557600080fd5b565b6108d4838383604051806020016040528060008152506113ff565b6002600a541415610d455760405162461bcd60e51b81526004016106a19061567f565b6002600a5533610d536111a6565b6001600160a01b031614610d795760405162461bcd60e51b81526004016106a1906155cd565b60105481610d86600c5490565b610d9091906156b6565b1115610dae5760405162461bcd60e51b81526004016106a1906155a1565b60005b81811015610dec57610dcc610dc46111a6565b600c5461071a565b610dda600c80546001019055565b80610de481615779565b915050610db1565b50506001600a55565b6000610e0060085490565b8210610e635760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106a1565b60088281548110610e7657610e766157ea565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806105e65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106a1565b600d8054610f0c90615744565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3890615744565b8015610f855780601f10610f5a57610100808354040283529160200191610f85565b820191906000526020600020905b815481529060010190602001808311610f6857829003601f168201915b505050505081565b60006001600160a01b038216610ff85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106a1565b506001600160a01b031660009081526003602052604090205490565b3361101d6111a6565b6001600160a01b0316146110435760405162461bcd60e51b81526004016106a1906155cd565b610d056000611d51565b606081611059600c5490565b101580156110675750600082115b6012906110875760405162461bcd60e51b81526004016106a191906154ca565b5061118082604051806040016040528060048152602001637479706560e01b8152506013805480602002602001604051908101604052809291908181526020016000905b828210156111775783829060005260206000200180546110ea90615744565b80601f016020809104026020016040519081016040528092919081815260200182805461111690615744565b80156111635780601f1061113857610100808354040283529160200191611163565b820191906000526020600020905b81548152906001019060200180831161114657829003601f168201915b5050505050815260200190600101906110cb565b50505050611da3565b60405160200161119091906136bf565b6040516020818303038152906040529050919050565b600b546001600160a01b031690565b336111be6111a6565b6001600160a01b0316146111e45760405162461bcd60e51b81526004016106a1906155cd565b600f55565b6060600180546105fb90615744565b6002600a54141561121b5760405162461bcd60e51b81526004016106a19061567f565b6002600a5560115460ff166112675760405162461bcd60e51b81526020600482015260126024820152711c1d589b1a58c81cd85b19481c185d5cd95960721b60448201526064016106a1565b600a8111156112a85760405162461bcd60e51b815260206004820152600d60248201526c0dac2f040626040e0cae440a8b609b1b60448201526064016106a1565b601054816112b5600c5490565b6112bf91906156b6565b11156112dd5760405162461bcd60e51b81526004016106a1906155a1565b80600f546112eb91906156e2565b34101561130a5760405162461bcd60e51b81526004016106a190615602565b60005b81811015610dec5761131e33610dc4565b61132c600c80546001019055565b8061133681615779565b91505061130d565b6001600160a01b0382163314156113935760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b60448201526064016106a1565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6114093383611adc565b6114255760405162461bcd60e51b81526004016106a19061562e565b61143184848484611ddd565b50505050565b336114406111a6565b6001600160a01b0316146114665760405162461bcd60e51b81526004016106a1906155cd565b805161147990600d9060208401906132e1565b5050565b606081611489600c5490565b101580156114975750600082115b6012906114b75760405162461bcd60e51b81526004016106a191906154ca565b5060006114c383611754565b6114cc8461104d565b6040516020016114dd929190613a4a565b604051602081830303815290604052905060006114f984611e10565b8283611504876108d9565b6040516020016115179493929190614c71565b6040516020818303038152906040529050600061153385611f0d565b61153c86612060565b60405160200161154d9291906136db565b604051602081830303815290604052905060006115698661212d565b6115ac6032611592604051806040016040528060028152602001611cd960f21b8152508a611a99565b61159c9190615794565b6115a790600a6156b6565b611e10565b6040516020016115bd92919061434d565b60405160208183030381529060405290506000816115da8861234c565b85856040516020016115ef94939291906147c3565b604051602081830303815290604052905060008561160c896125b9565b6116158a612669565b61161e8b612729565b6116278c612837565b60405160200161163b9594939291906141dd565b6040516020818303038152906040529050600061165789611e10565b876116618b612911565b600d61166c8d611e10565b60405160200161167d929190613d43565b60408051601f198184030181529082905261169d949392916020016153b6565b604051602081830303815290604052905060006116e482846116be87612b29565b6040516020016116d093929190614bd5565b604051602081830303815290604052612b29565b6040516020016116f49190615037565b60408051601f198184030181529190529a9950505050505050505050565b3361171b6111a6565b6001600160a01b0316146117415760405162461bcd60e51b81526004016106a1906155cd565b6011805460ff1916911515919091179055565b606081611760600c5490565b1015801561176e5750600082115b60129061178e5760405162461bcd60e51b81526004016106a191906154ca565b5061118082604051806040016040528060058152602001647468656d6560d81b8152506014805480602002602001604051908101604052809291908181526020016000905b828210156111775783829060005260206000200180546117f290615744565b80601f016020809104026020016040519081016040528092919081815260200182805461181e90615744565b801561186b5780601f106118405761010080835404028352916020019161186b565b820191906000526020600020905b81548152906001019060200180831161184e57829003601f168201915b5050505050815260200190600101906117d3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6060816118b9600c5490565b101580156118c75750600082115b6012906118e75760405162461bcd60e51b81526004016106a191906154ca565b50600d6118f383611e10565b604051602001611190929190613d43565b3361190d6111a6565b6001600160a01b0316146119335760405162461bcd60e51b81526004016106a1906155cd565b6001600160a01b0381166119985760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106a1565b6119a181611d51565b50565b60006001600160e01b031982166380ac58cd60e01b14806119d557506001600160e01b03198216635b5e139f60e01b145b806105e657506301ffc9a760e01b6001600160e01b03198316146105e6565b611479828260405180602001604052806000815250612c8e565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a6082610e88565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600082611aac6115a784620668a16156b6565b604051602001611abd9291906136db565b60408051601f1981840301815291905280516020909101209392505050565b6000611ae782611a0e565b611b485760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106a1565b6000611b5383610e88565b9050806001600160a01b0316846001600160a01b03161480611b8e5750836001600160a01b0316611b8384610740565b6001600160a01b0316145b80611b9e5750611b9e818561187f565b949350505050565b826001600160a01b0316611bb982610e88565b6001600160a01b031614611c215760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106a1565b6001600160a01b038216611c835760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106a1565b611c8e838383612cc1565b611c99600082611a2b565b6001600160a01b0383166000908152600360205260408120805460019290611cc2908490615701565b90915550506001600160a01b0382166000908152600360205260408120805460019290611cf09084906156b6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6060818251611db28587611a99565b611dbc9190615794565b81518110611dcc57611dcc6157ea565b602002602001015190509392505050565b611de8848484611ba6565b611df484848484612d79565b6114315760405162461bcd60e51b81526004016106a19061554f565b606081611e345750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e5e5780611e4881615779565b9150611e579050600a836156ce565b9150611e38565b6000816001600160401b03811115611e7857611e78615800565b6040519080825280601f01601f191660200182016040528015611ea2576020820181803683370190505b5090505b8415611b9e57611eb7600183615701565b9150611ec4600a86615794565b611ecf9060306156b6565b60f81b818381518110611ee457611ee46157ea565b60200101906001600160f81b031916908160001a905350611f06600a866156ce565b9450611ea6565b60606000604051806080016040528060458152602001615945604591399050600060405180610280016040528061025d8152602001615b6c61025d913990506000611f73604051806040016040528060038152602001626b657960e81b81525086611a99565b9050611f8161012d82615794565b60011415611fb5578282604051602001611f9c929190613e7f565b6040516020818303038152906040529350505050919050565b611fc060a182615794565b60011415611fdb578282604051602001611f9c929190613a14565b611fe6603b82615794565b60011415612001578282604051602001611f9c9291906139de565b61200c601f82615794565b60011415612027578282604051602001611f9c929190613c41565b612032600b82615794565b6001141561204d578282604051602001611f9c929190613851565b8282604051602001611f9c929190613cd6565b606060006040518060e0016040528060b4815260200161582d60b4913990506000604051806101a0016040528061017881526020016159ad6101789139905060006120c76040518060400160405280600481526020016339ba30b960e11b81525086611a99565b90506120d4602f82615794565b600114156120ef578282604051602001611f9c929190613812565b6120fa600b82615794565b60011415612115578282604051602001611f9c929190613ab2565b50506040805160208101909152600081529392505050565b606060006121586040518060400160405280600581526020016431b7b637b960d91b81525084611a99565b9050612165600782615794565b600314156121ab576040518060400160405280602081526020017f626c61636b3b7265643b677261793b7265643b707572706c653b626c61636b3b815250915050919050565b6121b6600782615794565b600214156121ee575050604080518082019091526012815271626c61636b3b677265656e3b626c61636b3b60701b6020820152919050565b6121f9600782615794565b60011415612230575050604080518082019091526011815270626c61636b3b626c75653b626c61636b3b60781b6020820152919050565b61223b600782615794565b60041415612277575050604080518082019091526016815275626c61636b3b6c69676874626c75653b626c61636b3b60501b6020820152919050565b612282600782615794565b600514156122c457505060408051808201909152601c81527b626c61636b3b7265643b707572706c653b626c75653b626c61636b3b60201b6020820152919050565b6122cf600782615794565b6006141561231257505060408051808201909152601d81527f626c61636b3b626c75653b707572706c653b626c75653b626c61636b3b0000006020820152919050565b505060408051808201909152601c81527b626c61636b3b677261793b7265643b707572706c653b626c61636b3b60201b6020820152919050565b60606000612377604051806040016040528060058152602001643630b9b2b960d91b81525084611a99565b60408051602080820183526000808352835180850190945260038452621c995960ea1b91840191909152929350919081906123b3601f86615794565b600214156123df5750506040805180820190915260038152621c995960ea1b6020820152600091506001905b6123ea604786615794565b6002141561241457505060408051808201909152600581526433b932b2b760d91b60208201526001905b61241f60a786615794565b6002141561244b5750506040805180820190915260038152621c995960ea1b6020820152600191506000905b61245660fb86615794565b6002141561248457505060408051808201909152600581526433b932b2b760d91b6020820152600191506000905b6000816040516020016124979190614908565b60405160208183030381529060405290506000826040516020016124bb9190614a85565b60408051601f1981840301815282820190915260048252631e17b39f60e11b60208301529150841561250c5782816040516020016124fa9291906136db565b60405160208183030381529060405296505b8515612539578282826040516020016125279392919061370a565b60405160208183030381529060405296505b61256c600461256260405180604001604052806002815260200161667160f01b8152508d611a99565b6115a79190615794565b60405160200161257c9190614018565b60408051601f198184030181529082905261259b91899060200161507c565b60405160208183030381529060405298505050505050505050919050565b60408051808201909152601081526f3d913a3930b4ba2fba3cb832911d101160811b6020820152606090806125ed8461104d565b6040516020016125fe92919061397c565b6040516020818303038152906040528161261785611754565b604051602001612628929190613bb0565b60405160208183030381529060405261264085612e86565b6040516020016126529392919061370a565b604051602081830303815290604052915050919050565b606060006126936040518060400160405280600481526020016339ba30b960e11b81525084611a99565b9050600060405180606001604052806023815260200161598a6023913990506126bd602f83615794565b600114156126ee57806040516020016126d69190613893565b60405160208183030381529060405292505050919050565b6126f9600b83615794565b6001141561271257806040516020016126d69190613af2565b505060408051602081019091526000815292915050565b60606000612752604051806040016040528060038152602001626b657960e81b81525084611a99565b90506000604051806060016040528060228152602001615b2560229139905061277d61012d83615794565b6001141561279657806040516020016126d69190613ca5565b6127a160a183615794565b600114156127ba57806040516020016126d691906138ec565b6127c5603b83615794565b600114156127de57806040516020016126d69190613c77565b6127e9601f83615794565b6001141561280257806040516020016126d69190613c11565b61280d600b83615794565b6001141561282657806040516020016126d69190613b82565b806040516020016126d6919061394c565b60606000612862604051806040016040528060058152602001643630b9b2b960d91b81525084611a99565b9050600060405180606001604052806024815260200161592160249139905061288c60fb83615794565b600214156128a557806040516020016126d69190613d0c565b6128b060a783615794565b600214156128c957806040516020016126d69190613b4d565b6128d4604783615794565b600214156128ed57806040516020016126d69190613b1c565b6128f8601f83615794565b6002141561271257806040516020016126d6919061391d565b6060600061291e83611e10565b61292784611754565b6129308561104d565b600d61293b87611e10565b60405160200161294c929190613d43565b60408051601f198184030181529082905261296c94939291602001613dbd565b60408051601f19818403018152828201909152601682527501020b7321031b432b1b5903a3432903634b735b2b2160551b6020830152915060006129af85612eff565b90508015612b205760006129c282611e10565b6129cb83611754565b6129d48461104d565b600d6129df86611e10565b6040516020016129f0929190613d43565b60408051601f1981840301815290829052612a10949392916020016142b3565b60405160208183030381529060405290506000612a2c87612f85565b90508015612af0576000612a3f82611e10565b612a4883611754565b612a518461104d565b600d612a5c86611e10565b604051602001612a6d929190613d43565b60408051601f1981840301815290829052612a8d949392916020016142b3565b604051602081830303815290604052905083821115612ad95785858483604051602001612abd949392919061374d565b6040516020818303038152906040529650505050505050919050565b85858285604051602001612abd949392919061374d565b848483604051602001612b05939291906137c3565b60405160208183030381529060405295505050505050919050565b50909392505050565b805160609080612b49575050604080516020810190915260008152919050565b60006003612b588360026156b6565b612b6291906156ce565b612b6d9060046156e2565b90506000612b7c8260206156b6565b6001600160401b03811115612b9357612b93615800565b6040519080825280601f01601f191660200182016040528015612bbd576020820181803683370190505b50905060006040518060600160405280604081526020016158e1604091399050600181016020830160005b86811015612c49576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101612be8565b506003860660018114612c635760028114612c7457612c80565b613d3d60f01b600119830152612c80565b603d60f81b6000198301525b505050918152949350505050565b612c988383613013565b612ca56000848484612d79565b6108d45760405162461bcd60e51b81526004016106a19061554f565b6001600160a01b038316612d1c57612d1781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612d3f565b816001600160a01b0316836001600160a01b031614612d3f57612d3f8382613151565b6001600160a01b038216612d56576108d4816131ee565b826001600160a01b0316826001600160a01b0316146108d4576108d4828261329d565b60006001600160a01b0384163b15612e7b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612dbd903390899088908890600401615484565b602060405180830381600087803b158015612dd757600080fd5b505af1925050508015612e07575060408051601f3d908101601f19168201909252612e04918101906135c7565b60015b612e61573d808015612e35576040519150601f19603f3d011682016040523d82523d6000602084013e612e3a565b606091505b508051612e595760405162461bcd60e51b81526004016106a19061554f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b9e565b506001949350505050565b60606000604051806060016040528060258152602001615b476025913990506001612eb084612eff565b1015612ecc575050604080516020810190915260008152919050565b6000612ed784612f85565b1115612eee578060405160200161265291906138bf565b806040516020016126529190613a86565b60006001821115612f78576000612f33604051806040016040528060058152602001646c696e6b3160d81b81525084611a99565b90506046612f42606383615794565b1015612f6f57612f53600184615701565b612f5d9082615794565b612f689060016156b6565b9392505050565b50600092915050565b506000919050565b919050565b600080612faf604051806040016040528060058152602001643634b7359960d91b81525084611a99565b90506000612fbe600185615701565b612fc89083615794565b612fd39060016156b6565b9050612fde84612eff565b811415612fef575060009392505050565b6032612ffc606384615794565b1015613009579392505050565b5060009392505050565b6001600160a01b0382166130695760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106a1565b61307281611a0e565b156130be5760405162461bcd60e51b815260206004820152601c60248201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b60448201526064016106a1565b6130ca60008383612cc1565b6001600160a01b03821660009081526003602052604081208054600192906130f39084906156b6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161315e84610f8d565b6131689190615701565b6000838152600760205260409020549091508082146131bb576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061320090600190615701565b60008381526009602052604081205460088054939450909284908110613228576132286157ea565b906000526020600020015490508060088381548110613249576132496157ea565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480613281576132816157d4565b6001900381819060005260206000200160009055905550505050565b60006132a883610f8d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546132ed90615744565b90600052602060002090601f01602090048101928261330f5760008555613355565b82601f1061332857805160ff1916838001178555613355565b82800160010185558215613355579182015b8281111561335557825182559160200191906001019061333a565b50613361929150613365565b5090565b5b808211156133615760008155600101613366565b60006001600160401b038084111561339457613394615800565b604051601f8501601f19908116603f011681019082821181831017156133bc576133bc615800565b816040528093508581528686860111156133d557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612f8057600080fd5b80358015158114612f8057600080fd5b600082601f83011261342757600080fd5b612f688383356020850161337a565b60006020828403121561344857600080fd5b612f68826133ef565b6000806040838503121561346457600080fd5b61346d836133ef565b915061347b602084016133ef565b90509250929050565b60008060006060848603121561349957600080fd5b6134a2846133ef565b92506134b0602085016133ef565b9150604084013590509250925092565b600080600080608085870312156134d657600080fd5b6134df856133ef565b93506134ed602086016133ef565b92506040850135915060608501356001600160401b0381111561350f57600080fd5b8501601f8101871361352057600080fd5b61352f8782356020840161337a565b91505092959194509250565b6000806040838503121561354e57600080fd5b613557836133ef565b915061347b60208401613406565b6000806040838503121561357857600080fd5b613581836133ef565b946020939093013593505050565b6000602082840312156135a157600080fd5b612f6882613406565b6000602082840312156135bc57600080fd5b8135612f6881615816565b6000602082840312156135d957600080fd5b8151612f6881615816565b6000602082840312156135f657600080fd5b81356001600160401b0381111561360c57600080fd5b611b9e84828501613416565b60006020828403121561362a57600080fd5b5035919050565b6000806040838503121561364457600080fd5b8235915060208301356001600160401b0381111561366157600080fd5b61366d85828601613416565b9150509250929050565b6000815180845261368f816020860160208601615718565b601f01601f19169290920160200192915050565b600081516136b5818560208601615718565b9290920192915050565b600082516136d1818460208701615718565b9190910192915050565b600083516136ed818460208801615718565b835190830190613701818360208801615718565b01949350505050565b6000845161371c818460208901615718565b845190830190613730818360208901615718565b8451910190613743818360208801615718565b0195945050505050565b6000855161375f818460208a01615718565b855190830190613773818360208a01615718565b8551910190613786818360208901615718565b6401030b732160dd1b910190815283516137a7816005840160208801615718565b601760f91b600592909101918201526006019695505050505050565b600084516137d5818460208901615718565b8451908301906137e9818360208901615718565b84519101906137fc818360208801615718565b601760f91b910190815260010195945050505050565b60008351613824818460208801615718565b636171756160e01b9083019081528351613845816004840160208801615718565b01600401949350505050565b60008351613863818460208801615718565b66119b1b33331b1b60c91b9083019081528351613887816007840160208801615718565b01600701949350505050565b600082516138a5818460208701615718565b67536972697573227d60c01b920191825250600801919050565b600082516138d1818460208701615718565b683220526f6f6d73227d60b81b920191825250600901919050565b600082516138fe818460208701615718565b6c4372797374616c204b6579227d60981b920191825250600d01919050565b6000825161392f818460208701615718565b6a526564204c61736572227d60a81b920191825250600b01919050565b6000825161395e818460208701615718565b6b436f70706572204b6579227d60a01b920191825250600c01919050565b6000835161398e818460208801615718565b752937b7b6902a3cb832911610113b30b63ab2911d101160511b90830190815283516139c1816016840160208801615718565b630113e96160e51b60169290910191820152601a01949350505050565b600083516139f0818460208801615718565b662366666666333360c81b9083019081528351613887816007840160208801615718565b60008351613a26818460208801615718565b6611b0b331b3333360c91b9083019081528351613887816007840160208801615718565b60008351613a5c818460208801615718565b600160fd1b9083019081528351613a7a816001840160208801615718565b01600101949350505050565b60008251613a98818460208701615718565b673120526f6f6d227d60c01b920191825250600801919050565b60008351613ac4818460208801615718565b64776869746560d81b9083019081528351613ae6816005840160208801615718565b01600501949350505050565b60008251613b04818460208701615718565b6556656761227d60d01b920191825250600601919050565b60008251613b2e818460208701615718565b6c477265656e204c61736572227d60981b920191825250600d01919050565b60008251613b5f818460208701615718565b704475616c20526564204c6173657273227d60781b920191825250601101919050565b60008251613b94818460208701615718565b694a616465204b6579227d60b01b920191825250600a01919050565b60008351613bc2818460208801615718565b762937b7b6902a3432b6b2911610113b30b63ab2911d101160491b9083019081528351613bf6816017840160208801615718565b61227d60f01b60179290910191820152601901949350505050565b60008251613c23818460208701615718565b6b53696c766572204b6579227d60a01b920191825250600c01919050565b60008351613c53818460208801615718565b6608d9191919191960ca1b9083019081528351613887816007840160208801615718565b60008251613c89818460208701615718565b69476f6c64204b6579227d60b01b920191825250600a01919050565b60008251613cb7818460208701615718565b6c5261696e626f77204b6579227d60981b920191825250600d01919050565b60008351613ce8818460208801615718565b660233939353530360cc1b9083019081528351613887816007840160208801615718565b60008251613d1e818460208701615718565b724475616c20477265656e204c6173657273227d60681b920191825250601301919050565b6000808454613d5181615744565b60018281168015613d695760018114613d7a57613da9565b60ff19841687528287019450613da9565b8860005260208060002060005b85811015613da05781548a820152908401908201613d87565b50505082870194505b505050508351613701818360208801615718565b7f546869732069732061206b65796361726420746f206c61756e6368205b2300008152600085516020613df682601e8601838b01615718565b8184019150600160fd1b80601e8401528751613e1881601f8601858c01615718565b601f9301928301528551613e3181838501848a01615718565b610ba560f31b9201818101929092528451613e528160228501888501615718565b7014903bb4ba341037b7329031b634b1b59760791b60229390910192830152506033019695505050505050565b7f3c646566733e3c6c696e6561724772616469656e742069643d227261696e626f81527f77222078313d2231303025222079313d2231303025223e3c73746f70206f666660208201527f7365743d223025222073746f702d636f6c6f723d227768697465222073746f7060408201527f2d6f7061636974793d222e39223e3c616e696d6174652061747472696275746560608201527f4e616d653d2273746f702d636f6c6f72222076616c7565733d2277686974653b60808201527f7265643b6f72616e67653b79656c6c6f773b677265656e3b6c69676874626c7560a08201527f653b6c69676874707572706c653b77686974653b22206475723d22377322207260c08201527f6570656174436f756e743d22696e646566696e69746522202f3e3c2f73746f7060e0820152781f1e17b634b732b0b923b930b234b2b73a1f1e17b232b3399f60391b61010082015260006101198451613fe68183860160208901615718565b80840190506c75726c28237261696e626f772960981b8282015261400e6101268201866136a3565b9695505050505050565b7f3c673e3c66696c7465722069643d22647066223e3c666554757262756c656e6381527f6520747970653d2274757262756c656e63652220626173654672657175656e636020820152643c9e91181760d91b604082015260008251614084816045850160208701615718565b7f3222206e756d4f6374617665733d22322220726573756c743d2274757262756c60459390910192830152507f656e636522202f3e3c6665446973706c6163656d656e744d617020696e323d2260658201527f74757262756c656e63652220696e3d22536f757263654772617068696322207360858201527f63616c653d2235302220784368616e6e656c53656c6563746f723d225222207960a58201527f4368616e6e656c53656c6563746f723d224722202f3e3c2f66696c7465723e3c60c58201527f636972636c652063783d22313230222063793d222d31302220723d223230302260e58201527f2066696c6c3d2275726c28236261636b67726f756e644772616469656e7429226101058201527f206f7061636974793d222e3322207374796c653d2266696c7465723a2075726c6101258201526d1411b23833149110179f1e17b39f60911b61014582015261015301919050565b7f2261747472696275746573223a205b7b2274726169745f74797065223a2022528152600060207437b7b6902730b6b2911610113b30b63ab2911d101160591b8184015287516142338160358601848c01615718565b630113e96160e51b60359185019182015287516142568160398401858c01615718565b875191019061426b8160398401858b01615718565b86519101906142808160398401858a01615718565b85519101906142958160398401858901615718565b605d60f81b60399290910191820152603a0198975050505050505050565b615b2360f01b8152600085516142d0816002850160208a01615718565b8083019050600160fd1b80600283015286516142f3816003850160208b01615718565b6003920191820152845161430e816004840160208901615718565b610ba560f31b600492909101918201528351614331816006840160208801615718565b602960f81b600692909101918201526007019695505050505050565b7f3c646566733e3c6c696e6561724772616469656e742069643d226261636b677281527f6f756e644772616469656e74222078313d2231303025222079313d223130302560208201527f223e3c73746f70206f66667365743d223025222073746f702d636f6c6f723d2260408201527f626c61636b222073746f702d6f7061636974793d222e35223e3c616e696d617460608201527f65206174747269627574654e616d653d2273746f702d636f6c6f72222076616c6080820152643ab2b99e9160d91b60a08201526000835161442b8160a5850160208801615718565b7f22206475723d223230732220726570656174436f756e743d22696e646566696e60a5918401918201527f69746522202f3e3c2f73746f703e3c2f6c696e6561724772616469656e743e3c60c58201527f2f646566733e3c646566733e3c66696c7465722069643d2263223e3c6665496d60e58201527f61676520726573756c743d2270302220786c696e6b3a687265663d22646174616101058201527f3a696d6167652f7376672b786d6c3b6261736536342c50484e325a79423361576101258201527f52306144306e4d6a6b774a79426f5a576c6e614851394a7a55774d436367646d6101458201527f6c6c64304a766544306e4d434177494449354d4341314d44416e4948687462476101658201527f357a5053646f644852774f693876643364334c6e637a4c6d39795a7938794d446101858201527f41774c334e325a79632b50484a6c5933516764326c6b644767394a7a49354d486101a58201527f42344a79426f5a576c6e614851394a7a55774d4842344a79426d6157787350536101c58201527f636a5a6a5931596a566a4a79382b5043397a646d632b22202f3e3c2f66696c746101e58201527f65723e3c66696c7465722069643d2264223e3c6665476175737369616e426c756102058201527f7220696e3d22536f75726365477261706869632220737464446576696174696f61022582015262371e9160e91b6102458201526147ba6146456102488301866136a3565b7f22202f3e3c2f66696c7465723e3c6c696e6561724772616469656e742069643d81527f2261223e3c73746f70206f66667365743d222e37222073746f702d636f6c6f7260208201527f3d222366666622202f3e3c73746f70206f66667365743d222e3935222073746f60408201527f702d636f6c6f723d2223666666222073746f702d6f7061636974793d2230222060608201527f2f3e3c2f6c696e6561724772616469656e743e3c636c6970506174682069643d60808201527f2262223e3c726563742077696474683d2232393022206865696768743d22353060a08201527f30222072783d223432222072793d22343222202f3e3c2f636c6970506174683e60c08201527f3c636c6970506174682069643d2265223e3c726563742077696474683d22323460e08201527f3722206865696768743d223236222072783d2238222072793d2238222f3e3c2f6101008201526f31b634b82830ba341f1e17b232b3399f60811b6101208201526101300190565b95945050505050565b7f3c3f786d6c2076657273696f6e3d22312e302220656e636f64696e673d22555481527f462d38223f3e3c73766720786d6c6e733d22687474703a2f2f7777772e77332e60208201527f6f72672f323030302f7376672220786d6c6e733a786c696e6b3d22687474703a60408201527f2f2f7777772e77332e6f72672f313939392f786c696e6b222077696474683d2260608201527f32393022206865696768743d22353030222076696577426f783d2230203020326080820152671c98101a9818111f60c11b60a0820152600085516148a48160a8850160208a01615718565b8551908301906148bb8160a8840160208a01615718565b85519101906148d18160a8840160208901615718565b84519101906148e78160a8840160208801615718565b651e17b9bb339f60d11b60a8929091019182015260ae019695505050505050565b7f3c67207472616e73666f726d3d227472616e736c617465282d3135342e352c2d81527f333629223e3c6c696e652078313d2230222079313d2230222078323d2233303060208201527211103c991e91199818111039ba3937b5b29e9160691b604082015260008251614982816053850160208701615718565b7f22207374726f6b652d77696474683d22312e3522207374726f6b652d6f70616360539390910192830152507f6974793d22312e30223e3c616e696d6174655472616e73666f726d206174747260738201527f69627574654e616d653d227472616e73666f726d22206174747269627574655460938201527f7970653d22584d4c2220747970653d22726f74617465222066726f6d3d22302060b38201527f333030203330302220746f3d22333630203330302033303022206475723d223260d38201527f30732220726570656174436f756e743d22696e646566696e69746522202f3e3c60f38201526517b634b7329f60d11b61011382015261011901919050565b7f3c6c696e652078313d2230222079313d2230222078323d22333030222079323d81526d11199818111039ba3937b5b29e9160911b602082015260008251614ad481602e850160208701615718565b7f22207374726f6b652d77696474683d22312e3522207374726f6b652d6f706163602e9390910192830152507f6974793d22312e30223e3c616e696d6174655472616e73666f726d2061747472604e8201527f69627574654e616d653d227472616e73666f726d222061747472696275746554606e8201527f7970653d22584d4c2220747970653d22726f74617465222066726f6d3d223520608e8201527f333030203330302220746f3d22333635203330302033303022206475723d223260ae8201527f30732220726570656174436f756e743d22696e646566696e69746522202f3e3c60ce8201526517b634b7329f60d11b60ee82015260f401919050565b607b60f81b815260008451614bf1816001850160208901615718565b845190830190614c08816001840160208901615718565b7f2c2022696d616765223a2022646174613a696d6167652f7376672b786d6c3b626001929091019182015265185cd94d8d0b60d21b60218201528351614c55816027840160208801615718565b61227d60f01b6027929091019182015260290195945050505050565b7f3c673e3c7465787420793d2237302220783d223239222066696c6c3d2223666681527f662220666f6e742d66616d696c793d226d6f6e6f73706163652220666f6e742d60208201527f7765696768743d223230302220666f6e742d73697a653d223336223e23000000604082015260008551614cf581605d850160208a01615718565b7f3c2f746578743e3c7465787420793d223131352220783d223238222066696c6c605d918401918201527f3d22236666662220666f6e742d66616d696c793d226d6f6e6f73706163652220607d8201527f666f6e742d7765696768743d223230302220666f6e742d73697a653d22323222609d820152601f60f91b60bd8201528551614d888160be840160208a01615718565b7f3c2f746578743e3c7465787420793d223134302220783d2232392220666f6e7460be92909101918201527f2d66616d696c793d226d6f6e6f73706163652220666f6e742d73697a653d223160de8201527f34222066696c6c3d2223666666223e3c747370616e2066696c6c3d227267626160fe8201527f283235352c3235352c3235352c302e3829223e4d657461766572736520436c7561011e8201527f623c2f747370616e3e3c2f746578743e3c2f673e3c67207374796c653d22747261013e8201527f616e73666f726d3a7472616e736c61746528323270782c34343470782922206361015e8201527f6c69702d706174683d2275726c28236529223e3c726563742077696474683d2261017e8201527f32343722206865696768743d223236222072783d2238222072793d223822206661019e8201527f696c6c3d227267626128302c302c302c302e362922202f3e3c7465787420783d6101be8201527f22392220793d2231372220666f6e742d66616d696c793d226d6f6e6f737061636101de8201527f652220666f6e742d73697a653d223134222066696c6c3d2223666666223e3c746101fe8201527f7370616e2066696c6c3d2272676261283235352c3235352c3235352c302e362961021e82015261111f60f11b61023e82015261502c614f9d614f97614f816102408501896136a3565b691d101e17ba39b830b71f60b11b8152600a0190565b866136a3565b7f3c616e696d61746520617474726962757465547970653d22584d4c222061747481527f7269627574654e616d653d2278222076616c7565733d223330303b2d3330302260208201527f206475723d223135732220726570656174436f756e743d22696e646566696e696040820152703a329110179f1e17ba32bc3a1f1e17b39f60791b606082015260710190565b979650505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161506f81601d850160208701615718565b91909101601d0192915050565b7f3c6720636c69702d706174683d2275726c28236229223e3c706174682066696c81527f6c3d223030303030302220643d224d302030683239307635303048307a22202f60208201527f3e3c706174682066696c6c3d2275726c28236261636b67726f756e644772616460408201527f69656e74292220643d224d302030683239307635303048307a22202f3e3c672060608201527f7374796c653d2266696c7465723a75726c282364293b7472616e73666f726d3a60808201527f7363616c6528322e39293b7472616e73666f726d2d6f726967696e3a63656e7460a08201527f657220746f70223e3c706174682066696c6c3d226e6f6e652220643d224d302060c08201527f30683239307635303048307a22202f3e3c656c6c697073652063783d2235302560e08201527f222072783d22313830222072793d2231323022206f7061636974793d222e3935610100820152671110179f1e17b39f60c11b610120820152600061012884516151f98183860160208901615718565b61400e6153a66153a084848801017f3c67207374796c653d227472616e73666f726d3a7472616e736c61746528393481527f70782c323634707829223e3c67207374796c653d227472616e73666f726d3a7360208201527f63616c65282e342c2e3429222066696c6c3d2275726c28236261636b67726f7560408201527f6e644772616469656e742922207374726f6b653d2272676261283235352c323560608201527f352c3235352c3129223e3c70617468207374726f6b652d77696474683d22322e60808201527f3522206f7061636974793d222e352220643d226d3132372e39363120302d322e60a08201527f37393520392e35763237352e3636386c322e37393520322e3739203132372e3960c08201527f36322d37352e3633387a222f3e3c70617468207374726f6b652d77696474683d60e08201527f22312e3822206f7061636974793d222e38352220643d224d3132372e393632206101008201527f302030203231322e33326c3132372e3936322037352e363339563135342e31356101208201526c1c3d11179f1e17b39f1e17b39f60991b61014082015261014d0190565b876136a3565b631e17b39f60e11b815260040190565b69226e616d65223a20222360b01b815284516000906153dc81600a850160208a01615718565b600160fd1b600a9184019182015285516153fd81600b840160208a01615718565b72111610113232b9b1b934b83a34b7b7111d101160691b600b9290910191820152845161543181601e840160208901615718565b731116101132bc3a32b93730b62fbab936111d101160611b601e92909101918201528351615466816032840160208801615718565b6201116160ed1b603292909101918201526035019695505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061400e90830184613677565b602081526000612f686020830184613677565b60006020808352600084546154de81615744565b808487015260406001808416600081146154ff576001811461551357615541565b60ff19851689840152606089019550615541565b896000528660002060005b858110156155395781548b820186015290830190880161551e565b8a0184019650505b509398975050505050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601290820152711b585e081cdd5c1c1b1e481c995858da195960721b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601290820152711a5b98dbdc9c9958dd08115512081cd95b9d60721b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b600082198211156156c9576156c96157a8565b500190565b6000826156dd576156dd6157be565b500490565b60008160001904831182151516156156fc576156fc6157a8565b500290565b600082821015615713576157136157a8565b500390565b60005b8381101561573357818101518382015260200161571b565b838111156114315750506000910152565b600181811c9082168061575857607f821691505b60208210811415610b0f57634e487b7160e01b600052602260045260246000fd5b600060001982141561578d5761578d6157a8565b5060010190565b6000826157a3576157a36157be565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146119a157600080fdfe3c646566733e3c6c696e6561724772616469656e742069643d2273746172222078313d2231303025222079313d2231303025223e3c73746f70206f66667365743d223025222073746f702d636f6c6f723d22626c61636b222073746f702d6f7061636974793d222e35223e3c616e696d617465206174747269627574654e616d653d2273746f702d636f6c6f72222076616c7565733d22626c61636b3b626c61636b3b626c61636b3b626c61636b3b677261793b4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f2c207b2274726169745f74797065223a20224c61736572222c202276616c7565223a20223c67207472616e73666f726d3d227472616e736c617465283236372c363329207363616c6528302e30322c2d302e30322920726f746174652831333529222066696c6c3d222c207b2274726169745f74797065223a202253746172222c202276616c7565223a20223b677261793b626c61636b3b626c61636b3b626c61636b3b626c61636b22206475723d2233732220726570656174436f756e743d22696e646566696e69746522202f3e3c2f73746f703e3c2f6c696e6561724772616469656e743e3c2f646566733e3c67207374796c653d227472616e73666f726d3a7472616e736c6174652831333070782c323434707829223e3c67207374796c653d227472616e73666f726d3a7363616c6528302e312c302e3129223e3c706174682066696c6c3d2275726c282373746172292220643d224d3138392e3431332c3834632d33362e3931332c302d33372e3332382c33382e3135372d33372e3332382c33382e31353763302d33332e3138312d33362e3439382d33382e3135372d33362e3439382d33382e31353720206333372e3332382c302c33362e3439382d33382e3135372c33362e3439382d33382e313537433135322e3038352c38342c3138392e3431332c38342c3138392e3431332c38347a22202f3e3c2f673e3c2f673e2c207b2274726169745f74797065223a20224b6579222c202276616c7565223a20222c207b2274726169745f74797065223a20224c696e6b6564222c202276616c7565223a202222207374726f6b653d226e6f6e65223e3c7061746820643d224d383332203130323471302038302d353620313336742d313336203536712d383020302d3133362d3536742d35362d31333671302d34322031392d38332d34312031392d38332031392d383020302d3133362d3536742d35362d31333671302d38302035362d313336743133362d35367138302030203133362035367435362031333671302034322d31392038332034312d31392038332d3139203830203020313336203536743536203133367a6d3835312d37303471302d31372d34392d3636742d36362d3439712d3920302d32382e35203136742d33362e35203333712d31372031372d33382e35203430742d32342e352032366c2d39362d39364c3135363420347132382d32382032382d363820302d34322d33392d3831742d38312d3339712d343020302d36382032384c3733332035313551353537203338342033363820333834712d31363320302d3236352e35203130322e355430203735327130203136302039352033313374323438203234387131353320393520333133203935203136332030203236352e352d3130322e355431303234203130343071302d3138392d3133312d3336356c3335352d333535203936203936712d3320332d32362032342e35742d34302033382e35712d31372031372d33332033362e35742d31362032382e35713020313720343920363674363620343971313320302032332d313020362d362034362d34342e357438322d37392e357134322d34312038362e352d38367437332d37387132382e352d33332032382e352d34317a222f3e3c2f673ea264697066735822122034ea3f5413e15830169ae1f53263b463812d7581d9fc2793ebc601cce7653fbd64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101a45760003560e01c8063662bc72e116100e8578063662bc72e146103c05780636956ba19146103d557806370a08231146103ef578063715018a61461040f5780637a5e3280146104245780638da5cb5b1461044457806391b7f5ed1461045957806395d89b4114610479578063a0712d681461048e578063a22cb465146104a1578063b88d4fde146104c1578063c4633600146104e1578063c87b56dd14610501578063caab918214610521578063d66148dc14610541578063e985e9c514610561578063f1b66bba14610581578063f2fde38b146105a157600080fd5b806301ffc9a7146101a957806306fdde03146101de57806307a0c58514610200578063081812fc14610222578063095ea7b31461025a5780630b4ab7961461027a57806318160ddd1461029a5780631ea8f3f1146102b957806322f4596f146102cc578063235b6ea1146102e257806323b872dd146102f85780632f745c59146103185780633ccfd60b1461033857806342842e0e14610340578063434f48c4146103605780634f6ccce7146103805780636352211e146103a0575b600080fd5b3480156101b557600080fd5b506101c96101c43660046135aa565b6105c1565b60405190151581526020015b60405180910390f35b3480156101ea57600080fd5b506101f36105ec565b6040516101d591906154b7565b34801561020c57600080fd5b5061022061021b366004613436565b61067e565b005b34801561022e57600080fd5b5061024261023d366004613618565b610740565b6040516001600160a01b0390911681526020016101d5565b34801561026657600080fd5b50610220610275366004613565565b6107c8565b34801561028657600080fd5b506101f3610295366004613618565b6108d9565b3480156102a657600080fd5b506008545b6040519081526020016101d5565b6102206102c7366004613631565b610b15565b3480156102d857600080fd5b506102ab60105481565b3480156102ee57600080fd5b506102ab600f5481565b34801561030457600080fd5b50610220610313366004613484565b610beb565b34801561032457600080fd5b506102ab610333366004613565565b610c1c565b610220610cb2565b34801561034c57600080fd5b5061022061035b366004613484565b610d07565b34801561036c57600080fd5b5061022061037b366004613618565b610d22565b34801561038c57600080fd5b506102ab61039b366004613618565b610df5565b3480156103ac57600080fd5b506102426103bb366004613618565b610e88565b3480156103cc57600080fd5b506101f3610eff565b3480156103e157600080fd5b506011546101c99060ff1681565b3480156103fb57600080fd5b506102ab61040a366004613436565b610f8d565b34801561041b57600080fd5b50610220611014565b34801561043057600080fd5b506101f361043f366004613618565b61104d565b34801561045057600080fd5b506102426111a6565b34801561046557600080fd5b50610220610474366004613618565b6111b5565b34801561048557600080fd5b506101f36111e9565b61022061049c366004613618565b6111f8565b3480156104ad57600080fd5b506102206104bc36600461353b565b61133e565b3480156104cd57600080fd5b506102206104dc3660046134c0565b6113ff565b3480156104ed57600080fd5b506102206104fc3660046135e4565b611437565b34801561050d57600080fd5b506101f361051c366004613618565b61147d565b34801561052d57600080fd5b5061022061053c36600461358f565b611712565b34801561054d57600080fd5b506101f361055c366004613618565b611754565b34801561056d57600080fd5b506101c961057c366004613451565b61187f565b34801561058d57600080fd5b506101f361059c366004613618565b6118ad565b3480156105ad57600080fd5b506102206105bc366004613436565b611904565b60006001600160e01b0319821663780e9d6360e01b14806105e657506105e6826119a4565b92915050565b6060600080546105fb90615744565b80601f016020809104026020016040519081016040528092919081815260200182805461062790615744565b80156106745780601f1061064957610100808354040283529160200191610674565b820191906000526020600020905b81548152906001019060200180831161065757829003601f168201915b5050505050905090565b6002600a5414156106aa5760405162461bcd60e51b81526004016106a19061567f565b60405180910390fd5b6002600a55336106b86111a6565b6001600160a01b0316146106de5760405162461bcd60e51b81526004016106a1906155cd565b601054600c546106ef9060016156b6565b111561070d5760405162461bcd60e51b81526004016106a1906155a1565b61072a8161071a600c5490565b6107259060016156b6565b6119f4565b610738600c80546001019055565b506001600a55565b600061074b82611a0e565b6107ac5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106a1565b506000908152600460205260409020546001600160a01b031690565b60006107d382610e88565b9050806001600160a01b0316836001600160a01b031614156108415760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106a1565b336001600160a01b038216148061085d575061085d813361187f565b6108ca5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b60648201526084016106a1565b6108d48383611a2b565b505050565b6060816108e5600c5490565b101580156108f35750600082115b6012906109135760405162461bcd60e51b81526004016106a191906154ca565b506000828152600e60205260408120805461092d90615744565b80601f016020809104026020016040519081016040528092919081815260200182805461095990615744565b80156109a65780601f1061097b576101008083540402835291602001916109a6565b820191906000526020600020905b81548152906001019060200180831161098957829003601f168201915b50505050509050805160001415610a705760006109de604051806040016040528060038152602001621b999d60ea1b81525085611a99565b90506109eb601182615794565b60031415610a165750506040805180820190915260048152634c46472160e01b602082015292915050565b610a21600782615794565b60031415610a4e5750506040805180820190915260068152655741474d492160d01b602082015292915050565b5050604080518082019091526003815262676d2160e81b602082015292915050565b6000838152600e602052604090208054610a8990615744565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab590615744565b8015610b025780601f10610ad757610100808354040283529160200191610b02565b820191906000526020600020905b815481529060010190602001808311610ae557829003601f168201915b5050505050915050919050565b50919050565b81610b1f600c5490565b10158015610b2d5750600082115b601290610b4d5760405162461bcd60e51b81526004016106a191906154ca565b50610b5782610e88565b6001600160a01b0316336001600160a01b031614610baa5760405162461bcd60e51b815260206004820152601060248201526f746f6b656e206f776e6572206f6e6c7960801b60448201526064016106a1565b600f54341015610bcc5760405162461bcd60e51b81526004016106a190615602565b6000828152600e6020908152604090912082516108d4928401906132e1565b610bf53382611adc565b610c115760405162461bcd60e51b81526004016106a19061562e565b6108d4838383611ba6565b6000610c2783610f8d565b8210610c895760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106a1565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b33610cbb6111a6565b6001600160a01b031614610ce15760405162461bcd60e51b81526004016106a1906155cd565b60405133904780156108fc02916000818181858888f19350505050610d0557600080fd5b565b6108d4838383604051806020016040528060008152506113ff565b6002600a541415610d455760405162461bcd60e51b81526004016106a19061567f565b6002600a5533610d536111a6565b6001600160a01b031614610d795760405162461bcd60e51b81526004016106a1906155cd565b60105481610d86600c5490565b610d9091906156b6565b1115610dae5760405162461bcd60e51b81526004016106a1906155a1565b60005b81811015610dec57610dcc610dc46111a6565b600c5461071a565b610dda600c80546001019055565b80610de481615779565b915050610db1565b50506001600a55565b6000610e0060085490565b8210610e635760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106a1565b60088281548110610e7657610e766157ea565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806105e65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106a1565b600d8054610f0c90615744565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3890615744565b8015610f855780601f10610f5a57610100808354040283529160200191610f85565b820191906000526020600020905b815481529060010190602001808311610f6857829003601f168201915b505050505081565b60006001600160a01b038216610ff85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106a1565b506001600160a01b031660009081526003602052604090205490565b3361101d6111a6565b6001600160a01b0316146110435760405162461bcd60e51b81526004016106a1906155cd565b610d056000611d51565b606081611059600c5490565b101580156110675750600082115b6012906110875760405162461bcd60e51b81526004016106a191906154ca565b5061118082604051806040016040528060048152602001637479706560e01b8152506013805480602002602001604051908101604052809291908181526020016000905b828210156111775783829060005260206000200180546110ea90615744565b80601f016020809104026020016040519081016040528092919081815260200182805461111690615744565b80156111635780601f1061113857610100808354040283529160200191611163565b820191906000526020600020905b81548152906001019060200180831161114657829003601f168201915b5050505050815260200190600101906110cb565b50505050611da3565b60405160200161119091906136bf565b6040516020818303038152906040529050919050565b600b546001600160a01b031690565b336111be6111a6565b6001600160a01b0316146111e45760405162461bcd60e51b81526004016106a1906155cd565b600f55565b6060600180546105fb90615744565b6002600a54141561121b5760405162461bcd60e51b81526004016106a19061567f565b6002600a5560115460ff166112675760405162461bcd60e51b81526020600482015260126024820152711c1d589b1a58c81cd85b19481c185d5cd95960721b60448201526064016106a1565b600a8111156112a85760405162461bcd60e51b815260206004820152600d60248201526c0dac2f040626040e0cae440a8b609b1b60448201526064016106a1565b601054816112b5600c5490565b6112bf91906156b6565b11156112dd5760405162461bcd60e51b81526004016106a1906155a1565b80600f546112eb91906156e2565b34101561130a5760405162461bcd60e51b81526004016106a190615602565b60005b81811015610dec5761131e33610dc4565b61132c600c80546001019055565b8061133681615779565b91505061130d565b6001600160a01b0382163314156113935760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b60448201526064016106a1565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6114093383611adc565b6114255760405162461bcd60e51b81526004016106a19061562e565b61143184848484611ddd565b50505050565b336114406111a6565b6001600160a01b0316146114665760405162461bcd60e51b81526004016106a1906155cd565b805161147990600d9060208401906132e1565b5050565b606081611489600c5490565b101580156114975750600082115b6012906114b75760405162461bcd60e51b81526004016106a191906154ca565b5060006114c383611754565b6114cc8461104d565b6040516020016114dd929190613a4a565b604051602081830303815290604052905060006114f984611e10565b8283611504876108d9565b6040516020016115179493929190614c71565b6040516020818303038152906040529050600061153385611f0d565b61153c86612060565b60405160200161154d9291906136db565b604051602081830303815290604052905060006115698661212d565b6115ac6032611592604051806040016040528060028152602001611cd960f21b8152508a611a99565b61159c9190615794565b6115a790600a6156b6565b611e10565b6040516020016115bd92919061434d565b60405160208183030381529060405290506000816115da8861234c565b85856040516020016115ef94939291906147c3565b604051602081830303815290604052905060008561160c896125b9565b6116158a612669565b61161e8b612729565b6116278c612837565b60405160200161163b9594939291906141dd565b6040516020818303038152906040529050600061165789611e10565b876116618b612911565b600d61166c8d611e10565b60405160200161167d929190613d43565b60408051601f198184030181529082905261169d949392916020016153b6565b604051602081830303815290604052905060006116e482846116be87612b29565b6040516020016116d093929190614bd5565b604051602081830303815290604052612b29565b6040516020016116f49190615037565b60408051601f198184030181529190529a9950505050505050505050565b3361171b6111a6565b6001600160a01b0316146117415760405162461bcd60e51b81526004016106a1906155cd565b6011805460ff1916911515919091179055565b606081611760600c5490565b1015801561176e5750600082115b60129061178e5760405162461bcd60e51b81526004016106a191906154ca565b5061118082604051806040016040528060058152602001647468656d6560d81b8152506014805480602002602001604051908101604052809291908181526020016000905b828210156111775783829060005260206000200180546117f290615744565b80601f016020809104026020016040519081016040528092919081815260200182805461181e90615744565b801561186b5780601f106118405761010080835404028352916020019161186b565b820191906000526020600020905b81548152906001019060200180831161184e57829003601f168201915b5050505050815260200190600101906117d3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6060816118b9600c5490565b101580156118c75750600082115b6012906118e75760405162461bcd60e51b81526004016106a191906154ca565b50600d6118f383611e10565b604051602001611190929190613d43565b3361190d6111a6565b6001600160a01b0316146119335760405162461bcd60e51b81526004016106a1906155cd565b6001600160a01b0381166119985760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106a1565b6119a181611d51565b50565b60006001600160e01b031982166380ac58cd60e01b14806119d557506001600160e01b03198216635b5e139f60e01b145b806105e657506301ffc9a760e01b6001600160e01b03198316146105e6565b611479828260405180602001604052806000815250612c8e565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a6082610e88565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600082611aac6115a784620668a16156b6565b604051602001611abd9291906136db565b60408051601f1981840301815291905280516020909101209392505050565b6000611ae782611a0e565b611b485760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106a1565b6000611b5383610e88565b9050806001600160a01b0316846001600160a01b03161480611b8e5750836001600160a01b0316611b8384610740565b6001600160a01b0316145b80611b9e5750611b9e818561187f565b949350505050565b826001600160a01b0316611bb982610e88565b6001600160a01b031614611c215760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106a1565b6001600160a01b038216611c835760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106a1565b611c8e838383612cc1565b611c99600082611a2b565b6001600160a01b0383166000908152600360205260408120805460019290611cc2908490615701565b90915550506001600160a01b0382166000908152600360205260408120805460019290611cf09084906156b6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6060818251611db28587611a99565b611dbc9190615794565b81518110611dcc57611dcc6157ea565b602002602001015190509392505050565b611de8848484611ba6565b611df484848484612d79565b6114315760405162461bcd60e51b81526004016106a19061554f565b606081611e345750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e5e5780611e4881615779565b9150611e579050600a836156ce565b9150611e38565b6000816001600160401b03811115611e7857611e78615800565b6040519080825280601f01601f191660200182016040528015611ea2576020820181803683370190505b5090505b8415611b9e57611eb7600183615701565b9150611ec4600a86615794565b611ecf9060306156b6565b60f81b818381518110611ee457611ee46157ea565b60200101906001600160f81b031916908160001a905350611f06600a866156ce565b9450611ea6565b60606000604051806080016040528060458152602001615945604591399050600060405180610280016040528061025d8152602001615b6c61025d913990506000611f73604051806040016040528060038152602001626b657960e81b81525086611a99565b9050611f8161012d82615794565b60011415611fb5578282604051602001611f9c929190613e7f565b6040516020818303038152906040529350505050919050565b611fc060a182615794565b60011415611fdb578282604051602001611f9c929190613a14565b611fe6603b82615794565b60011415612001578282604051602001611f9c9291906139de565b61200c601f82615794565b60011415612027578282604051602001611f9c929190613c41565b612032600b82615794565b6001141561204d578282604051602001611f9c929190613851565b8282604051602001611f9c929190613cd6565b606060006040518060e0016040528060b4815260200161582d60b4913990506000604051806101a0016040528061017881526020016159ad6101789139905060006120c76040518060400160405280600481526020016339ba30b960e11b81525086611a99565b90506120d4602f82615794565b600114156120ef578282604051602001611f9c929190613812565b6120fa600b82615794565b60011415612115578282604051602001611f9c929190613ab2565b50506040805160208101909152600081529392505050565b606060006121586040518060400160405280600581526020016431b7b637b960d91b81525084611a99565b9050612165600782615794565b600314156121ab576040518060400160405280602081526020017f626c61636b3b7265643b677261793b7265643b707572706c653b626c61636b3b815250915050919050565b6121b6600782615794565b600214156121ee575050604080518082019091526012815271626c61636b3b677265656e3b626c61636b3b60701b6020820152919050565b6121f9600782615794565b60011415612230575050604080518082019091526011815270626c61636b3b626c75653b626c61636b3b60781b6020820152919050565b61223b600782615794565b60041415612277575050604080518082019091526016815275626c61636b3b6c69676874626c75653b626c61636b3b60501b6020820152919050565b612282600782615794565b600514156122c457505060408051808201909152601c81527b626c61636b3b7265643b707572706c653b626c75653b626c61636b3b60201b6020820152919050565b6122cf600782615794565b6006141561231257505060408051808201909152601d81527f626c61636b3b626c75653b707572706c653b626c75653b626c61636b3b0000006020820152919050565b505060408051808201909152601c81527b626c61636b3b677261793b7265643b707572706c653b626c61636b3b60201b6020820152919050565b60606000612377604051806040016040528060058152602001643630b9b2b960d91b81525084611a99565b60408051602080820183526000808352835180850190945260038452621c995960ea1b91840191909152929350919081906123b3601f86615794565b600214156123df5750506040805180820190915260038152621c995960ea1b6020820152600091506001905b6123ea604786615794565b6002141561241457505060408051808201909152600581526433b932b2b760d91b60208201526001905b61241f60a786615794565b6002141561244b5750506040805180820190915260038152621c995960ea1b6020820152600191506000905b61245660fb86615794565b6002141561248457505060408051808201909152600581526433b932b2b760d91b6020820152600191506000905b6000816040516020016124979190614908565b60405160208183030381529060405290506000826040516020016124bb9190614a85565b60408051601f1981840301815282820190915260048252631e17b39f60e11b60208301529150841561250c5782816040516020016124fa9291906136db565b60405160208183030381529060405296505b8515612539578282826040516020016125279392919061370a565b60405160208183030381529060405296505b61256c600461256260405180604001604052806002815260200161667160f01b8152508d611a99565b6115a79190615794565b60405160200161257c9190614018565b60408051601f198184030181529082905261259b91899060200161507c565b60405160208183030381529060405298505050505050505050919050565b60408051808201909152601081526f3d913a3930b4ba2fba3cb832911d101160811b6020820152606090806125ed8461104d565b6040516020016125fe92919061397c565b6040516020818303038152906040528161261785611754565b604051602001612628929190613bb0565b60405160208183030381529060405261264085612e86565b6040516020016126529392919061370a565b604051602081830303815290604052915050919050565b606060006126936040518060400160405280600481526020016339ba30b960e11b81525084611a99565b9050600060405180606001604052806023815260200161598a6023913990506126bd602f83615794565b600114156126ee57806040516020016126d69190613893565b60405160208183030381529060405292505050919050565b6126f9600b83615794565b6001141561271257806040516020016126d69190613af2565b505060408051602081019091526000815292915050565b60606000612752604051806040016040528060038152602001626b657960e81b81525084611a99565b90506000604051806060016040528060228152602001615b2560229139905061277d61012d83615794565b6001141561279657806040516020016126d69190613ca5565b6127a160a183615794565b600114156127ba57806040516020016126d691906138ec565b6127c5603b83615794565b600114156127de57806040516020016126d69190613c77565b6127e9601f83615794565b6001141561280257806040516020016126d69190613c11565b61280d600b83615794565b6001141561282657806040516020016126d69190613b82565b806040516020016126d6919061394c565b60606000612862604051806040016040528060058152602001643630b9b2b960d91b81525084611a99565b9050600060405180606001604052806024815260200161592160249139905061288c60fb83615794565b600214156128a557806040516020016126d69190613d0c565b6128b060a783615794565b600214156128c957806040516020016126d69190613b4d565b6128d4604783615794565b600214156128ed57806040516020016126d69190613b1c565b6128f8601f83615794565b6002141561271257806040516020016126d6919061391d565b6060600061291e83611e10565b61292784611754565b6129308561104d565b600d61293b87611e10565b60405160200161294c929190613d43565b60408051601f198184030181529082905261296c94939291602001613dbd565b60408051601f19818403018152828201909152601682527501020b7321031b432b1b5903a3432903634b735b2b2160551b6020830152915060006129af85612eff565b90508015612b205760006129c282611e10565b6129cb83611754565b6129d48461104d565b600d6129df86611e10565b6040516020016129f0929190613d43565b60408051601f1981840301815290829052612a10949392916020016142b3565b60405160208183030381529060405290506000612a2c87612f85565b90508015612af0576000612a3f82611e10565b612a4883611754565b612a518461104d565b600d612a5c86611e10565b604051602001612a6d929190613d43565b60408051601f1981840301815290829052612a8d949392916020016142b3565b604051602081830303815290604052905083821115612ad95785858483604051602001612abd949392919061374d565b6040516020818303038152906040529650505050505050919050565b85858285604051602001612abd949392919061374d565b848483604051602001612b05939291906137c3565b60405160208183030381529060405295505050505050919050565b50909392505050565b805160609080612b49575050604080516020810190915260008152919050565b60006003612b588360026156b6565b612b6291906156ce565b612b6d9060046156e2565b90506000612b7c8260206156b6565b6001600160401b03811115612b9357612b93615800565b6040519080825280601f01601f191660200182016040528015612bbd576020820181803683370190505b50905060006040518060600160405280604081526020016158e1604091399050600181016020830160005b86811015612c49576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101612be8565b506003860660018114612c635760028114612c7457612c80565b613d3d60f01b600119830152612c80565b603d60f81b6000198301525b505050918152949350505050565b612c988383613013565b612ca56000848484612d79565b6108d45760405162461bcd60e51b81526004016106a19061554f565b6001600160a01b038316612d1c57612d1781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612d3f565b816001600160a01b0316836001600160a01b031614612d3f57612d3f8382613151565b6001600160a01b038216612d56576108d4816131ee565b826001600160a01b0316826001600160a01b0316146108d4576108d4828261329d565b60006001600160a01b0384163b15612e7b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612dbd903390899088908890600401615484565b602060405180830381600087803b158015612dd757600080fd5b505af1925050508015612e07575060408051601f3d908101601f19168201909252612e04918101906135c7565b60015b612e61573d808015612e35576040519150601f19603f3d011682016040523d82523d6000602084013e612e3a565b606091505b508051612e595760405162461bcd60e51b81526004016106a19061554f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b9e565b506001949350505050565b60606000604051806060016040528060258152602001615b476025913990506001612eb084612eff565b1015612ecc575050604080516020810190915260008152919050565b6000612ed784612f85565b1115612eee578060405160200161265291906138bf565b806040516020016126529190613a86565b60006001821115612f78576000612f33604051806040016040528060058152602001646c696e6b3160d81b81525084611a99565b90506046612f42606383615794565b1015612f6f57612f53600184615701565b612f5d9082615794565b612f689060016156b6565b9392505050565b50600092915050565b506000919050565b919050565b600080612faf604051806040016040528060058152602001643634b7359960d91b81525084611a99565b90506000612fbe600185615701565b612fc89083615794565b612fd39060016156b6565b9050612fde84612eff565b811415612fef575060009392505050565b6032612ffc606384615794565b1015613009579392505050565b5060009392505050565b6001600160a01b0382166130695760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106a1565b61307281611a0e565b156130be5760405162461bcd60e51b815260206004820152601c60248201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b60448201526064016106a1565b6130ca60008383612cc1565b6001600160a01b03821660009081526003602052604081208054600192906130f39084906156b6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161315e84610f8d565b6131689190615701565b6000838152600760205260409020549091508082146131bb576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061320090600190615701565b60008381526009602052604081205460088054939450909284908110613228576132286157ea565b906000526020600020015490508060088381548110613249576132496157ea565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480613281576132816157d4565b6001900381819060005260206000200160009055905550505050565b60006132a883610f8d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546132ed90615744565b90600052602060002090601f01602090048101928261330f5760008555613355565b82601f1061332857805160ff1916838001178555613355565b82800160010185558215613355579182015b8281111561335557825182559160200191906001019061333a565b50613361929150613365565b5090565b5b808211156133615760008155600101613366565b60006001600160401b038084111561339457613394615800565b604051601f8501601f19908116603f011681019082821181831017156133bc576133bc615800565b816040528093508581528686860111156133d557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612f8057600080fd5b80358015158114612f8057600080fd5b600082601f83011261342757600080fd5b612f688383356020850161337a565b60006020828403121561344857600080fd5b612f68826133ef565b6000806040838503121561346457600080fd5b61346d836133ef565b915061347b602084016133ef565b90509250929050565b60008060006060848603121561349957600080fd5b6134a2846133ef565b92506134b0602085016133ef565b9150604084013590509250925092565b600080600080608085870312156134d657600080fd5b6134df856133ef565b93506134ed602086016133ef565b92506040850135915060608501356001600160401b0381111561350f57600080fd5b8501601f8101871361352057600080fd5b61352f8782356020840161337a565b91505092959194509250565b6000806040838503121561354e57600080fd5b613557836133ef565b915061347b60208401613406565b6000806040838503121561357857600080fd5b613581836133ef565b946020939093013593505050565b6000602082840312156135a157600080fd5b612f6882613406565b6000602082840312156135bc57600080fd5b8135612f6881615816565b6000602082840312156135d957600080fd5b8151612f6881615816565b6000602082840312156135f657600080fd5b81356001600160401b0381111561360c57600080fd5b611b9e84828501613416565b60006020828403121561362a57600080fd5b5035919050565b6000806040838503121561364457600080fd5b8235915060208301356001600160401b0381111561366157600080fd5b61366d85828601613416565b9150509250929050565b6000815180845261368f816020860160208601615718565b601f01601f19169290920160200192915050565b600081516136b5818560208601615718565b9290920192915050565b600082516136d1818460208701615718565b9190910192915050565b600083516136ed818460208801615718565b835190830190613701818360208801615718565b01949350505050565b6000845161371c818460208901615718565b845190830190613730818360208901615718565b8451910190613743818360208801615718565b0195945050505050565b6000855161375f818460208a01615718565b855190830190613773818360208a01615718565b8551910190613786818360208901615718565b6401030b732160dd1b910190815283516137a7816005840160208801615718565b601760f91b600592909101918201526006019695505050505050565b600084516137d5818460208901615718565b8451908301906137e9818360208901615718565b84519101906137fc818360208801615718565b601760f91b910190815260010195945050505050565b60008351613824818460208801615718565b636171756160e01b9083019081528351613845816004840160208801615718565b01600401949350505050565b60008351613863818460208801615718565b66119b1b33331b1b60c91b9083019081528351613887816007840160208801615718565b01600701949350505050565b600082516138a5818460208701615718565b67536972697573227d60c01b920191825250600801919050565b600082516138d1818460208701615718565b683220526f6f6d73227d60b81b920191825250600901919050565b600082516138fe818460208701615718565b6c4372797374616c204b6579227d60981b920191825250600d01919050565b6000825161392f818460208701615718565b6a526564204c61736572227d60a81b920191825250600b01919050565b6000825161395e818460208701615718565b6b436f70706572204b6579227d60a01b920191825250600c01919050565b6000835161398e818460208801615718565b752937b7b6902a3cb832911610113b30b63ab2911d101160511b90830190815283516139c1816016840160208801615718565b630113e96160e51b60169290910191820152601a01949350505050565b600083516139f0818460208801615718565b662366666666333360c81b9083019081528351613887816007840160208801615718565b60008351613a26818460208801615718565b6611b0b331b3333360c91b9083019081528351613887816007840160208801615718565b60008351613a5c818460208801615718565b600160fd1b9083019081528351613a7a816001840160208801615718565b01600101949350505050565b60008251613a98818460208701615718565b673120526f6f6d227d60c01b920191825250600801919050565b60008351613ac4818460208801615718565b64776869746560d81b9083019081528351613ae6816005840160208801615718565b01600501949350505050565b60008251613b04818460208701615718565b6556656761227d60d01b920191825250600601919050565b60008251613b2e818460208701615718565b6c477265656e204c61736572227d60981b920191825250600d01919050565b60008251613b5f818460208701615718565b704475616c20526564204c6173657273227d60781b920191825250601101919050565b60008251613b94818460208701615718565b694a616465204b6579227d60b01b920191825250600a01919050565b60008351613bc2818460208801615718565b762937b7b6902a3432b6b2911610113b30b63ab2911d101160491b9083019081528351613bf6816017840160208801615718565b61227d60f01b60179290910191820152601901949350505050565b60008251613c23818460208701615718565b6b53696c766572204b6579227d60a01b920191825250600c01919050565b60008351613c53818460208801615718565b6608d9191919191960ca1b9083019081528351613887816007840160208801615718565b60008251613c89818460208701615718565b69476f6c64204b6579227d60b01b920191825250600a01919050565b60008251613cb7818460208701615718565b6c5261696e626f77204b6579227d60981b920191825250600d01919050565b60008351613ce8818460208801615718565b660233939353530360cc1b9083019081528351613887816007840160208801615718565b60008251613d1e818460208701615718565b724475616c20477265656e204c6173657273227d60681b920191825250601301919050565b6000808454613d5181615744565b60018281168015613d695760018114613d7a57613da9565b60ff19841687528287019450613da9565b8860005260208060002060005b85811015613da05781548a820152908401908201613d87565b50505082870194505b505050508351613701818360208801615718565b7f546869732069732061206b65796361726420746f206c61756e6368205b2300008152600085516020613df682601e8601838b01615718565b8184019150600160fd1b80601e8401528751613e1881601f8601858c01615718565b601f9301928301528551613e3181838501848a01615718565b610ba560f31b9201818101929092528451613e528160228501888501615718565b7014903bb4ba341037b7329031b634b1b59760791b60229390910192830152506033019695505050505050565b7f3c646566733e3c6c696e6561724772616469656e742069643d227261696e626f81527f77222078313d2231303025222079313d2231303025223e3c73746f70206f666660208201527f7365743d223025222073746f702d636f6c6f723d227768697465222073746f7060408201527f2d6f7061636974793d222e39223e3c616e696d6174652061747472696275746560608201527f4e616d653d2273746f702d636f6c6f72222076616c7565733d2277686974653b60808201527f7265643b6f72616e67653b79656c6c6f773b677265656e3b6c69676874626c7560a08201527f653b6c69676874707572706c653b77686974653b22206475723d22377322207260c08201527f6570656174436f756e743d22696e646566696e69746522202f3e3c2f73746f7060e0820152781f1e17b634b732b0b923b930b234b2b73a1f1e17b232b3399f60391b61010082015260006101198451613fe68183860160208901615718565b80840190506c75726c28237261696e626f772960981b8282015261400e6101268201866136a3565b9695505050505050565b7f3c673e3c66696c7465722069643d22647066223e3c666554757262756c656e6381527f6520747970653d2274757262756c656e63652220626173654672657175656e636020820152643c9e91181760d91b604082015260008251614084816045850160208701615718565b7f3222206e756d4f6374617665733d22322220726573756c743d2274757262756c60459390910192830152507f656e636522202f3e3c6665446973706c6163656d656e744d617020696e323d2260658201527f74757262756c656e63652220696e3d22536f757263654772617068696322207360858201527f63616c653d2235302220784368616e6e656c53656c6563746f723d225222207960a58201527f4368616e6e656c53656c6563746f723d224722202f3e3c2f66696c7465723e3c60c58201527f636972636c652063783d22313230222063793d222d31302220723d223230302260e58201527f2066696c6c3d2275726c28236261636b67726f756e644772616469656e7429226101058201527f206f7061636974793d222e3322207374796c653d2266696c7465723a2075726c6101258201526d1411b23833149110179f1e17b39f60911b61014582015261015301919050565b7f2261747472696275746573223a205b7b2274726169745f74797065223a2022528152600060207437b7b6902730b6b2911610113b30b63ab2911d101160591b8184015287516142338160358601848c01615718565b630113e96160e51b60359185019182015287516142568160398401858c01615718565b875191019061426b8160398401858b01615718565b86519101906142808160398401858a01615718565b85519101906142958160398401858901615718565b605d60f81b60399290910191820152603a0198975050505050505050565b615b2360f01b8152600085516142d0816002850160208a01615718565b8083019050600160fd1b80600283015286516142f3816003850160208b01615718565b6003920191820152845161430e816004840160208901615718565b610ba560f31b600492909101918201528351614331816006840160208801615718565b602960f81b600692909101918201526007019695505050505050565b7f3c646566733e3c6c696e6561724772616469656e742069643d226261636b677281527f6f756e644772616469656e74222078313d2231303025222079313d223130302560208201527f223e3c73746f70206f66667365743d223025222073746f702d636f6c6f723d2260408201527f626c61636b222073746f702d6f7061636974793d222e35223e3c616e696d617460608201527f65206174747269627574654e616d653d2273746f702d636f6c6f72222076616c6080820152643ab2b99e9160d91b60a08201526000835161442b8160a5850160208801615718565b7f22206475723d223230732220726570656174436f756e743d22696e646566696e60a5918401918201527f69746522202f3e3c2f73746f703e3c2f6c696e6561724772616469656e743e3c60c58201527f2f646566733e3c646566733e3c66696c7465722069643d2263223e3c6665496d60e58201527f61676520726573756c743d2270302220786c696e6b3a687265663d22646174616101058201527f3a696d6167652f7376672b786d6c3b6261736536342c50484e325a79423361576101258201527f52306144306e4d6a6b774a79426f5a576c6e614851394a7a55774d436367646d6101458201527f6c6c64304a766544306e4d434177494449354d4341314d44416e4948687462476101658201527f357a5053646f644852774f693876643364334c6e637a4c6d39795a7938794d446101858201527f41774c334e325a79632b50484a6c5933516764326c6b644767394a7a49354d486101a58201527f42344a79426f5a576c6e614851394a7a55774d4842344a79426d6157787350536101c58201527f636a5a6a5931596a566a4a79382b5043397a646d632b22202f3e3c2f66696c746101e58201527f65723e3c66696c7465722069643d2264223e3c6665476175737369616e426c756102058201527f7220696e3d22536f75726365477261706869632220737464446576696174696f61022582015262371e9160e91b6102458201526147ba6146456102488301866136a3565b7f22202f3e3c2f66696c7465723e3c6c696e6561724772616469656e742069643d81527f2261223e3c73746f70206f66667365743d222e37222073746f702d636f6c6f7260208201527f3d222366666622202f3e3c73746f70206f66667365743d222e3935222073746f60408201527f702d636f6c6f723d2223666666222073746f702d6f7061636974793d2230222060608201527f2f3e3c2f6c696e6561724772616469656e743e3c636c6970506174682069643d60808201527f2262223e3c726563742077696474683d2232393022206865696768743d22353060a08201527f30222072783d223432222072793d22343222202f3e3c2f636c6970506174683e60c08201527f3c636c6970506174682069643d2265223e3c726563742077696474683d22323460e08201527f3722206865696768743d223236222072783d2238222072793d2238222f3e3c2f6101008201526f31b634b82830ba341f1e17b232b3399f60811b6101208201526101300190565b95945050505050565b7f3c3f786d6c2076657273696f6e3d22312e302220656e636f64696e673d22555481527f462d38223f3e3c73766720786d6c6e733d22687474703a2f2f7777772e77332e60208201527f6f72672f323030302f7376672220786d6c6e733a786c696e6b3d22687474703a60408201527f2f2f7777772e77332e6f72672f313939392f786c696e6b222077696474683d2260608201527f32393022206865696768743d22353030222076696577426f783d2230203020326080820152671c98101a9818111f60c11b60a0820152600085516148a48160a8850160208a01615718565b8551908301906148bb8160a8840160208a01615718565b85519101906148d18160a8840160208901615718565b84519101906148e78160a8840160208801615718565b651e17b9bb339f60d11b60a8929091019182015260ae019695505050505050565b7f3c67207472616e73666f726d3d227472616e736c617465282d3135342e352c2d81527f333629223e3c6c696e652078313d2230222079313d2230222078323d2233303060208201527211103c991e91199818111039ba3937b5b29e9160691b604082015260008251614982816053850160208701615718565b7f22207374726f6b652d77696474683d22312e3522207374726f6b652d6f70616360539390910192830152507f6974793d22312e30223e3c616e696d6174655472616e73666f726d206174747260738201527f69627574654e616d653d227472616e73666f726d22206174747269627574655460938201527f7970653d22584d4c2220747970653d22726f74617465222066726f6d3d22302060b38201527f333030203330302220746f3d22333630203330302033303022206475723d223260d38201527f30732220726570656174436f756e743d22696e646566696e69746522202f3e3c60f38201526517b634b7329f60d11b61011382015261011901919050565b7f3c6c696e652078313d2230222079313d2230222078323d22333030222079323d81526d11199818111039ba3937b5b29e9160911b602082015260008251614ad481602e850160208701615718565b7f22207374726f6b652d77696474683d22312e3522207374726f6b652d6f706163602e9390910192830152507f6974793d22312e30223e3c616e696d6174655472616e73666f726d2061747472604e8201527f69627574654e616d653d227472616e73666f726d222061747472696275746554606e8201527f7970653d22584d4c2220747970653d22726f74617465222066726f6d3d223520608e8201527f333030203330302220746f3d22333635203330302033303022206475723d223260ae8201527f30732220726570656174436f756e743d22696e646566696e69746522202f3e3c60ce8201526517b634b7329f60d11b60ee82015260f401919050565b607b60f81b815260008451614bf1816001850160208901615718565b845190830190614c08816001840160208901615718565b7f2c2022696d616765223a2022646174613a696d6167652f7376672b786d6c3b626001929091019182015265185cd94d8d0b60d21b60218201528351614c55816027840160208801615718565b61227d60f01b6027929091019182015260290195945050505050565b7f3c673e3c7465787420793d2237302220783d223239222066696c6c3d2223666681527f662220666f6e742d66616d696c793d226d6f6e6f73706163652220666f6e742d60208201527f7765696768743d223230302220666f6e742d73697a653d223336223e23000000604082015260008551614cf581605d850160208a01615718565b7f3c2f746578743e3c7465787420793d223131352220783d223238222066696c6c605d918401918201527f3d22236666662220666f6e742d66616d696c793d226d6f6e6f73706163652220607d8201527f666f6e742d7765696768743d223230302220666f6e742d73697a653d22323222609d820152601f60f91b60bd8201528551614d888160be840160208a01615718565b7f3c2f746578743e3c7465787420793d223134302220783d2232392220666f6e7460be92909101918201527f2d66616d696c793d226d6f6e6f73706163652220666f6e742d73697a653d223160de8201527f34222066696c6c3d2223666666223e3c747370616e2066696c6c3d227267626160fe8201527f283235352c3235352c3235352c302e3829223e4d657461766572736520436c7561011e8201527f623c2f747370616e3e3c2f746578743e3c2f673e3c67207374796c653d22747261013e8201527f616e73666f726d3a7472616e736c61746528323270782c34343470782922206361015e8201527f6c69702d706174683d2275726c28236529223e3c726563742077696474683d2261017e8201527f32343722206865696768743d223236222072783d2238222072793d223822206661019e8201527f696c6c3d227267626128302c302c302c302e362922202f3e3c7465787420783d6101be8201527f22392220793d2231372220666f6e742d66616d696c793d226d6f6e6f737061636101de8201527f652220666f6e742d73697a653d223134222066696c6c3d2223666666223e3c746101fe8201527f7370616e2066696c6c3d2272676261283235352c3235352c3235352c302e362961021e82015261111f60f11b61023e82015261502c614f9d614f97614f816102408501896136a3565b691d101e17ba39b830b71f60b11b8152600a0190565b866136a3565b7f3c616e696d61746520617474726962757465547970653d22584d4c222061747481527f7269627574654e616d653d2278222076616c7565733d223330303b2d3330302260208201527f206475723d223135732220726570656174436f756e743d22696e646566696e696040820152703a329110179f1e17ba32bc3a1f1e17b39f60791b606082015260710190565b979650505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161506f81601d850160208701615718565b91909101601d0192915050565b7f3c6720636c69702d706174683d2275726c28236229223e3c706174682066696c81527f6c3d223030303030302220643d224d302030683239307635303048307a22202f60208201527f3e3c706174682066696c6c3d2275726c28236261636b67726f756e644772616460408201527f69656e74292220643d224d302030683239307635303048307a22202f3e3c672060608201527f7374796c653d2266696c7465723a75726c282364293b7472616e73666f726d3a60808201527f7363616c6528322e39293b7472616e73666f726d2d6f726967696e3a63656e7460a08201527f657220746f70223e3c706174682066696c6c3d226e6f6e652220643d224d302060c08201527f30683239307635303048307a22202f3e3c656c6c697073652063783d2235302560e08201527f222072783d22313830222072793d2231323022206f7061636974793d222e3935610100820152671110179f1e17b39f60c11b610120820152600061012884516151f98183860160208901615718565b61400e6153a66153a084848801017f3c67207374796c653d227472616e73666f726d3a7472616e736c61746528393481527f70782c323634707829223e3c67207374796c653d227472616e73666f726d3a7360208201527f63616c65282e342c2e3429222066696c6c3d2275726c28236261636b67726f7560408201527f6e644772616469656e742922207374726f6b653d2272676261283235352c323560608201527f352c3235352c3129223e3c70617468207374726f6b652d77696474683d22322e60808201527f3522206f7061636974793d222e352220643d226d3132372e39363120302d322e60a08201527f37393520392e35763237352e3636386c322e37393520322e3739203132372e3960c08201527f36322d37352e3633387a222f3e3c70617468207374726f6b652d77696474683d60e08201527f22312e3822206f7061636974793d222e38352220643d224d3132372e393632206101008201527f302030203231322e33326c3132372e3936322037352e363339563135342e31356101208201526c1c3d11179f1e17b39f1e17b39f60991b61014082015261014d0190565b876136a3565b631e17b39f60e11b815260040190565b69226e616d65223a20222360b01b815284516000906153dc81600a850160208a01615718565b600160fd1b600a9184019182015285516153fd81600b840160208a01615718565b72111610113232b9b1b934b83a34b7b7111d101160691b600b9290910191820152845161543181601e840160208901615718565b731116101132bc3a32b93730b62fbab936111d101160611b601e92909101918201528351615466816032840160208801615718565b6201116160ed1b603292909101918201526035019695505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061400e90830184613677565b602081526000612f686020830184613677565b60006020808352600084546154de81615744565b808487015260406001808416600081146154ff576001811461551357615541565b60ff19851689840152606089019550615541565b896000528660002060005b858110156155395781548b820186015290830190880161551e565b8a0184019650505b509398975050505050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601290820152711b585e081cdd5c1c1b1e481c995858da195960721b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601290820152711a5b98dbdc9c9958dd08115512081cd95b9d60721b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b600082198211156156c9576156c96157a8565b500190565b6000826156dd576156dd6157be565b500490565b60008160001904831182151516156156fc576156fc6157a8565b500290565b600082821015615713576157136157a8565b500390565b60005b8381101561573357818101518382015260200161571b565b838111156114315750506000910152565b600181811c9082168061575857607f821691505b60208210811415610b0f57634e487b7160e01b600052602260045260246000fd5b600060001982141561578d5761578d6157a8565b5060010190565b6000826157a3576157a36157be565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146119a157600080fdfe3c646566733e3c6c696e6561724772616469656e742069643d2273746172222078313d2231303025222079313d2231303025223e3c73746f70206f66667365743d223025222073746f702d636f6c6f723d22626c61636b222073746f702d6f7061636974793d222e35223e3c616e696d617465206174747269627574654e616d653d2273746f702d636f6c6f72222076616c7565733d22626c61636b3b626c61636b3b626c61636b3b626c61636b3b677261793b4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f2c207b2274726169745f74797065223a20224c61736572222c202276616c7565223a20223c67207472616e73666f726d3d227472616e736c617465283236372c363329207363616c6528302e30322c2d302e30322920726f746174652831333529222066696c6c3d222c207b2274726169745f74797065223a202253746172222c202276616c7565223a20223b677261793b626c61636b3b626c61636b3b626c61636b3b626c61636b22206475723d2233732220726570656174436f756e743d22696e646566696e69746522202f3e3c2f73746f703e3c2f6c696e6561724772616469656e743e3c2f646566733e3c67207374796c653d227472616e73666f726d3a7472616e736c6174652831333070782c323434707829223e3c67207374796c653d227472616e73666f726d3a7363616c6528302e312c302e3129223e3c706174682066696c6c3d2275726c282373746172292220643d224d3138392e3431332c3834632d33362e3931332c302d33372e3332382c33382e3135372d33372e3332382c33382e31353763302d33332e3138312d33362e3439382d33382e3135372d33362e3439382d33382e31353720206333372e3332382c302c33362e3439382d33382e3135372c33362e3439382d33382e313537433135322e3038352c38342c3138392e3431332c38342c3138392e3431332c38347a22202f3e3c2f673e3c2f673e2c207b2274726169745f74797065223a20224b6579222c202276616c7565223a20222c207b2274726169745f74797065223a20224c696e6b6564222c202276616c7565223a202222207374726f6b653d226e6f6e65223e3c7061746820643d224d383332203130323471302038302d353620313336742d313336203536712d383020302d3133362d3536742d35362d31333671302d34322031392d38332d34312031392d38332031392d383020302d3133362d3536742d35362d31333671302d38302035362d313336743133362d35367138302030203133362035367435362031333671302034322d31392038332034312d31392038332d3139203830203020313336203536743536203133367a6d3835312d37303471302d31372d34392d3636742d36362d3439712d3920302d32382e35203136742d33362e35203333712d31372031372d33382e35203430742d32342e352032366c2d39362d39364c3135363420347132382d32382032382d363820302d34322d33392d3831742d38312d3339712d343020302d36382032384c3733332035313551353537203338342033363820333834712d31363320302d3236352e35203130322e355430203735327130203136302039352033313374323438203234387131353320393520333133203935203136332030203236352e352d3130322e355431303234203130343071302d3138392d3133312d3336356c3335352d333535203936203936712d3320332d32362032342e35742d34302033382e35712d31372031372d33332033362e35742d31362032382e35713020313720343920363674363620343971313320302032332d313020362d362034362d34342e357438322d37392e357134322d34312038362e352d38367437332d37387132382e352d33332032382e352d34317a222f3e3c2f673ea264697066735822122034ea3f5413e15830169ae1f53263b463812d7581d9fc2793ebc601cce7653fbd64736f6c63430008070033

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.