ETH Price: $2,349.55 (+0.28%)

Token

Satoshi's Index (SATOSHI)
 

Overview

Max Total Supply

277 SATOSHI

Holders

142

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
bullsclub.eth
Balance
2 SATOSHI
0x8A2446Fcb3Ca74720FF69F7531E6D26E21Fd6BD3
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:
Satoshi

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : Satoshi.sol
// SPDX-License-Identifier: GPL-3.0

pragma solidity >=0.7.0 <0.9.0;

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

contract Satoshi is ERC721Enumerable, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;
  
  Counters.Counter private supply;

  string public baseURI="";
  
  uint256 public Price = 0.125 ether;
  
  uint256 public maxSupply = 999; 

  uint256 public maxPerMintTokens = 5;
  
  bool public paused = false;
  bool public revealed = false;
  bool public publicSale =  false;
  bool public privateSale = true;
      
  
  string public notRevealedUri;
  mapping(address => bool) public whitelisted;
  mapping(address => uint256) public teamListed;
  event teamTokens(uint256 stid,address minter);
  event mintLog(uint256 scid,address minter);
  
    
  constructor() ERC721("Satoshi's Index", "SATOSHI") {
    setNotRevealedURI("ipfs://Qmf7zvXHrqvKgGyzyP3emcckP9dVAAMb73ZU6JQwrzdzLg/satoshi.json");
    setBaseURI("ipfs://Qmc5k49SZ2jXSSYiYRT7fjaftdzHyx8x4cakRbsVWR9B2y/");
    defineTeams();
    defineWhiteListed();
  }

  function defineTeams() private {

    teamListed[0x38Ab167DEd24b52b9F87F30978255ac6C2AFB9a2]=30;
    teamListed[0xCD38Ddd6ba85C5AD33541403d4d1ff3ca2B01004]=30;
    teamListed[0x77396b5CABd6E3d0B0Ff7AAB949Aa47B5e330439]=30;
    teamListed[0x0bC11d9957bFDAb3Aaec0aF8678aDa68280c6E92]=20;
    
    
  }

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

  
    function totalSupply() public view override returns (uint256) {
        return supply.current();
    }
  
  // public functions
  function mint(uint256 _noOfTokens) public payable {
    
    require(!paused,"Sale has not started yet.");
    require(_noOfTokens > 0);
    require(supply.current() + _noOfTokens <= maxSupply);

    //Only whitelisted user is allowed to mint until public sale not started.
    if (msg.sender != owner()) {
      
      require(maxPerMintTokens >= balanceOf(msg.sender) +_noOfTokens ,"Not eligible to mint this allocation." ); 
      if(whitelisted[msg.sender] != true) {
        require(publicSale,"Sorry, you are not in the whitelist.");
      }
      require(msg.value >= Price * _noOfTokens ,"Not enough ethers to mint NFTs.");
    }

      for (uint256 i = 1; i <= _noOfTokens; i++) {
        supply.increment();
        _safeMint(msg.sender, supply.current());
        emit mintLog (supply.current(), msg.sender);
      
    }
   
  }

  function PrivateMint(uint256 _noOfTokens) public payable {
    
    require(_noOfTokens > 0);

    require(!paused,"Sale has not started yet.");
    require(_noOfTokens > 0);
    require(supply.current() + _noOfTokens <= maxSupply);
    require(privateSale,"Private sale has not started yet");
    require(teamListed[msg.sender] >= balanceOf(msg.sender) +_noOfTokens ,"Reached maximum allocation" ); 
    
    
      for (uint256 i = 1; i <= _noOfTokens; i++) {
        supply.increment();
         _safeMint(msg.sender, supply.current());
        emit teamTokens (supply.current(), msg.sender);
    }
   
  }
  
  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;
        ownedTokenIndex++;
      }
      currentTokenId++;
    }
    return ownedTokenIds;
  }


  
  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    if (revealed == false) {
      return notRevealedUri;
    }

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

  //only owner functions
  
  function reveal(bool _state) public onlyOwner {
      revealed = _state;
  }
  
  function publicSaleStarted(bool _state) public onlyOwner{
    publicSale = _state;
  }

  function setPrice(uint256 _newPrice) public onlyOwner {
    Price = _newPrice;
  }

  function setmaxMintTokens(uint256 _newmaxMintTokens) public onlyOwner {
    maxPerMintTokens = _newmaxMintTokens;
  } 
  
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
  function privateSaleStarted(bool _state) public onlyOwner{
    privateSale = _state;
  }


 function whitelistUser(address[] memory _user) public onlyOwner {
    for (uint i = 0; i < _user.length; i++) {
            whitelisted[_user[i]] = true;
        }
  }

 
  function removeWhitelistUser(address _user) public onlyOwner {
    whitelisted[_user] = false;
  }

 function withdraw() public payable onlyOwner {
	     uint balance = address(this).balance;
	     require(balance > 0, "Not enough Ether to withdraw!");
	     (bool success, ) = (msg.sender).call{value: balance}("");
	     require(success, "Transaction failed.");
	}

  function defineWhiteListed() private {
    whitelisted[0x320aC7B0384354f448a592b3b9A7E61847f63f6d]=true;
    whitelisted[0x6f3c928c9077737b3ca199fA76a9c6184670600B]=true;
    whitelisted[0x541396a365CE1824E9C470c2a63f20c3106bEd81]=true;
    whitelisted[0xaf6adD2717C155CF329a364009C9339225018c5B]=true;
    whitelisted[0x91C977799a0bEc578316381b6Fb77351e850bFcE]=true;
    whitelisted[0x1C080Ab261B04A989D0936941d4805AD9CBF0A82]=true;
    whitelisted[0x654F18819D710664fA9398119CA6e817BF18d975]=true;
    whitelisted[0xC657971956Ba999bC90cEb7d9d8B1aB7b9a94fEB]=true;
    whitelisted[0x6385455e62a54B4dcE013db26429119f988801BF]=true;
    whitelisted[0xEfcB99Af8f41C1B30b835B41e9728997B1BB3f6C]=true;
    whitelisted[0x78045485dC4AD96F60937DAD4B01B118958761ae]=true;
    whitelisted[0x3d01ab91CFb3C1bF38EbA3B8AbB174e7b758A562]=true;
    whitelisted[0x1D935561Ed16A3B7Fe52B0fA4c14617f09efC78e]=true;
    whitelisted[0x4cdf0AC9d204F559B3c709aa81b7a071476fad92]=true;
    whitelisted[0x3089883e17B205746467A3e12ab31666bbaE2883]=true;
    whitelisted[0x2FDB6e0E20490010f4248Ad97774A00E0CAD01DA]=true;
    whitelisted[0x53daA40e7788999d6b0aFF601aF197Fed5A3759C]=true;
    whitelisted[0x23EE41F656A0A04228A2773721326A77DCE8d63B]=true;
    whitelisted[0x7eB48d59a6302E41733542F4d2f4172d053448b0]=true;
    whitelisted[0x93681a454C6AF6FbAC98C77e120e69De1431D34C]=true;
    whitelisted[0x0eCac2FD4DF99324ebc4936f4B40A42d434B72a1]=true;
    whitelisted[0xA6Afdc478FCAb736C34060B752f7d896386de1f6]=true;
    whitelisted[0xBC3D33556be2a42de98314B60CD11fBec815d985]=true;
    whitelisted[0xC8A7e3cff9e370a7f52D2C34590D7ebdB1d82671]=true;
    whitelisted[0x68884b038F19833eFfD78da059B83a78496E5B05]=true;
    whitelisted[0xd5dbaD939958B0FE6c5087CC87Ba5247109CD958]=true;
    whitelisted[0xB5A70A04c4A4798bFeDF2D43d80af2A2ae2E5319]=true;
    whitelisted[0xc4DaD120712A92117Cc65D46514BE8B49ED846a1]=true;
    whitelisted[0x4cdf0AC9d204F559B3c709aa81b7a071476fad92]=true;
    whitelisted[0xdAA671776166333fDFcD6168bd7c6aC7DD1eD92e]=true;
    whitelisted[0x7E8e8CAd4A0d8d3b13507e06e9364ceeB24997A2]=true;
    whitelisted[0x53daA40e7788999d6b0aFF601aF197Fed5A3759C]=true;
    whitelisted[0x97B4065572357633E9eeF49c25f36Fe25Ed570e8]=true;
    whitelisted[0x88cDC1f6cC7a4497a7F18D6b7A63F9ffEB18EB48]=true;
    whitelisted[0xB5aeA0EAa7E0dEf3C2C8A52AB69676fD4F798aC0]=true;
    whitelisted[0x6F1b7a2E6bA6d93B09261B08D8E96954446eeb4c]=true;
    whitelisted[0x7656354162ac373A52783896E0DC9D1A1352d94d]=true;
    whitelisted[0x70DDc368a5EaD66E36DdE48A861eF416c6e9C7D4]=true;
    whitelisted[0x7B179130db6866b5c7641eDfb3aCf4B8505B9e6E]=true;
    whitelisted[0x895e5a6450489799fC6bd3270Fd948009A3F522C]=true;
    whitelisted[0xB2f20A8e528d2F3272E6A81aBF0f33e8d1D2d67F]=true;

  }
}

File 2 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev 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 {
        _transferOwnership(address(0));
    }

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

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

File 3 of 14 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

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 4 of 14 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 14 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 6 of 14 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

File 7 of 14 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 8 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 11 of 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 12 of 14 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

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

pragma solidity ^0.8.0;

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

File 14 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"scid","type":"uint256"},{"indexed":false,"internalType":"address","name":"minter","type":"address"}],"name":"mintLog","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"stid","type":"uint256"},{"indexed":false,"internalType":"address","name":"minter","type":"address"}],"name":"teamTokens","type":"event"},{"inputs":[],"name":"Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_noOfTokens","type":"uint256"}],"name":"PrivateMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerMintTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_noOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"privateSaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"publicSaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"removeWhitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintTokens","type":"uint256"}],"name":"setmaxMintTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"teamListed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_user","type":"address[]"}],"name":"whitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

608060405260405180602001604052806000815250600c90805190602001906200002b929190620016f9565b506701bc16d674ec8000600d556103e7600e556005600f556000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055506000601060026101000a81548160ff0219169083151502179055506001601060036101000a81548160ff021916908315150217905550348015620000bc57600080fd5b506040518060400160405280600f81526020017f5361746f736869277320496e64657800000000000000000000000000000000008152506040518060400160405280600781526020017f5341544f53484900000000000000000000000000000000000000000000000000815250816000908051906020019062000141929190620016f9565b5080600190805190602001906200015a929190620016f9565b5050506200017d62000171620001f760201b60201c565b620001ff60201b60201c565b620001a760405180608001604052806042815260200162006aaf60429139620002c560201b60201c565b620001d160405180606001604052806036815260200162006af1603691396200037060201b60201c565b620001e16200041b60201b60201c565b620001f16200058160201b60201c565b62001891565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002d5620001f760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002fb620016cf60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000354576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200034b90620017d0565b60405180910390fd5b80601190805190602001906200036c929190620016f9565b5050565b62000380620001f760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003a6620016cf60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003ff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003f690620017d0565b60405180910390fd5b80600c908051906020019062000417929190620016f9565b5050565b601e601360007338ab167ded24b52b9f87f30978255ac6c2afb9a273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601e6013600073cd38ddd6ba85c5ad33541403d4d1ff3ca2b0100473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601e601360007377396b5cabd6e3d0b0ff7aab949aa47b5e33043973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601460136000730bc11d9957bfdab3aaec0af8678ada68280c6e9273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550565b60016012600073320ac7b0384354f448a592b3b9a7e61847f63f6d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160126000736f3c928c9077737b3ca199fa76a9c6184670600b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016012600073541396a365ce1824e9c470c2a63f20c3106bed8173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016012600073af6add2717c155cf329a364009c9339225018c5b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601260007391c977799a0bec578316381b6fb77351e850bfce73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160126000731c080ab261b04a989d0936941d4805ad9cbf0a8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016012600073654f18819d710664fa9398119ca6e817bf18d97573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016012600073c657971956ba999bc90ceb7d9d8b1ab7b9a94feb73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160126000736385455e62a54b4dce013db26429119f988801bf73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016012600073efcb99af8f41c1b30b835b41e9728997b1bb3f6c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601260007378045485dc4ad96f60937dad4b01b118958761ae73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160126000733d01ab91cfb3c1bf38eba3b8abb174e7b758a56273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160126000731d935561ed16a3b7fe52b0fa4c14617f09efc78e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160126000734cdf0ac9d204f559b3c709aa81b7a071476fad9273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160126000733089883e17b205746467a3e12ab31666bbae288373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160126000732fdb6e0e20490010f4248ad97774a00e0cad01da73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601260007353daa40e7788999d6b0aff601af197fed5a3759c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601260007323ee41f656a0a04228a2773721326a77dce8d63b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160126000737eb48d59a6302e41733542f4d2f4172d053448b073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601260007393681a454c6af6fbac98c77e120e69de1431d34c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160126000730ecac2fd4df99324ebc4936f4b40a42d434b72a173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016012600073a6afdc478fcab736c34060b752f7d896386de1f673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016012600073bc3d33556be2a42de98314b60cd11fbec815d98573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016012600073c8a7e3cff9e370a7f52d2c34590d7ebdb1d8267173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601260007368884b038f19833effd78da059b83a78496e5b0573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016012600073d5dbad939958b0fe6c5087cc87ba5247109cd95873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016012600073b5a70a04c4a4798bfedf2d43d80af2a2ae2e531973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016012600073c4dad120712a92117cc65d46514be8b49ed846a173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160126000734cdf0ac9d204f559b3c709aa81b7a071476fad9273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016012600073daa671776166333fdfcd6168bd7c6ac7dd1ed92e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160126000737e8e8cad4a0d8d3b13507e06e9364ceeb24997a273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601260007353daa40e7788999d6b0aff601af197fed5a3759c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601260007397b4065572357633e9eef49c25f36fe25ed570e873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601260007388cdc1f6cc7a4497a7f18d6b7a63f9ffeb18eb4873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016012600073b5aea0eaa7e0def3c2c8a52ab69676fd4f798ac073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160126000736f1b7a2e6ba6d93b09261b08d8e96954446eeb4c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160126000737656354162ac373a52783896e0dc9d1a1352d94d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601260007370ddc368a5ead66e36dde48a861ef416c6e9c7d473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160126000737b179130db6866b5c7641edfb3acf4b8505b9e6e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016012600073895e5a6450489799fc6bd3270fd948009a3f522c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016012600073b2f20a8e528d2f3272e6a81abf0f33e8d1d2d67f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620017079062001803565b90600052602060002090601f0160209004810192826200172b576000855562001777565b82601f106200174657805160ff191683800117855562001777565b8280016001018555821562001777579182015b828111156200177657825182559160200191906001019062001759565b5b5090506200178691906200178a565b5090565b5b80821115620017a55760008160009055506001016200178b565b5090565b6000620017b8602083620017f2565b9150620017c58262001868565b602082019050919050565b60006020820190508181036000830152620017eb81620017a9565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200181c57607f821691505b6020821081141562001833576200183262001839565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61520e80620018a16000396000f3fe6080604052600436106102675760003560e01c8063715018a611610144578063b88d4fde116100b6578063d5abeb011161007a578063d5abeb0114610903578063d936547e1461092e578063e985e9c51461096b578063f2c4ce1e146109a8578063f2fde38b146109d1578063fd9d2f4f146109fa57610267565b8063b88d4fde1461081e578063ba1f879f14610847578063ba582d7314610872578063c87b56dd1461089b578063d3dac9cd146108d857610267565b8063940cd05b11610108578063940cd05b1461073157806395d89b411461075a5780639b6fbf8a146107855780639dfde201146107ae578063a0712d68146107d9578063a22cb465146107f557610267565b8063715018a6146106815780638075fa47146106985780638c851e5f146106b45780638da5cb5b146106dd57806391b7f5ed1461070857610267565b80633ccfd60b116101dd57806355f804b3116101a157806355f804b31461054b5780635c975abb146105745780636352211e1461059f5780636ac7ca14146105dc5780636c0360eb1461061957806370a082311461064457610267565b80633ccfd60b1461047357806342842e0e1461047d578063438b6300146104a65780634f6ccce7146104e3578063518302271461052057610267565b8063095ea7b31161022f578063095ea7b31461036557806318160ddd1461038e57806323b872dd146103b95780632f745c59146103e257806330cc7ae01461041f57806333bc1c5c1461044857610267565b806301ffc9a71461026c57806302329a29146102a957806306fdde03146102d2578063081812fc146102fd578063081c8c441461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613b19565b610a23565b6040516102a091906141df565b60405180910390f35b3480156102b557600080fd5b506102d060048036038101906102cb9190613aec565b610a9d565b005b3480156102de57600080fd5b506102e7610b36565b6040516102f491906141fa565b60405180910390f35b34801561030957600080fd5b50610324600480360381019061031f9190613bbc565b610bc8565b6040516103319190614156565b60405180910390f35b34801561034657600080fd5b5061034f610c4d565b60405161035c91906141fa565b60405180910390f35b34801561037157600080fd5b5061038c60048036038101906103879190613a63565b610cdb565b005b34801561039a57600080fd5b506103a3610df3565b6040516103b0919061455c565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db919061394d565b610e04565b005b3480156103ee57600080fd5b5061040960048036038101906104049190613a63565b610e64565b604051610416919061455c565b60405180910390f35b34801561042b57600080fd5b50610446600480360381019061044191906138e0565b610f09565b005b34801561045457600080fd5b5061045d610fe0565b60405161046a91906141df565b60405180910390f35b61047b610ff3565b005b34801561048957600080fd5b506104a4600480360381019061049f919061394d565b611167565b005b3480156104b257600080fd5b506104cd60048036038101906104c891906138e0565b611187565b6040516104da91906141bd565b60405180910390f35b3480156104ef57600080fd5b5061050a60048036038101906105059190613bbc565b611292565b604051610517919061455c565b60405180910390f35b34801561052c57600080fd5b50610535611303565b60405161054291906141df565b60405180910390f35b34801561055757600080fd5b50610572600480360381019061056d9190613b73565b611316565b005b34801561058057600080fd5b506105896113ac565b60405161059691906141df565b60405180910390f35b3480156105ab57600080fd5b506105c660048036038101906105c19190613bbc565b6113bf565b6040516105d39190614156565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe91906138e0565b611471565b604051610610919061455c565b60405180910390f35b34801561062557600080fd5b5061062e611489565b60405161063b91906141fa565b60405180910390f35b34801561065057600080fd5b5061066b600480360381019061066691906138e0565b611517565b604051610678919061455c565b60405180910390f35b34801561068d57600080fd5b506106966115cf565b005b6106b260048036038101906106ad9190613bbc565b611657565b005b3480156106c057600080fd5b506106db60048036038101906106d69190613aec565b61184c565b005b3480156106e957600080fd5b506106f26118e5565b6040516106ff9190614156565b60405180910390f35b34801561071457600080fd5b5061072f600480360381019061072a9190613bbc565b61190f565b005b34801561073d57600080fd5b5061075860048036038101906107539190613aec565b611995565b005b34801561076657600080fd5b5061076f611a2e565b60405161077c91906141fa565b60405180910390f35b34801561079157600080fd5b506107ac60048036038101906107a79190613aa3565b611ac0565b005b3480156107ba57600080fd5b506107c3611bd1565b6040516107d0919061455c565b60405180910390f35b6107f360048036038101906107ee9190613bbc565b611bd7565b005b34801561080157600080fd5b5061081c60048036038101906108179190613a23565b611e66565b005b34801561082a57600080fd5b50610845600480360381019061084091906139a0565b611e7c565b005b34801561085357600080fd5b5061085c611ede565b60405161086991906141df565b60405180910390f35b34801561087e57600080fd5b5061089960048036038101906108949190613aec565b611ef1565b005b3480156108a757600080fd5b506108c260048036038101906108bd9190613bbc565b611f8a565b6040516108cf91906141fa565b60405180910390f35b3480156108e457600080fd5b506108ed6120e0565b6040516108fa919061455c565b60405180910390f35b34801561090f57600080fd5b506109186120e6565b604051610925919061455c565b60405180910390f35b34801561093a57600080fd5b50610955600480360381019061095091906138e0565b6120ec565b60405161096291906141df565b60405180910390f35b34801561097757600080fd5b50610992600480360381019061098d919061390d565b61210c565b60405161099f91906141df565b60405180910390f35b3480156109b457600080fd5b506109cf60048036038101906109ca9190613b73565b6121a0565b005b3480156109dd57600080fd5b506109f860048036038101906109f391906138e0565b612236565b005b348015610a0657600080fd5b50610a216004803603810190610a1c9190613bbc565b61232e565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a965750610a95826123b4565b5b9050919050565b610aa5612496565b73ffffffffffffffffffffffffffffffffffffffff16610ac36118e5565b73ffffffffffffffffffffffffffffffffffffffff1614610b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b109061447c565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b606060008054610b45906148a5565b80601f0160208091040260200160405190810160405280929190818152602001828054610b71906148a5565b8015610bbe5780601f10610b9357610100808354040283529160200191610bbe565b820191906000526020600020905b815481529060010190602001808311610ba157829003601f168201915b5050505050905090565b6000610bd38261249e565b610c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c099061445c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60118054610c5a906148a5565b80601f0160208091040260200160405190810160405280929190818152602001828054610c86906148a5565b8015610cd35780601f10610ca857610100808354040283529160200191610cd3565b820191906000526020600020905b815481529060010190602001808311610cb657829003601f168201915b505050505081565b6000610ce6826113bf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4e906144dc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d76612496565b73ffffffffffffffffffffffffffffffffffffffff161480610da55750610da481610d9f612496565b61210c565b5b610de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddb906143bc565b60405180910390fd5b610dee838361250a565b505050565b6000610dff600b6125c3565b905090565b610e15610e0f612496565b826125d1565b610e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4b906144fc565b60405180910390fd5b610e5f8383836126af565b505050565b6000610e6f83611517565b8210610eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea79061425c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610f11612496565b73ffffffffffffffffffffffffffffffffffffffff16610f2f6118e5565b73ffffffffffffffffffffffffffffffffffffffff1614610f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7c9061447c565b60405180910390fd5b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b601060029054906101000a900460ff1681565b610ffb612496565b73ffffffffffffffffffffffffffffffffffffffff166110196118e5565b73ffffffffffffffffffffffffffffffffffffffff161461106f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110669061447c565b60405180910390fd5b6000479050600081116110b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ae9061453c565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16826040516110dd90614141565b60006040518083038185875af1925050503d806000811461111a576040519150601f19603f3d011682016040523d82523d6000602084013e61111f565b606091505b5050905080611163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115a9061423c565b60405180910390fd5b5050565b61118283838360405180602001604052806000815250611e7c565b505050565b6060600061119483611517565b905060008167ffffffffffffffff8111156111b2576111b1614a6d565b5b6040519080825280602002602001820160405280156111e05781602001602082028036833780820191505090505b50905060006001905060005b83811080156111fd5750600e548211155b1561128657600061120d836113bf565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611272578284838151811061125757611256614a3e565b5b602002602001018181525050818061126e90614908565b9250505b828061127d90614908565b935050506111ec565b82945050505050919050565b600061129c612916565b82106112dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d49061451c565b60405180910390fd5b600882815481106112f1576112f0614a3e565b5b90600052602060002001549050919050565b601060019054906101000a900460ff1681565b61131e612496565b73ffffffffffffffffffffffffffffffffffffffff1661133c6118e5565b73ffffffffffffffffffffffffffffffffffffffff1614611392576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113899061447c565b60405180910390fd5b80600c90805190602001906113a8929190613656565b5050565b601060009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145f906143fc565b60405180910390fd5b80915050919050565b60136020528060005260406000206000915090505481565b600c8054611496906148a5565b80601f01602080910402602001604051908101604052809291908181526020018280546114c2906148a5565b801561150f5780601f106114e45761010080835404028352916020019161150f565b820191906000526020600020905b8154815290600101906020018083116114f257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157f906143dc565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115d7612496565b73ffffffffffffffffffffffffffffffffffffffff166115f56118e5565b73ffffffffffffffffffffffffffffffffffffffff161461164b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116429061447c565b60405180910390fd5b6116556000612923565b565b6000811161166457600080fd5b601060009054906101000a900460ff16156116b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ab906144bc565b60405180910390fd5b600081116116c157600080fd5b600e54816116cf600b6125c3565b6116d991906146da565b11156116e457600080fd5b601060039054906101000a900460ff16611733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172a9061443c565b60405180910390fd5b8061173d33611517565b61174791906146da565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156117c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bf9061439c565b60405180910390fd5b6000600190505b818111611848576117e0600b6129e9565b6117f3336117ee600b6125c3565b6129ff565b7f8a597e144748f647b3a5783f60e5d24d40173798fa7ed859b110ac9b2176694f61181e600b6125c3565b3360405161182d929190614577565b60405180910390a1808061184090614908565b9150506117cf565b5050565b611854612496565b73ffffffffffffffffffffffffffffffffffffffff166118726118e5565b73ffffffffffffffffffffffffffffffffffffffff16146118c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bf9061447c565b60405180910390fd5b80601060026101000a81548160ff02191690831515021790555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611917612496565b73ffffffffffffffffffffffffffffffffffffffff166119356118e5565b73ffffffffffffffffffffffffffffffffffffffff161461198b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119829061447c565b60405180910390fd5b80600d8190555050565b61199d612496565b73ffffffffffffffffffffffffffffffffffffffff166119bb6118e5565b73ffffffffffffffffffffffffffffffffffffffff1614611a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a089061447c565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b606060018054611a3d906148a5565b80601f0160208091040260200160405190810160405280929190818152602001828054611a69906148a5565b8015611ab65780601f10611a8b57610100808354040283529160200191611ab6565b820191906000526020600020905b815481529060010190602001808311611a9957829003601f168201915b5050505050905090565b611ac8612496565b73ffffffffffffffffffffffffffffffffffffffff16611ae66118e5565b73ffffffffffffffffffffffffffffffffffffffff1614611b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b339061447c565b60405180910390fd5b60005b8151811015611bcd57600160126000848481518110611b6157611b60614a3e565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611bc590614908565b915050611b3f565b5050565b600d5481565b601060009054906101000a900460ff1615611c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1e906144bc565b60405180910390fd5b60008111611c3457600080fd5b600e5481611c42600b6125c3565b611c4c91906146da565b1115611c5757600080fd5b611c5f6118e5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611de25780611c9b33611517565b611ca591906146da565b600f541015611ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce09061431c565b60405180910390fd5b60011515601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611d9157601060029054906101000a900460ff16611d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d879061421c565b60405180910390fd5b5b80600d54611d9f9190614761565b341015611de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd89061429c565b60405180910390fd5b5b6000600190505b818111611e6257611dfa600b6129e9565b611e0d33611e08600b6125c3565b6129ff565b7fa91701ce7448cb62a787a446278d57557e6755d5083ad217c82d8d3035ab5371611e38600b6125c3565b33604051611e47929190614577565b60405180910390a18080611e5a90614908565b915050611de9565b5050565b611e78611e71612496565b8383612a1d565b5050565b611e8d611e87612496565b836125d1565b611ecc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec3906144fc565b60405180910390fd5b611ed884848484612b8a565b50505050565b601060039054906101000a900460ff1681565b611ef9612496565b73ffffffffffffffffffffffffffffffffffffffff16611f176118e5565b73ffffffffffffffffffffffffffffffffffffffff1614611f6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f649061447c565b60405180910390fd5b80601060036101000a81548160ff02191690831515021790555050565b6060611f958261249e565b611fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcb9061449c565b60405180910390fd5b60001515601060019054906101000a900460ff16151514156120825760118054611ffd906148a5565b80601f0160208091040260200160405190810160405280929190818152602001828054612029906148a5565b80156120765780601f1061204b57610100808354040283529160200191612076565b820191906000526020600020905b81548152906001019060200180831161205957829003601f168201915b505050505090506120db565b600061208c612be6565b905060008151116120ac57604051806020016040528060008152506120d7565b806120b684612c78565b6040516020016120c7929190614112565b6040516020818303038152906040525b9150505b919050565b600f5481565b600e5481565b60126020528060005260406000206000915054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6121a8612496565b73ffffffffffffffffffffffffffffffffffffffff166121c66118e5565b73ffffffffffffffffffffffffffffffffffffffff161461221c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122139061447c565b60405180910390fd5b8060119080519060200190612232929190613656565b5050565b61223e612496565b73ffffffffffffffffffffffffffffffffffffffff1661225c6118e5565b73ffffffffffffffffffffffffffffffffffffffff16146122b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a99061447c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612322576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612319906142bc565b60405180910390fd5b61232b81612923565b50565b612336612496565b73ffffffffffffffffffffffffffffffffffffffff166123546118e5565b73ffffffffffffffffffffffffffffffffffffffff16146123aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a19061447c565b60405180910390fd5b80600f8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061247f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061248f575061248e82612dd9565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661257d836113bf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006125dc8261249e565b61261b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126129061437c565b60405180910390fd5b6000612626836113bf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061269557508373ffffffffffffffffffffffffffffffffffffffff1661267d84610bc8565b73ffffffffffffffffffffffffffffffffffffffff16145b806126a657506126a5818561210c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166126cf826113bf565b73ffffffffffffffffffffffffffffffffffffffff1614612725576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271c906142dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612795576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278c9061433c565b60405180910390fd5b6127a0838383612e43565b6127ab60008261250a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127fb91906147bb565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461285291906146da565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612911838383612f57565b505050565b6000600880549050905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b612a19828260405180602001604052806000815250612f5c565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a839061435c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612b7d91906141df565b60405180910390a3505050565b612b958484846126af565b612ba184848484612fb7565b612be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd79061427c565b60405180910390fd5b50505050565b6060600c8054612bf5906148a5565b80601f0160208091040260200160405190810160405280929190818152602001828054612c21906148a5565b8015612c6e5780601f10612c4357610100808354040283529160200191612c6e565b820191906000526020600020905b815481529060010190602001808311612c5157829003601f168201915b5050505050905090565b60606000821415612cc0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612dd4565b600082905060005b60008214612cf2578080612cdb90614908565b915050600a82612ceb9190614730565b9150612cc8565b60008167ffffffffffffffff811115612d0e57612d0d614a6d565b5b6040519080825280601f01601f191660200182016040528015612d405781602001600182028036833780820191505090505b5090505b60008514612dcd57600182612d5991906147bb565b9150600a85612d689190614951565b6030612d7491906146da565b60f81b818381518110612d8a57612d89614a3e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612dc69190614730565b9450612d44565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612e4e83838361314e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e9157612e8c81613153565b612ed0565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612ecf57612ece838261319c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f1357612f0e81613309565b612f52565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612f5157612f5082826133da565b5b5b505050565b505050565b612f668383613459565b612f736000848484612fb7565b612fb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa99061427c565b60405180910390fd5b505050565b6000612fd88473ffffffffffffffffffffffffffffffffffffffff16613633565b15613141578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613001612496565b8786866040518563ffffffff1660e01b81526004016130239493929190614171565b602060405180830381600087803b15801561303d57600080fd5b505af192505050801561306e57506040513d601f19601f8201168201806040525081019061306b9190613b46565b60015b6130f1573d806000811461309e576040519150601f19603f3d011682016040523d82523d6000602084013e6130a3565b606091505b506000815114156130e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130e09061427c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613146565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016131a984611517565b6131b391906147bb565b9050600060076000848152602001908152602001600020549050818114613298576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061331d91906147bb565b905060006009600084815260200190815260200160002054905060006008838154811061334d5761334c614a3e565b5b90600052602060002001549050806008838154811061336f5761336e614a3e565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806133be576133bd614a0f565b5b6001900381819060005260206000200160009055905550505050565b60006133e583611517565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134c09061441c565b60405180910390fd5b6134d28161249e565b15613512576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613509906142fc565b60405180910390fd5b61351e60008383612e43565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461356e91906146da565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461362f60008383612f57565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054613662906148a5565b90600052602060002090601f01602090048101928261368457600085556136cb565b82601f1061369d57805160ff19168380011785556136cb565b828001600101855582156136cb579182015b828111156136ca5782518255916020019190600101906136af565b5b5090506136d891906136dc565b5090565b5b808211156136f55760008160009055506001016136dd565b5090565b600061370c613707846145c5565b6145a0565b9050808382526020820190508285602086028201111561372f5761372e614aa1565b5b60005b8581101561375f578161374588826137ed565b845260208401935060208301925050600181019050613732565b5050509392505050565b600061377c613777846145f1565b6145a0565b90508281526020810184848401111561379857613797614aa6565b5b6137a3848285614863565b509392505050565b60006137be6137b984614622565b6145a0565b9050828152602081018484840111156137da576137d9614aa6565b5b6137e5848285614863565b509392505050565b6000813590506137fc8161517c565b92915050565b600082601f83011261381757613816614a9c565b5b81356138278482602086016136f9565b91505092915050565b60008135905061383f81615193565b92915050565b600081359050613854816151aa565b92915050565b600081519050613869816151aa565b92915050565b600082601f83011261388457613883614a9c565b5b8135613894848260208601613769565b91505092915050565b600082601f8301126138b2576138b1614a9c565b5b81356138c28482602086016137ab565b91505092915050565b6000813590506138da816151c1565b92915050565b6000602082840312156138f6576138f5614ab0565b5b6000613904848285016137ed565b91505092915050565b6000806040838503121561392457613923614ab0565b5b6000613932858286016137ed565b9250506020613943858286016137ed565b9150509250929050565b60008060006060848603121561396657613965614ab0565b5b6000613974868287016137ed565b9350506020613985868287016137ed565b9250506040613996868287016138cb565b9150509250925092565b600080600080608085870312156139ba576139b9614ab0565b5b60006139c8878288016137ed565b94505060206139d9878288016137ed565b93505060406139ea878288016138cb565b925050606085013567ffffffffffffffff811115613a0b57613a0a614aab565b5b613a178782880161386f565b91505092959194509250565b60008060408385031215613a3a57613a39614ab0565b5b6000613a48858286016137ed565b9250506020613a5985828601613830565b9150509250929050565b60008060408385031215613a7a57613a79614ab0565b5b6000613a88858286016137ed565b9250506020613a99858286016138cb565b9150509250929050565b600060208284031215613ab957613ab8614ab0565b5b600082013567ffffffffffffffff811115613ad757613ad6614aab565b5b613ae384828501613802565b91505092915050565b600060208284031215613b0257613b01614ab0565b5b6000613b1084828501613830565b91505092915050565b600060208284031215613b2f57613b2e614ab0565b5b6000613b3d84828501613845565b91505092915050565b600060208284031215613b5c57613b5b614ab0565b5b6000613b6a8482850161385a565b91505092915050565b600060208284031215613b8957613b88614ab0565b5b600082013567ffffffffffffffff811115613ba757613ba6614aab565b5b613bb38482850161389d565b91505092915050565b600060208284031215613bd257613bd1614ab0565b5b6000613be0848285016138cb565b91505092915050565b6000613bf583836140f4565b60208301905092915050565b613c0a816147ef565b82525050565b6000613c1b82614663565b613c258185614691565b9350613c3083614653565b8060005b83811015613c61578151613c488882613be9565b9750613c5383614684565b925050600181019050613c34565b5085935050505092915050565b613c7781614801565b82525050565b6000613c888261466e565b613c9281856146a2565b9350613ca2818560208601614872565b613cab81614ab5565b840191505092915050565b6000613cc182614679565b613ccb81856146be565b9350613cdb818560208601614872565b613ce481614ab5565b840191505092915050565b6000613cfa82614679565b613d0481856146cf565b9350613d14818560208601614872565b80840191505092915050565b6000613d2d6024836146be565b9150613d3882614ac6565b604082019050919050565b6000613d506013836146be565b9150613d5b82614b15565b602082019050919050565b6000613d73602b836146be565b9150613d7e82614b3e565b604082019050919050565b6000613d966032836146be565b9150613da182614b8d565b604082019050919050565b6000613db9601f836146be565b9150613dc482614bdc565b602082019050919050565b6000613ddc6026836146be565b9150613de782614c05565b604082019050919050565b6000613dff6025836146be565b9150613e0a82614c54565b604082019050919050565b6000613e22601c836146be565b9150613e2d82614ca3565b602082019050919050565b6000613e456025836146be565b9150613e5082614ccc565b604082019050919050565b6000613e686024836146be565b9150613e7382614d1b565b604082019050919050565b6000613e8b6019836146be565b9150613e9682614d6a565b602082019050919050565b6000613eae602c836146be565b9150613eb982614d93565b604082019050919050565b6000613ed1601a836146be565b9150613edc82614de2565b602082019050919050565b6000613ef46038836146be565b9150613eff82614e0b565b604082019050919050565b6000613f17602a836146be565b9150613f2282614e5a565b604082019050919050565b6000613f3a6029836146be565b9150613f4582614ea9565b604082019050919050565b6000613f5d6020836146be565b9150613f6882614ef8565b602082019050919050565b6000613f806020836146be565b9150613f8b82614f21565b602082019050919050565b6000613fa3602c836146be565b9150613fae82614f4a565b604082019050919050565b6000613fc66005836146cf565b9150613fd182614f99565b600582019050919050565b6000613fe96020836146be565b9150613ff482614fc2565b602082019050919050565b600061400c602f836146be565b915061401782614feb565b604082019050919050565b600061402f6019836146be565b915061403a8261503a565b602082019050919050565b60006140526021836146be565b915061405d82615063565b604082019050919050565b60006140756000836146b3565b9150614080826150b2565b600082019050919050565b60006140986031836146be565b91506140a3826150b5565b604082019050919050565b60006140bb602c836146be565b91506140c682615104565b604082019050919050565b60006140de601d836146be565b91506140e982615153565b602082019050919050565b6140fd81614859565b82525050565b61410c81614859565b82525050565b600061411e8285613cef565b915061412a8284613cef565b915061413582613fb9565b91508190509392505050565b600061414c82614068565b9150819050919050565b600060208201905061416b6000830184613c01565b92915050565b60006080820190506141866000830187613c01565b6141936020830186613c01565b6141a06040830185614103565b81810360608301526141b28184613c7d565b905095945050505050565b600060208201905081810360008301526141d78184613c10565b905092915050565b60006020820190506141f46000830184613c6e565b92915050565b600060208201905081810360008301526142148184613cb6565b905092915050565b6000602082019050818103600083015261423581613d20565b9050919050565b6000602082019050818103600083015261425581613d43565b9050919050565b6000602082019050818103600083015261427581613d66565b9050919050565b6000602082019050818103600083015261429581613d89565b9050919050565b600060208201905081810360008301526142b581613dac565b9050919050565b600060208201905081810360008301526142d581613dcf565b9050919050565b600060208201905081810360008301526142f581613df2565b9050919050565b6000602082019050818103600083015261431581613e15565b9050919050565b6000602082019050818103600083015261433581613e38565b9050919050565b6000602082019050818103600083015261435581613e5b565b9050919050565b6000602082019050818103600083015261437581613e7e565b9050919050565b6000602082019050818103600083015261439581613ea1565b9050919050565b600060208201905081810360008301526143b581613ec4565b9050919050565b600060208201905081810360008301526143d581613ee7565b9050919050565b600060208201905081810360008301526143f581613f0a565b9050919050565b6000602082019050818103600083015261441581613f2d565b9050919050565b6000602082019050818103600083015261443581613f50565b9050919050565b6000602082019050818103600083015261445581613f73565b9050919050565b6000602082019050818103600083015261447581613f96565b9050919050565b6000602082019050818103600083015261449581613fdc565b9050919050565b600060208201905081810360008301526144b581613fff565b9050919050565b600060208201905081810360008301526144d581614022565b9050919050565b600060208201905081810360008301526144f581614045565b9050919050565b600060208201905081810360008301526145158161408b565b9050919050565b60006020820190508181036000830152614535816140ae565b9050919050565b60006020820190508181036000830152614555816140d1565b9050919050565b60006020820190506145716000830184614103565b92915050565b600060408201905061458c6000830185614103565b6145996020830184613c01565b9392505050565b60006145aa6145bb565b90506145b682826148d7565b919050565b6000604051905090565b600067ffffffffffffffff8211156145e0576145df614a6d565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561460c5761460b614a6d565b5b61461582614ab5565b9050602081019050919050565b600067ffffffffffffffff82111561463d5761463c614a6d565b5b61464682614ab5565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006146e582614859565b91506146f083614859565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561472557614724614982565b5b828201905092915050565b600061473b82614859565b915061474683614859565b925082614756576147556149b1565b5b828204905092915050565b600061476c82614859565b915061477783614859565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156147b0576147af614982565b5b828202905092915050565b60006147c682614859565b91506147d183614859565b9250828210156147e4576147e3614982565b5b828203905092915050565b60006147fa82614839565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614890578082015181840152602081019050614875565b8381111561489f576000848401525b50505050565b600060028204905060018216806148bd57607f821691505b602082108114156148d1576148d06149e0565b5b50919050565b6148e082614ab5565b810181811067ffffffffffffffff821117156148ff576148fe614a6d565b5b80604052505050565b600061491382614859565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561494657614945614982565b5b600182019050919050565b600061495c82614859565b915061496783614859565b925082614977576149766149b1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f536f7272792c20796f7520617265206e6f7420696e207468652077686974656c60008201527f6973742e00000000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73616374696f6e206661696c65642e00000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682065746865727320746f206d696e74204e4654732e00600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f7420656c696769626c6520746f206d696e74207468697320616c6c6f636160008201527f74696f6e2e000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f52656163686564206d6178696d756d20616c6c6f636174696f6e000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f507269766174652073616c6520686173206e6f74207374617274656420796574600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f53616c6520686173206e6f742073746172746564207965742e00000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820457468657220746f20776974686472617721000000600082015250565b615185816147ef565b811461519057600080fd5b50565b61519c81614801565b81146151a757600080fd5b50565b6151b38161480d565b81146151be57600080fd5b50565b6151ca81614859565b81146151d557600080fd5b5056fea264697066735822122089c9fa034a6800aa7eb65da92bde0f2ae43176134cbc2b7d3c1f636b1dd6d4b464736f6c63430008070033697066733a2f2f516d66377a7658487271764b6747797a795033656d63636b5039645641414d6237335a55364a5177727a647a4c672f7361746f7368692e6a736f6e697066733a2f2f516d63356b3439535a326a585353596959525437666a616674647a48797838783463616b526273565752394232792f

Deployed Bytecode

0x6080604052600436106102675760003560e01c8063715018a611610144578063b88d4fde116100b6578063d5abeb011161007a578063d5abeb0114610903578063d936547e1461092e578063e985e9c51461096b578063f2c4ce1e146109a8578063f2fde38b146109d1578063fd9d2f4f146109fa57610267565b8063b88d4fde1461081e578063ba1f879f14610847578063ba582d7314610872578063c87b56dd1461089b578063d3dac9cd146108d857610267565b8063940cd05b11610108578063940cd05b1461073157806395d89b411461075a5780639b6fbf8a146107855780639dfde201146107ae578063a0712d68146107d9578063a22cb465146107f557610267565b8063715018a6146106815780638075fa47146106985780638c851e5f146106b45780638da5cb5b146106dd57806391b7f5ed1461070857610267565b80633ccfd60b116101dd57806355f804b3116101a157806355f804b31461054b5780635c975abb146105745780636352211e1461059f5780636ac7ca14146105dc5780636c0360eb1461061957806370a082311461064457610267565b80633ccfd60b1461047357806342842e0e1461047d578063438b6300146104a65780634f6ccce7146104e3578063518302271461052057610267565b8063095ea7b31161022f578063095ea7b31461036557806318160ddd1461038e57806323b872dd146103b95780632f745c59146103e257806330cc7ae01461041f57806333bc1c5c1461044857610267565b806301ffc9a71461026c57806302329a29146102a957806306fdde03146102d2578063081812fc146102fd578063081c8c441461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613b19565b610a23565b6040516102a091906141df565b60405180910390f35b3480156102b557600080fd5b506102d060048036038101906102cb9190613aec565b610a9d565b005b3480156102de57600080fd5b506102e7610b36565b6040516102f491906141fa565b60405180910390f35b34801561030957600080fd5b50610324600480360381019061031f9190613bbc565b610bc8565b6040516103319190614156565b60405180910390f35b34801561034657600080fd5b5061034f610c4d565b60405161035c91906141fa565b60405180910390f35b34801561037157600080fd5b5061038c60048036038101906103879190613a63565b610cdb565b005b34801561039a57600080fd5b506103a3610df3565b6040516103b0919061455c565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db919061394d565b610e04565b005b3480156103ee57600080fd5b5061040960048036038101906104049190613a63565b610e64565b604051610416919061455c565b60405180910390f35b34801561042b57600080fd5b50610446600480360381019061044191906138e0565b610f09565b005b34801561045457600080fd5b5061045d610fe0565b60405161046a91906141df565b60405180910390f35b61047b610ff3565b005b34801561048957600080fd5b506104a4600480360381019061049f919061394d565b611167565b005b3480156104b257600080fd5b506104cd60048036038101906104c891906138e0565b611187565b6040516104da91906141bd565b60405180910390f35b3480156104ef57600080fd5b5061050a60048036038101906105059190613bbc565b611292565b604051610517919061455c565b60405180910390f35b34801561052c57600080fd5b50610535611303565b60405161054291906141df565b60405180910390f35b34801561055757600080fd5b50610572600480360381019061056d9190613b73565b611316565b005b34801561058057600080fd5b506105896113ac565b60405161059691906141df565b60405180910390f35b3480156105ab57600080fd5b506105c660048036038101906105c19190613bbc565b6113bf565b6040516105d39190614156565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe91906138e0565b611471565b604051610610919061455c565b60405180910390f35b34801561062557600080fd5b5061062e611489565b60405161063b91906141fa565b60405180910390f35b34801561065057600080fd5b5061066b600480360381019061066691906138e0565b611517565b604051610678919061455c565b60405180910390f35b34801561068d57600080fd5b506106966115cf565b005b6106b260048036038101906106ad9190613bbc565b611657565b005b3480156106c057600080fd5b506106db60048036038101906106d69190613aec565b61184c565b005b3480156106e957600080fd5b506106f26118e5565b6040516106ff9190614156565b60405180910390f35b34801561071457600080fd5b5061072f600480360381019061072a9190613bbc565b61190f565b005b34801561073d57600080fd5b5061075860048036038101906107539190613aec565b611995565b005b34801561076657600080fd5b5061076f611a2e565b60405161077c91906141fa565b60405180910390f35b34801561079157600080fd5b506107ac60048036038101906107a79190613aa3565b611ac0565b005b3480156107ba57600080fd5b506107c3611bd1565b6040516107d0919061455c565b60405180910390f35b6107f360048036038101906107ee9190613bbc565b611bd7565b005b34801561080157600080fd5b5061081c60048036038101906108179190613a23565b611e66565b005b34801561082a57600080fd5b50610845600480360381019061084091906139a0565b611e7c565b005b34801561085357600080fd5b5061085c611ede565b60405161086991906141df565b60405180910390f35b34801561087e57600080fd5b5061089960048036038101906108949190613aec565b611ef1565b005b3480156108a757600080fd5b506108c260048036038101906108bd9190613bbc565b611f8a565b6040516108cf91906141fa565b60405180910390f35b3480156108e457600080fd5b506108ed6120e0565b6040516108fa919061455c565b60405180910390f35b34801561090f57600080fd5b506109186120e6565b604051610925919061455c565b60405180910390f35b34801561093a57600080fd5b50610955600480360381019061095091906138e0565b6120ec565b60405161096291906141df565b60405180910390f35b34801561097757600080fd5b50610992600480360381019061098d919061390d565b61210c565b60405161099f91906141df565b60405180910390f35b3480156109b457600080fd5b506109cf60048036038101906109ca9190613b73565b6121a0565b005b3480156109dd57600080fd5b506109f860048036038101906109f391906138e0565b612236565b005b348015610a0657600080fd5b50610a216004803603810190610a1c9190613bbc565b61232e565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a965750610a95826123b4565b5b9050919050565b610aa5612496565b73ffffffffffffffffffffffffffffffffffffffff16610ac36118e5565b73ffffffffffffffffffffffffffffffffffffffff1614610b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b109061447c565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b606060008054610b45906148a5565b80601f0160208091040260200160405190810160405280929190818152602001828054610b71906148a5565b8015610bbe5780601f10610b9357610100808354040283529160200191610bbe565b820191906000526020600020905b815481529060010190602001808311610ba157829003601f168201915b5050505050905090565b6000610bd38261249e565b610c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c099061445c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60118054610c5a906148a5565b80601f0160208091040260200160405190810160405280929190818152602001828054610c86906148a5565b8015610cd35780601f10610ca857610100808354040283529160200191610cd3565b820191906000526020600020905b815481529060010190602001808311610cb657829003601f168201915b505050505081565b6000610ce6826113bf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4e906144dc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d76612496565b73ffffffffffffffffffffffffffffffffffffffff161480610da55750610da481610d9f612496565b61210c565b5b610de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddb906143bc565b60405180910390fd5b610dee838361250a565b505050565b6000610dff600b6125c3565b905090565b610e15610e0f612496565b826125d1565b610e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4b906144fc565b60405180910390fd5b610e5f8383836126af565b505050565b6000610e6f83611517565b8210610eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea79061425c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610f11612496565b73ffffffffffffffffffffffffffffffffffffffff16610f2f6118e5565b73ffffffffffffffffffffffffffffffffffffffff1614610f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7c9061447c565b60405180910390fd5b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b601060029054906101000a900460ff1681565b610ffb612496565b73ffffffffffffffffffffffffffffffffffffffff166110196118e5565b73ffffffffffffffffffffffffffffffffffffffff161461106f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110669061447c565b60405180910390fd5b6000479050600081116110b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ae9061453c565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16826040516110dd90614141565b60006040518083038185875af1925050503d806000811461111a576040519150601f19603f3d011682016040523d82523d6000602084013e61111f565b606091505b5050905080611163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115a9061423c565b60405180910390fd5b5050565b61118283838360405180602001604052806000815250611e7c565b505050565b6060600061119483611517565b905060008167ffffffffffffffff8111156111b2576111b1614a6d565b5b6040519080825280602002602001820160405280156111e05781602001602082028036833780820191505090505b50905060006001905060005b83811080156111fd5750600e548211155b1561128657600061120d836113bf565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611272578284838151811061125757611256614a3e565b5b602002602001018181525050818061126e90614908565b9250505b828061127d90614908565b935050506111ec565b82945050505050919050565b600061129c612916565b82106112dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d49061451c565b60405180910390fd5b600882815481106112f1576112f0614a3e565b5b90600052602060002001549050919050565b601060019054906101000a900460ff1681565b61131e612496565b73ffffffffffffffffffffffffffffffffffffffff1661133c6118e5565b73ffffffffffffffffffffffffffffffffffffffff1614611392576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113899061447c565b60405180910390fd5b80600c90805190602001906113a8929190613656565b5050565b601060009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145f906143fc565b60405180910390fd5b80915050919050565b60136020528060005260406000206000915090505481565b600c8054611496906148a5565b80601f01602080910402602001604051908101604052809291908181526020018280546114c2906148a5565b801561150f5780601f106114e45761010080835404028352916020019161150f565b820191906000526020600020905b8154815290600101906020018083116114f257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157f906143dc565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115d7612496565b73ffffffffffffffffffffffffffffffffffffffff166115f56118e5565b73ffffffffffffffffffffffffffffffffffffffff161461164b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116429061447c565b60405180910390fd5b6116556000612923565b565b6000811161166457600080fd5b601060009054906101000a900460ff16156116b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ab906144bc565b60405180910390fd5b600081116116c157600080fd5b600e54816116cf600b6125c3565b6116d991906146da565b11156116e457600080fd5b601060039054906101000a900460ff16611733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172a9061443c565b60405180910390fd5b8061173d33611517565b61174791906146da565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156117c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bf9061439c565b60405180910390fd5b6000600190505b818111611848576117e0600b6129e9565b6117f3336117ee600b6125c3565b6129ff565b7f8a597e144748f647b3a5783f60e5d24d40173798fa7ed859b110ac9b2176694f61181e600b6125c3565b3360405161182d929190614577565b60405180910390a1808061184090614908565b9150506117cf565b5050565b611854612496565b73ffffffffffffffffffffffffffffffffffffffff166118726118e5565b73ffffffffffffffffffffffffffffffffffffffff16146118c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bf9061447c565b60405180910390fd5b80601060026101000a81548160ff02191690831515021790555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611917612496565b73ffffffffffffffffffffffffffffffffffffffff166119356118e5565b73ffffffffffffffffffffffffffffffffffffffff161461198b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119829061447c565b60405180910390fd5b80600d8190555050565b61199d612496565b73ffffffffffffffffffffffffffffffffffffffff166119bb6118e5565b73ffffffffffffffffffffffffffffffffffffffff1614611a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a089061447c565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b606060018054611a3d906148a5565b80601f0160208091040260200160405190810160405280929190818152602001828054611a69906148a5565b8015611ab65780601f10611a8b57610100808354040283529160200191611ab6565b820191906000526020600020905b815481529060010190602001808311611a9957829003601f168201915b5050505050905090565b611ac8612496565b73ffffffffffffffffffffffffffffffffffffffff16611ae66118e5565b73ffffffffffffffffffffffffffffffffffffffff1614611b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b339061447c565b60405180910390fd5b60005b8151811015611bcd57600160126000848481518110611b6157611b60614a3e565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611bc590614908565b915050611b3f565b5050565b600d5481565b601060009054906101000a900460ff1615611c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1e906144bc565b60405180910390fd5b60008111611c3457600080fd5b600e5481611c42600b6125c3565b611c4c91906146da565b1115611c5757600080fd5b611c5f6118e5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611de25780611c9b33611517565b611ca591906146da565b600f541015611ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce09061431c565b60405180910390fd5b60011515601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611d9157601060029054906101000a900460ff16611d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d879061421c565b60405180910390fd5b5b80600d54611d9f9190614761565b341015611de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd89061429c565b60405180910390fd5b5b6000600190505b818111611e6257611dfa600b6129e9565b611e0d33611e08600b6125c3565b6129ff565b7fa91701ce7448cb62a787a446278d57557e6755d5083ad217c82d8d3035ab5371611e38600b6125c3565b33604051611e47929190614577565b60405180910390a18080611e5a90614908565b915050611de9565b5050565b611e78611e71612496565b8383612a1d565b5050565b611e8d611e87612496565b836125d1565b611ecc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec3906144fc565b60405180910390fd5b611ed884848484612b8a565b50505050565b601060039054906101000a900460ff1681565b611ef9612496565b73ffffffffffffffffffffffffffffffffffffffff16611f176118e5565b73ffffffffffffffffffffffffffffffffffffffff1614611f6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f649061447c565b60405180910390fd5b80601060036101000a81548160ff02191690831515021790555050565b6060611f958261249e565b611fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcb9061449c565b60405180910390fd5b60001515601060019054906101000a900460ff16151514156120825760118054611ffd906148a5565b80601f0160208091040260200160405190810160405280929190818152602001828054612029906148a5565b80156120765780601f1061204b57610100808354040283529160200191612076565b820191906000526020600020905b81548152906001019060200180831161205957829003601f168201915b505050505090506120db565b600061208c612be6565b905060008151116120ac57604051806020016040528060008152506120d7565b806120b684612c78565b6040516020016120c7929190614112565b6040516020818303038152906040525b9150505b919050565b600f5481565b600e5481565b60126020528060005260406000206000915054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6121a8612496565b73ffffffffffffffffffffffffffffffffffffffff166121c66118e5565b73ffffffffffffffffffffffffffffffffffffffff161461221c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122139061447c565b60405180910390fd5b8060119080519060200190612232929190613656565b5050565b61223e612496565b73ffffffffffffffffffffffffffffffffffffffff1661225c6118e5565b73ffffffffffffffffffffffffffffffffffffffff16146122b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a99061447c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612322576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612319906142bc565b60405180910390fd5b61232b81612923565b50565b612336612496565b73ffffffffffffffffffffffffffffffffffffffff166123546118e5565b73ffffffffffffffffffffffffffffffffffffffff16146123aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a19061447c565b60405180910390fd5b80600f8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061247f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061248f575061248e82612dd9565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661257d836113bf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006125dc8261249e565b61261b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126129061437c565b60405180910390fd5b6000612626836113bf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061269557508373ffffffffffffffffffffffffffffffffffffffff1661267d84610bc8565b73ffffffffffffffffffffffffffffffffffffffff16145b806126a657506126a5818561210c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166126cf826113bf565b73ffffffffffffffffffffffffffffffffffffffff1614612725576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271c906142dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612795576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278c9061433c565b60405180910390fd5b6127a0838383612e43565b6127ab60008261250a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127fb91906147bb565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461285291906146da565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612911838383612f57565b505050565b6000600880549050905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b612a19828260405180602001604052806000815250612f5c565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a839061435c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612b7d91906141df565b60405180910390a3505050565b612b958484846126af565b612ba184848484612fb7565b612be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd79061427c565b60405180910390fd5b50505050565b6060600c8054612bf5906148a5565b80601f0160208091040260200160405190810160405280929190818152602001828054612c21906148a5565b8015612c6e5780601f10612c4357610100808354040283529160200191612c6e565b820191906000526020600020905b815481529060010190602001808311612c5157829003601f168201915b5050505050905090565b60606000821415612cc0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612dd4565b600082905060005b60008214612cf2578080612cdb90614908565b915050600a82612ceb9190614730565b9150612cc8565b60008167ffffffffffffffff811115612d0e57612d0d614a6d565b5b6040519080825280601f01601f191660200182016040528015612d405781602001600182028036833780820191505090505b5090505b60008514612dcd57600182612d5991906147bb565b9150600a85612d689190614951565b6030612d7491906146da565b60f81b818381518110612d8a57612d89614a3e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612dc69190614730565b9450612d44565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612e4e83838361314e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e9157612e8c81613153565b612ed0565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612ecf57612ece838261319c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f1357612f0e81613309565b612f52565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612f5157612f5082826133da565b5b5b505050565b505050565b612f668383613459565b612f736000848484612fb7565b612fb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa99061427c565b60405180910390fd5b505050565b6000612fd88473ffffffffffffffffffffffffffffffffffffffff16613633565b15613141578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613001612496565b8786866040518563ffffffff1660e01b81526004016130239493929190614171565b602060405180830381600087803b15801561303d57600080fd5b505af192505050801561306e57506040513d601f19601f8201168201806040525081019061306b9190613b46565b60015b6130f1573d806000811461309e576040519150601f19603f3d011682016040523d82523d6000602084013e6130a3565b606091505b506000815114156130e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130e09061427c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613146565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016131a984611517565b6131b391906147bb565b9050600060076000848152602001908152602001600020549050818114613298576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061331d91906147bb565b905060006009600084815260200190815260200160002054905060006008838154811061334d5761334c614a3e565b5b90600052602060002001549050806008838154811061336f5761336e614a3e565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806133be576133bd614a0f565b5b6001900381819060005260206000200160009055905550505050565b60006133e583611517565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134c09061441c565b60405180910390fd5b6134d28161249e565b15613512576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613509906142fc565b60405180910390fd5b61351e60008383612e43565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461356e91906146da565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461362f60008383612f57565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054613662906148a5565b90600052602060002090601f01602090048101928261368457600085556136cb565b82601f1061369d57805160ff19168380011785556136cb565b828001600101855582156136cb579182015b828111156136ca5782518255916020019190600101906136af565b5b5090506136d891906136dc565b5090565b5b808211156136f55760008160009055506001016136dd565b5090565b600061370c613707846145c5565b6145a0565b9050808382526020820190508285602086028201111561372f5761372e614aa1565b5b60005b8581101561375f578161374588826137ed565b845260208401935060208301925050600181019050613732565b5050509392505050565b600061377c613777846145f1565b6145a0565b90508281526020810184848401111561379857613797614aa6565b5b6137a3848285614863565b509392505050565b60006137be6137b984614622565b6145a0565b9050828152602081018484840111156137da576137d9614aa6565b5b6137e5848285614863565b509392505050565b6000813590506137fc8161517c565b92915050565b600082601f83011261381757613816614a9c565b5b81356138278482602086016136f9565b91505092915050565b60008135905061383f81615193565b92915050565b600081359050613854816151aa565b92915050565b600081519050613869816151aa565b92915050565b600082601f83011261388457613883614a9c565b5b8135613894848260208601613769565b91505092915050565b600082601f8301126138b2576138b1614a9c565b5b81356138c28482602086016137ab565b91505092915050565b6000813590506138da816151c1565b92915050565b6000602082840312156138f6576138f5614ab0565b5b6000613904848285016137ed565b91505092915050565b6000806040838503121561392457613923614ab0565b5b6000613932858286016137ed565b9250506020613943858286016137ed565b9150509250929050565b60008060006060848603121561396657613965614ab0565b5b6000613974868287016137ed565b9350506020613985868287016137ed565b9250506040613996868287016138cb565b9150509250925092565b600080600080608085870312156139ba576139b9614ab0565b5b60006139c8878288016137ed565b94505060206139d9878288016137ed565b93505060406139ea878288016138cb565b925050606085013567ffffffffffffffff811115613a0b57613a0a614aab565b5b613a178782880161386f565b91505092959194509250565b60008060408385031215613a3a57613a39614ab0565b5b6000613a48858286016137ed565b9250506020613a5985828601613830565b9150509250929050565b60008060408385031215613a7a57613a79614ab0565b5b6000613a88858286016137ed565b9250506020613a99858286016138cb565b9150509250929050565b600060208284031215613ab957613ab8614ab0565b5b600082013567ffffffffffffffff811115613ad757613ad6614aab565b5b613ae384828501613802565b91505092915050565b600060208284031215613b0257613b01614ab0565b5b6000613b1084828501613830565b91505092915050565b600060208284031215613b2f57613b2e614ab0565b5b6000613b3d84828501613845565b91505092915050565b600060208284031215613b5c57613b5b614ab0565b5b6000613b6a8482850161385a565b91505092915050565b600060208284031215613b8957613b88614ab0565b5b600082013567ffffffffffffffff811115613ba757613ba6614aab565b5b613bb38482850161389d565b91505092915050565b600060208284031215613bd257613bd1614ab0565b5b6000613be0848285016138cb565b91505092915050565b6000613bf583836140f4565b60208301905092915050565b613c0a816147ef565b82525050565b6000613c1b82614663565b613c258185614691565b9350613c3083614653565b8060005b83811015613c61578151613c488882613be9565b9750613c5383614684565b925050600181019050613c34565b5085935050505092915050565b613c7781614801565b82525050565b6000613c888261466e565b613c9281856146a2565b9350613ca2818560208601614872565b613cab81614ab5565b840191505092915050565b6000613cc182614679565b613ccb81856146be565b9350613cdb818560208601614872565b613ce481614ab5565b840191505092915050565b6000613cfa82614679565b613d0481856146cf565b9350613d14818560208601614872565b80840191505092915050565b6000613d2d6024836146be565b9150613d3882614ac6565b604082019050919050565b6000613d506013836146be565b9150613d5b82614b15565b602082019050919050565b6000613d73602b836146be565b9150613d7e82614b3e565b604082019050919050565b6000613d966032836146be565b9150613da182614b8d565b604082019050919050565b6000613db9601f836146be565b9150613dc482614bdc565b602082019050919050565b6000613ddc6026836146be565b9150613de782614c05565b604082019050919050565b6000613dff6025836146be565b9150613e0a82614c54565b604082019050919050565b6000613e22601c836146be565b9150613e2d82614ca3565b602082019050919050565b6000613e456025836146be565b9150613e5082614ccc565b604082019050919050565b6000613e686024836146be565b9150613e7382614d1b565b604082019050919050565b6000613e8b6019836146be565b9150613e9682614d6a565b602082019050919050565b6000613eae602c836146be565b9150613eb982614d93565b604082019050919050565b6000613ed1601a836146be565b9150613edc82614de2565b602082019050919050565b6000613ef46038836146be565b9150613eff82614e0b565b604082019050919050565b6000613f17602a836146be565b9150613f2282614e5a565b604082019050919050565b6000613f3a6029836146be565b9150613f4582614ea9565b604082019050919050565b6000613f5d6020836146be565b9150613f6882614ef8565b602082019050919050565b6000613f806020836146be565b9150613f8b82614f21565b602082019050919050565b6000613fa3602c836146be565b9150613fae82614f4a565b604082019050919050565b6000613fc66005836146cf565b9150613fd182614f99565b600582019050919050565b6000613fe96020836146be565b9150613ff482614fc2565b602082019050919050565b600061400c602f836146be565b915061401782614feb565b604082019050919050565b600061402f6019836146be565b915061403a8261503a565b602082019050919050565b60006140526021836146be565b915061405d82615063565b604082019050919050565b60006140756000836146b3565b9150614080826150b2565b600082019050919050565b60006140986031836146be565b91506140a3826150b5565b604082019050919050565b60006140bb602c836146be565b91506140c682615104565b604082019050919050565b60006140de601d836146be565b91506140e982615153565b602082019050919050565b6140fd81614859565b82525050565b61410c81614859565b82525050565b600061411e8285613cef565b915061412a8284613cef565b915061413582613fb9565b91508190509392505050565b600061414c82614068565b9150819050919050565b600060208201905061416b6000830184613c01565b92915050565b60006080820190506141866000830187613c01565b6141936020830186613c01565b6141a06040830185614103565b81810360608301526141b28184613c7d565b905095945050505050565b600060208201905081810360008301526141d78184613c10565b905092915050565b60006020820190506141f46000830184613c6e565b92915050565b600060208201905081810360008301526142148184613cb6565b905092915050565b6000602082019050818103600083015261423581613d20565b9050919050565b6000602082019050818103600083015261425581613d43565b9050919050565b6000602082019050818103600083015261427581613d66565b9050919050565b6000602082019050818103600083015261429581613d89565b9050919050565b600060208201905081810360008301526142b581613dac565b9050919050565b600060208201905081810360008301526142d581613dcf565b9050919050565b600060208201905081810360008301526142f581613df2565b9050919050565b6000602082019050818103600083015261431581613e15565b9050919050565b6000602082019050818103600083015261433581613e38565b9050919050565b6000602082019050818103600083015261435581613e5b565b9050919050565b6000602082019050818103600083015261437581613e7e565b9050919050565b6000602082019050818103600083015261439581613ea1565b9050919050565b600060208201905081810360008301526143b581613ec4565b9050919050565b600060208201905081810360008301526143d581613ee7565b9050919050565b600060208201905081810360008301526143f581613f0a565b9050919050565b6000602082019050818103600083015261441581613f2d565b9050919050565b6000602082019050818103600083015261443581613f50565b9050919050565b6000602082019050818103600083015261445581613f73565b9050919050565b6000602082019050818103600083015261447581613f96565b9050919050565b6000602082019050818103600083015261449581613fdc565b9050919050565b600060208201905081810360008301526144b581613fff565b9050919050565b600060208201905081810360008301526144d581614022565b9050919050565b600060208201905081810360008301526144f581614045565b9050919050565b600060208201905081810360008301526145158161408b565b9050919050565b60006020820190508181036000830152614535816140ae565b9050919050565b60006020820190508181036000830152614555816140d1565b9050919050565b60006020820190506145716000830184614103565b92915050565b600060408201905061458c6000830185614103565b6145996020830184613c01565b9392505050565b60006145aa6145bb565b90506145b682826148d7565b919050565b6000604051905090565b600067ffffffffffffffff8211156145e0576145df614a6d565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561460c5761460b614a6d565b5b61461582614ab5565b9050602081019050919050565b600067ffffffffffffffff82111561463d5761463c614a6d565b5b61464682614ab5565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006146e582614859565b91506146f083614859565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561472557614724614982565b5b828201905092915050565b600061473b82614859565b915061474683614859565b925082614756576147556149b1565b5b828204905092915050565b600061476c82614859565b915061477783614859565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156147b0576147af614982565b5b828202905092915050565b60006147c682614859565b91506147d183614859565b9250828210156147e4576147e3614982565b5b828203905092915050565b60006147fa82614839565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614890578082015181840152602081019050614875565b8381111561489f576000848401525b50505050565b600060028204905060018216806148bd57607f821691505b602082108114156148d1576148d06149e0565b5b50919050565b6148e082614ab5565b810181811067ffffffffffffffff821117156148ff576148fe614a6d565b5b80604052505050565b600061491382614859565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561494657614945614982565b5b600182019050919050565b600061495c82614859565b915061496783614859565b925082614977576149766149b1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f536f7272792c20796f7520617265206e6f7420696e207468652077686974656c60008201527f6973742e00000000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73616374696f6e206661696c65642e00000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682065746865727320746f206d696e74204e4654732e00600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f7420656c696769626c6520746f206d696e74207468697320616c6c6f636160008201527f74696f6e2e000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f52656163686564206d6178696d756d20616c6c6f636174696f6e000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f507269766174652073616c6520686173206e6f74207374617274656420796574600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f53616c6520686173206e6f742073746172746564207965742e00000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820457468657220746f20776974686472617721000000600082015250565b615185816147ef565b811461519057600080fd5b50565b61519c81614801565b81146151a757600080fd5b50565b6151b38161480d565b81146151be57600080fd5b50565b6151ca81614859565b81146151d557600080fd5b5056fea264697066735822122089c9fa034a6800aa7eb65da92bde0f2ae43176134cbc2b7d3c1f636b1dd6d4b464736f6c63430008070033

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.