ETH Price: $3,465.07 (+0.30%)
Gas: 5 Gwei

Token

Stakers (STKR)
 

Overview

Max Total Supply

572 STKR

Holders

276

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 STKR
0x7BBCAE65a58f913408e2eD06d96345cb450deaDF
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:
StakersNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : stx.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/*
    ░██████╗████████╗░█████╗░██╗░░██╗███████╗██████╗░░██████╗
    ██╔════╝╚══██╔══╝██╔══██╗██║░██╔╝██╔════╝██╔══██╗██╔════╝
    ╚█████╗░░░░██║░░░███████║█████═╝░█████╗░░██████╔╝╚█████╗░
    ░╚═══██╗░░░██║░░░██╔══██║██╔═██╗░██╔══╝░░██╔══██╗░╚═══██╗
    ██████╔╝░░░██║░░░██║░░██║██║░╚██╗███████╗██║░░██║██████╔╝
    ╚═════╝░░░░╚═╝░░░╚═╝░░╚═╝╚═╝░░╚═╝╚══════╝╚═╝░░╚═╝╚═════╝░
    StakersNFT / 2021

*/
import '@openzeppelin/contracts/token/ERC721/ERC721.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/utils/Strings.sol';



contract StakersNFT is ERC721Enumerable, Ownable {
  using Strings for uint256;

  uint256 public constant stakersReserve = 50;
  uint256 public constant stakersPublic = 9950;
  uint256 public constant stakersMax = stakersReserve + stakersPublic;
  uint256 public constant purchaseLimit = 10;
  uint256 public constant stakersPrice = 0.085 ether;

  bool public saleIsActive = false;
  bool public preSaleIsActive = false;
  bool public mysterySkinActive = false;

  uint256 public preSaleMaxMint = 5;

  uint256 public stakersReserveSupply;
  uint256 public stakersPublicSupply;
  

  mapping(address => bool) private _preSaleList;
  mapping(address => uint256) private _preSaleListClaimed;
  mapping (uint256 => string) private mysterySkin;
  mapping (uint256 => string) private _tokenURIs;

  string private _contractURI = '';
  string private _tokenBaseURI = '';
  string private _tokenRevealedBaseURI = '';
  
    address addr1 = 0xBBba53998855117c9Bcf85dC7bC551b061e921D1;
    address addr2 = 0xa27165136A086E278CC66d812D817405c41af3ED;
    address addr3 = 0x0664494538F599bE00c4f39fd83C944656436Ce9;
    address addr4 = 0xaA49136A0865A7B30c676D5d7Abb18a224cF39Fc;
    address addr5 = 0xFdb318348726C4102c8459cD33b5F5D72c8Cad4D;


constructor() ERC721("Stakers", "STKR") { 
        
      
    }  
      function activateMysterySkin(uint256 tokenId) public {
        require(mysterySkinActive, 'Mystery Skins are not active yet');
        address owner = ERC721.ownerOf(tokenId);
        require(
            _msgSender() == owner,
            "This isn't your Staker."
        );
        require (bytes(mysterySkin[tokenId]).length == 0, "Your Myster Skin is already active.");
           
        mysterySkin[tokenId] = "a";
    }
     function deActivateMysterySkin(uint256 tokenId) public {
        require(mysterySkinActive, 'Mystery Skins are not active yet');
        address owner = ERC721.ownerOf(tokenId);
        require(
            _msgSender() == owner,
            "This isn't your Staker."
        );
        require (bytes(mysterySkin[tokenId]).length > 0, "Your Myster Skin is already deactived.");

           
        mysterySkin[tokenId] = "";
    }
    

  function addToAllowList(address[] calldata addresses) external onlyOwner {
    for (uint256 i = 0; i < addresses.length; i++) {
      require(addresses[i] != address(0), "Cannot add the null address");

      _preSaleList[addresses[i]] = true;
      _preSaleListClaimed[addresses[i]] > 0 ? _preSaleListClaimed[addresses[i]] : 0;
    }
  }

  function onAllowList(address addr) external view returns (bool) {
    return _preSaleList[addr];
  }

  function removeFromAllowList(address[] calldata addresses) external onlyOwner {
    for (uint256 i = 0; i < addresses.length; i++) {
      require(addresses[i] != address(0), "Cannot add the null address");

      _preSaleList[addresses[i]] = false;
    }
  }


  function allowListClaimedBy(address owner) external view returns (uint256){
    require(owner != address(0), 'Zero address not on Allow List');

    return _preSaleListClaimed[owner];
  }

  function mintStaker(uint256 numberOfTokens) external payable {
   require(saleIsActive, 'Minting is not live');
    require(totalSupply() < stakersMax, 'There are no tokens left');
    
    require(numberOfTokens <= purchaseLimit, 'This would exceed the limit');

    require(stakersPublicSupply + numberOfTokens <= stakersPublic, 'There are no tokens left');
    require(stakersPrice * numberOfTokens <= msg.value, 'ETH sent is not sufficient');

    for (uint256 i = 0; i < numberOfTokens; i++) {

      if (stakersPublicSupply < stakersPublic) {

        uint256 tokenId = stakersReserve + stakersPublicSupply + 1;

        stakersPublicSupply += 1;
        _safeMint(msg.sender, tokenId);
      }
    }
  }

  function purchaseAllowList(uint256 numberOfTokens) external payable {
   require(preSaleIsActive, 'PreSale is not active');
    require(_preSaleList[msg.sender], 'You are not on the PreSale List');
    require(totalSupply() < stakersMax, 'There are no tokens left');
    require(numberOfTokens <= preSaleMaxMint, 'There are no tokens left');
    require(stakersPublicSupply + numberOfTokens <= stakersPublic, 'Purchase would exceed Public Sale');
    require(_preSaleListClaimed[msg.sender] + numberOfTokens <= preSaleMaxMint, 'Purchase exceeds the PreSale Limit');
    require(stakersPrice * numberOfTokens <= msg.value, 'ETH sent is not sufficient');

    for (uint256 i = 0; i < numberOfTokens; i++) {

      uint256 tokenId = stakersReserve + stakersPublicSupply + 1;

      stakersPublicSupply += 1;
      _preSaleListClaimed[msg.sender] += 1;
      _safeMint(msg.sender, tokenId);
    }
  }

  function gift(address[] calldata to) external onlyOwner {
    require(totalSupply() < stakersMax, 'There are no tokens left');
    require(stakersReserveSupply + to.length <= stakersReserve, 'There are no tokens left to gift');

    for(uint256 i = 0; i < to.length; i++) {
      uint256 tokenId = stakersReserveSupply + 1;

      stakersReserveSupply += 1;
      _safeMint(to[i], tokenId);
    }
  }

  function setsaleIsActive(bool _saleIsActive) external onlyOwner {
    saleIsActive = _saleIsActive;
  }

  function setpreSaleIsActive(bool _preSaleIsActive) external onlyOwner {
    preSaleIsActive = _preSaleIsActive;
  }




   function withdrawAll() public onlyOwner {
        uint256 balance = address(this).balance / 5;
        require(payable(addr1).send(balance));
        require(payable(addr2).send(balance));
        require(payable(addr3).send(balance));
        require(payable(addr4).send(balance));
        require(payable(addr5).send(balance));
        
    }

  function setContractURI(string calldata URI) external onlyOwner {
    _contractURI = URI;
  }

  function setBaseURI(string calldata URI) external onlyOwner {
    _tokenBaseURI = URI;
  }
    
  function toggleMysteryStatus() external onlyOwner {
        mysterySkinActive = !mysterySkinActive;
    }


  function setRevealedBaseURI(string calldata revealedBaseURI) external onlyOwner {
    _tokenRevealedBaseURI = revealedBaseURI;
  }

  function contractURI() public view returns (string memory) {
    return _contractURI;
  }
  

    
  function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) {
    require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

    string memory revealedBaseURI = _tokenRevealedBaseURI;
    return bytes(revealedBaseURI).length > 0 ?
      string(abi.encodePacked(revealedBaseURI, tokenId.toString(), mysterySkin[tokenId])) :
      _tokenBaseURI;
  }

}

File 2 of 13 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 3 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 of 13 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 6 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 7 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

File 9 of 13 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 11 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 12 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"activateMysterySkin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"allowListClaimedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"deActivateMysterySkin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintStaker","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mysterySkinActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"onAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"preSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"purchaseAllowList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"purchaseLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"revealedBaseURI","type":"string"}],"name":"setRevealedBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_preSaleIsActive","type":"bool"}],"name":"setpreSaleIsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_saleIsActive","type":"bool"}],"name":"setsaleIsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakersMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakersPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakersPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakersPublicSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakersReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakersReserveSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMysteryStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600a60146101000a81548160ff0219169083151502179055506000600a60156101000a81548160ff0219169083151502179055506000600a60166101000a81548160ff0219169083151502179055506005600b556040518060200160405280600081525060129080519060200190620000819291906200041d565b506040518060200160405280600081525060139080519060200190620000a99291906200041d565b506040518060200160405280600081525060149080519060200190620000d19291906200041d565b5073bbba53998855117c9bcf85dc7bc551b061e921d1601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073a27165136a086e278cc66d812d817405c41af3ed601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550730664494538f599be00c4f39fd83c944656436ce9601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073aa49136a0865a7b30c676d5d7abb18a224cf39fc601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073fdb318348726c4102c8459cd33b5f5d72c8cad4d601960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200028857600080fd5b506040518060400160405280600781526020017f5374616b657273000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f53544b520000000000000000000000000000000000000000000000000000000081525081600090805190602001906200030d9291906200041d565b508060019080519060200190620003269291906200041d565b505050620003496200033d6200034f60201b60201c565b6200035760201b60201c565b62000532565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200042b90620004cd565b90600052602060002090601f0160209004810192826200044f57600085556200049b565b82601f106200046a57805160ff19168380011785556200049b565b828001600101855582156200049b579182015b828111156200049a5782518255916020019190600101906200047d565b5b509050620004aa9190620004ae565b5090565b5b80821115620004c9576000816000905550600101620004af565b5090565b60006002820490506001821680620004e657607f821691505b60208210811415620004fd57620004fc62000503565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b615b5f80620005426000396000f3fe6080604052600436106102875760003560e01c80636e83843a1161015a578063a22cb465116100c1578063e8a3d4851161007a578063e8a3d485146109b7578063e985e9c5146109e2578063e9eb884314610a1f578063eb8d244414610a3b578063f23347f514610a66578063f2fde38b14610a8257610287565b8063a22cb465146108ab578063a51312c8146108d4578063b88d4fde146108fd578063c06caa4214610926578063c87b56dd1461094f578063cd5b23381461098c57610287565b806383e89f191161011357806383e89f19146107d3578063853828b6146107fe5780638da5cb5b14610815578063938e3d7b1461084057806395d89b41146108695780639e6d3b5f1461089457610287565b80636e83843a146106d957806370a0823114610702578063715018a61461073f5780637263cfe214610756578063732516181461077f5780637919fef5146107aa57610287565b80632f745c59116101fe5780634fe40fbe116101b75780634fe40fbe146105c757806355f804b3146105f257806359c332171461061b5780636352211e1461064657806367365cce146106835780636b2db504146106ae57610287565b80632f745c59146104955780633a065892146104d257806342842e0e1461050f5780634bc8682e146105385780634de52f9f146105615780634f6ccce71461058a57610287565b80630b1a187a116102505780630b1a187a14610397578063163e1e61146103c257806318160ddd146103eb57806318886657146104165780631f0234d81461044157806323b872dd1461046c57610287565b806208ffdd1461028c57806301ffc9a7146102c957806306fdde0314610306578063081812fc14610331578063095ea7b31461036e575b600080fd5b34801561029857600080fd5b506102b360048036038101906102ae9190614046565b610aab565b6040516102c09190614e1e565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb9190614283565b610b63565b6040516102fd91906149c1565b60405180910390f35b34801561031257600080fd5b5061031b610bdd565b60405161032891906149dc565b60405180910390f35b34801561033d57600080fd5b506103586004803603810190610353919061432a565b610c6f565b604051610365919061495a565b60405180910390f35b34801561037a57600080fd5b50610395600480360381019061039091906141c9565b610cf4565b005b3480156103a357600080fd5b506103ac610e0c565b6040516103b99190614e1e565b60405180910390f35b3480156103ce57600080fd5b506103e960048036038101906103e49190614209565b610e11565b005b3480156103f757600080fd5b50610400610fbd565b60405161040d9190614e1e565b60405180910390f35b34801561042257600080fd5b5061042b610fca565b6040516104389190614e1e565b60405180910390f35b34801561044d57600080fd5b50610456610fcf565b60405161046391906149c1565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e91906140b3565b610fe2565b005b3480156104a157600080fd5b506104bc60048036038101906104b791906141c9565b611042565b6040516104c99190614e1e565b60405180910390f35b3480156104de57600080fd5b506104f960048036038101906104f49190614046565b6110e7565b60405161050691906149c1565b60405180910390f35b34801561051b57600080fd5b50610536600480360381019061053191906140b3565b61113d565b005b34801561054457600080fd5b5061055f600480360381019061055a919061432a565b61115d565b005b34801561056d57600080fd5b5061058860048036038101906105839190614256565b6112f1565b005b34801561059657600080fd5b506105b160048036038101906105ac919061432a565b61138a565b6040516105be9190614e1e565b60405180910390f35b3480156105d357600080fd5b506105dc6113fb565b6040516105e99190614e1e565b60405180910390f35b3480156105fe57600080fd5b50610619600480360381019061061491906142dd565b611401565b005b34801561062757600080fd5b50610630611493565b60405161063d9190614e1e565b60405180910390f35b34801561065257600080fd5b5061066d6004803603810190610668919061432a565b611499565b60405161067a919061495a565b60405180910390f35b34801561068f57600080fd5b5061069861154b565b6040516106a59190614e1e565b60405180910390f35b3480156106ba57600080fd5b506106c361155d565b6040516106d091906149c1565b60405180910390f35b3480156106e557600080fd5b5061070060048036038101906106fb91906142dd565b611570565b005b34801561070e57600080fd5b5061072960048036038101906107249190614046565b611602565b6040516107369190614e1e565b60405180910390f35b34801561074b57600080fd5b506107546116ba565b005b34801561076257600080fd5b5061077d60048036038101906107789190614209565b611742565b005b34801561078b57600080fd5b506107946119d8565b6040516107a19190614e1e565b60405180910390f35b3480156107b657600080fd5b506107d160048036038101906107cc919061432a565b6119de565b005b3480156107df57600080fd5b506107e8611b4c565b6040516107f59190614e1e565b60405180910390f35b34801561080a57600080fd5b50610813611b52565b005b34801561082157600080fd5b5061082a611dc2565b604051610837919061495a565b60405180910390f35b34801561084c57600080fd5b50610867600480360381019061086291906142dd565b611dec565b005b34801561087557600080fd5b5061087e611e7e565b60405161088b91906149dc565b60405180910390f35b3480156108a057600080fd5b506108a9611f10565b005b3480156108b757600080fd5b506108d260048036038101906108cd9190614189565b611fb8565b005b3480156108e057600080fd5b506108fb60048036038101906108f69190614209565b612139565b005b34801561090957600080fd5b50610924600480360381019061091f9190614106565b6122f1565b005b34801561093257600080fd5b5061094d60048036038101906109489190614256565b612353565b005b34801561095b57600080fd5b506109766004803603810190610971919061432a565b6123ec565b60405161098391906149dc565b60405180910390f35b34801561099857600080fd5b506109a16125a5565b6040516109ae9190614e1e565b60405180910390f35b3480156109c357600080fd5b506109cc6125b1565b6040516109d991906149dc565b60405180910390f35b3480156109ee57600080fd5b50610a096004803603810190610a049190614073565b612643565b604051610a1691906149c1565b60405180910390f35b610a396004803603810190610a34919061432a565b6126d7565b005b348015610a4757600080fd5b50610a506128dc565b604051610a5d91906149c1565b60405180910390f35b610a806004803603810190610a7b919061432a565b6128ef565b005b348015610a8e57600080fd5b50610aa96004803603810190610aa49190614046565b612c5a565b005b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1390614cde565b60405180910390fd5b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bd65750610bd582612d52565b5b9050919050565b606060008054610bec906150b2565b80601f0160208091040260200160405190810160405280929190818152602001828054610c18906150b2565b8015610c655780601f10610c3a57610100808354040283529160200191610c65565b820191906000526020600020905b815481529060010190602001808311610c4857829003601f168201915b5050505050905090565b6000610c7a82612e34565b610cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb090614c9e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cff82611499565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6790614d7e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d8f612ea0565b73ffffffffffffffffffffffffffffffffffffffff161480610dbe5750610dbd81610db8612ea0565b612643565b5b610dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df490614bfe565b60405180910390fd5b610e078383612ea8565b505050565b603281565b610e19612ea0565b73ffffffffffffffffffffffffffffffffffffffff16610e37611dc2565b73ffffffffffffffffffffffffffffffffffffffff1614610e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8490614cbe565b60405180910390fd5b6126de6032610e9c9190614ee7565b610ea4610fbd565b10610ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edb90614dfe565b60405180910390fd5b603282829050600c54610ef79190614ee7565b1115610f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2f90614a7e565b60405180910390fd5b60005b82829050811015610fb85760006001600c54610f579190614ee7565b90506001600c6000828254610f6c9190614ee7565b92505081905550610fa4848484818110610f8957610f8861524b565b5b9050602002016020810190610f9e9190614046565b82612f61565b508080610fb090615115565b915050610f3b565b505050565b6000600880549050905090565b600a81565b600a60159054906101000a900460ff1681565b610ff3610fed612ea0565b82612f7f565b611032576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102990614d9e565b60405180910390fd5b61103d83838361305d565b505050565b600061104d83611602565b821061108e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108590614a3e565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611158838383604051806020016040528060008152506122f1565b505050565b600a60169054906101000a900460ff166111ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a390614abe565b60405180910390fd5b60006111b782611499565b90508073ffffffffffffffffffffffffffffffffffffffff166111d8612ea0565b73ffffffffffffffffffffffffffffffffffffffff161461122e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122590614d5e565b60405180910390fd5b600060106000848152602001908152602001600020805461124e906150b2565b905014611290576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611287906149fe565b60405180910390fd5b6040518060400160405280600181526020017f61000000000000000000000000000000000000000000000000000000000000008152506010600084815260200190815260200160002090805190602001906112ec929190613d98565b505050565b6112f9612ea0565b73ffffffffffffffffffffffffffffffffffffffff16611317611dc2565b73ffffffffffffffffffffffffffffffffffffffff161461136d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136490614cbe565b60405180910390fd5b80600a60146101000a81548160ff02191690831515021790555050565b6000611394610fbd565b82106113d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cc90614dbe565b60405180910390fd5b600882815481106113e9576113e861524b565b5b90600052602060002001549050919050565b600c5481565b611409612ea0565b73ffffffffffffffffffffffffffffffffffffffff16611427611dc2565b73ffffffffffffffffffffffffffffffffffffffff161461147d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147490614cbe565b60405180910390fd5b81816013919061148e929190613e1e565b505050565b6126de81565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611542576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153990614c3e565b60405180910390fd5b80915050919050565b6126de603261155a9190614ee7565b81565b600a60169054906101000a900460ff1681565b611578612ea0565b73ffffffffffffffffffffffffffffffffffffffff16611596611dc2565b73ffffffffffffffffffffffffffffffffffffffff16146115ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e390614cbe565b60405180910390fd5b8181601491906115fd929190613e1e565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166a90614c1e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116c2612ea0565b73ffffffffffffffffffffffffffffffffffffffff166116e0611dc2565b73ffffffffffffffffffffffffffffffffffffffff1614611736576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172d90614cbe565b60405180910390fd5b61174060006132b9565b565b61174a612ea0565b73ffffffffffffffffffffffffffffffffffffffff16611768611dc2565b73ffffffffffffffffffffffffffffffffffffffff16146117be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b590614cbe565b60405180910390fd5b60005b828290508110156119d357600073ffffffffffffffffffffffffffffffffffffffff168383838181106117f7576117f661524b565b5b905060200201602081019061180c9190614046565b73ffffffffffffffffffffffffffffffffffffffff161415611863576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185a90614bde565b60405180910390fd5b6001600e600085858581811061187c5761187b61524b565b5b90506020020160208101906118919190614046565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000600f60008585858181106118fb576118fa61524b565b5b90506020020160208101906119109190614046565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116119575760006119bf565b600f600084848481811061196e5761196d61524b565b5b90506020020160208101906119839190614046565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020545b5080806119cb90615115565b9150506117c1565b505050565b600d5481565b600a60169054906101000a900460ff16611a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2490614abe565b60405180910390fd5b6000611a3882611499565b90508073ffffffffffffffffffffffffffffffffffffffff16611a59612ea0565b73ffffffffffffffffffffffffffffffffffffffff1614611aaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa690614d5e565b60405180910390fd5b6000601060008481526020019081526020016000208054611acf906150b2565b905011611b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0890614dde565b60405180910390fd5b60405180602001604052806000815250601060008481526020019081526020016000209080519060200190611b47929190613d98565b505050565b600b5481565b611b5a612ea0565b73ffffffffffffffffffffffffffffffffffffffff16611b78611dc2565b73ffffffffffffffffffffffffffffffffffffffff1614611bce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc590614cbe565b60405180910390fd5b6000600547611bdd9190614f3d565b9050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050611c3f57600080fd5b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050611c9f57600080fd5b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050611cff57600080fd5b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050611d5f57600080fd5b601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050611dbf57600080fd5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611df4612ea0565b73ffffffffffffffffffffffffffffffffffffffff16611e12611dc2565b73ffffffffffffffffffffffffffffffffffffffff1614611e68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5f90614cbe565b60405180910390fd5b818160129190611e79929190613e1e565b505050565b606060018054611e8d906150b2565b80601f0160208091040260200160405190810160405280929190818152602001828054611eb9906150b2565b8015611f065780601f10611edb57610100808354040283529160200191611f06565b820191906000526020600020905b815481529060010190602001808311611ee957829003601f168201915b5050505050905090565b611f18612ea0565b73ffffffffffffffffffffffffffffffffffffffff16611f36611dc2565b73ffffffffffffffffffffffffffffffffffffffff1614611f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8390614cbe565b60405180910390fd5b600a60169054906101000a900460ff1615600a60166101000a81548160ff021916908315150217905550565b611fc0612ea0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561202e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202590614b5e565b60405180910390fd5b806005600061203b612ea0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166120e8612ea0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161212d91906149c1565b60405180910390a35050565b612141612ea0565b73ffffffffffffffffffffffffffffffffffffffff1661215f611dc2565b73ffffffffffffffffffffffffffffffffffffffff16146121b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ac90614cbe565b60405180910390fd5b60005b828290508110156122ec57600073ffffffffffffffffffffffffffffffffffffffff168383838181106121ee576121ed61524b565b5b90506020020160208101906122039190614046565b73ffffffffffffffffffffffffffffffffffffffff16141561225a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225190614bde565b60405180910390fd5b6000600e60008585858181106122735761227261524b565b5b90506020020160208101906122889190614046565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806122e490615115565b9150506121b8565b505050565b6123026122fc612ea0565b83612f7f565b612341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233890614d9e565b60405180910390fd5b61234d8484848461337f565b50505050565b61235b612ea0565b73ffffffffffffffffffffffffffffffffffffffff16612379611dc2565b73ffffffffffffffffffffffffffffffffffffffff16146123cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c690614cbe565b60405180910390fd5b80600a60156101000a81548160ff02191690831515021790555050565b60606123f782612e34565b612436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242d90614d3e565b60405180910390fd5b600060148054612445906150b2565b80601f0160208091040260200160405190810160405280929190818152602001828054612471906150b2565b80156124be5780601f10612493576101008083540402835291602001916124be565b820191906000526020600020905b8154815290600101906020018083116124a157829003601f168201915b50505050509050600081511161255e57601380546124db906150b2565b80601f0160208091040260200160405190810160405280929190818152602001828054612507906150b2565b80156125545780601f1061252957610100808354040283529160200191612554565b820191906000526020600020905b81548152906001019060200180831161253757829003601f168201915b505050505061259d565b80612568846133db565b6010600086815260200190815260200160002060405160200161258d93929190614929565b6040516020818303038152906040525b915050919050565b67012dfb0cb5e8800081565b6060601280546125c0906150b2565b80601f01602080910402602001604051908101604052809291908181526020018280546125ec906150b2565b80156126395780601f1061260e57610100808354040283529160200191612639565b820191906000526020600020905b81548152906001019060200180831161261c57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a60149054906101000a900460ff16612726576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271d90614b7e565b60405180910390fd5b6126de60326127359190614ee7565b61273d610fbd565b1061277d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277490614dfe565b60405180910390fd5b600a8111156127c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b890614ade565b60405180910390fd5b6126de81600d546127d29190614ee7565b1115612813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280a90614dfe565b60405180910390fd5b348167012dfb0cb5e880006128289190614f6e565b1115612869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286090614b1e565b60405180910390fd5b60005b818110156128d8576126de600d5410156128c55760006001600d5460326128939190614ee7565b61289d9190614ee7565b90506001600d60008282546128b29190614ee7565b925050819055506128c33382612f61565b505b80806128d090615115565b91505061286c565b5050565b600a60149054906101000a900460ff1681565b600a60159054906101000a900460ff1661293e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293590614cfe565b60405180910390fd5b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166129ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c190614bbe565b60405180910390fd5b6126de60326129d99190614ee7565b6129e1610fbd565b10612a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1890614dfe565b60405180910390fd5b600b54811115612a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5d90614dfe565b60405180910390fd5b6126de81600d54612a779190614ee7565b1115612ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aaf90614a1e565b60405180910390fd5b600b5481600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b069190614ee7565b1115612b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3e90614c7e565b60405180910390fd5b348167012dfb0cb5e88000612b5c9190614f6e565b1115612b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9490614b1e565b60405180910390fd5b60005b81811015612c565760006001600d546032612bbb9190614ee7565b612bc59190614ee7565b90506001600d6000828254612bda9190614ee7565b925050819055506001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c319190614ee7565b92505081905550612c423382612f61565b508080612c4e90615115565b915050612ba0565b5050565b612c62612ea0565b73ffffffffffffffffffffffffffffffffffffffff16612c80611dc2565b73ffffffffffffffffffffffffffffffffffffffff1614612cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ccd90614cbe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3d90614a9e565b60405180910390fd5b612d4f816132b9565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612e1d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612e2d5750612e2c8261353c565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612f1b83611499565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b612f7b8282604051806020016040528060008152506135a6565b5050565b6000612f8a82612e34565b612fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc090614b9e565b60405180910390fd5b6000612fd483611499565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061304357508373ffffffffffffffffffffffffffffffffffffffff1661302b84610c6f565b73ffffffffffffffffffffffffffffffffffffffff16145b8061305457506130538185612643565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661307d82611499565b73ffffffffffffffffffffffffffffffffffffffff16146130d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ca90614d1e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313a90614b3e565b60405180910390fd5b61314e838383613601565b613159600082612ea8565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131a99190614fc8565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132009190614ee7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61338a84848461305d565b61339684848484613715565b6133d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133cc90614a5e565b60405180910390fd5b50505050565b60606000821415613423576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613537565b600082905060005b6000821461345557808061343e90615115565b915050600a8261344e9190614f3d565b915061342b565b60008167ffffffffffffffff8111156134715761347061527a565b5b6040519080825280601f01601f1916602001820160405280156134a35781602001600182028036833780820191505090505b5090505b60008514613530576001826134bc9190614fc8565b9150600a856134cb919061515e565b60306134d79190614ee7565b60f81b8183815181106134ed576134ec61524b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856135299190614f3d565b94506134a7565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6135b083836138ac565b6135bd6000848484613715565b6135fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135f390614a5e565b60405180910390fd5b505050565b61360c838383613a7a565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561364f5761364a81613a7f565b61368e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461368d5761368c8382613ac8565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136d1576136cc81613c35565b613710565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461370f5761370e8282613d06565b5b5b505050565b60006137368473ffffffffffffffffffffffffffffffffffffffff16613d85565b1561389f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261375f612ea0565b8786866040518563ffffffff1660e01b81526004016137819493929190614975565b602060405180830381600087803b15801561379b57600080fd5b505af19250505080156137cc57506040513d601f19601f820116820180604052508101906137c991906142b0565b60015b61384f573d80600081146137fc576040519150601f19603f3d011682016040523d82523d6000602084013e613801565b606091505b50600081511415613847576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161383e90614a5e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506138a4565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561391c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161391390614c5e565b60405180910390fd5b61392581612e34565b15613965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161395c90614afe565b60405180910390fd5b61397160008383613601565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139c19190614ee7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613ad584611602565b613adf9190614fc8565b9050600060076000848152602001908152602001600020549050818114613bc4576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613c499190614fc8565b9050600060096000848152602001908152602001600020549050600060088381548110613c7957613c7861524b565b5b906000526020600020015490508060088381548110613c9b57613c9a61524b565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613cea57613ce961521c565b5b6001900381819060005260206000200160009055905550505050565b6000613d1183611602565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054613da4906150b2565b90600052602060002090601f016020900481019282613dc65760008555613e0d565b82601f10613ddf57805160ff1916838001178555613e0d565b82800160010185558215613e0d579182015b82811115613e0c578251825591602001919060010190613df1565b5b509050613e1a9190613ea4565b5090565b828054613e2a906150b2565b90600052602060002090601f016020900481019282613e4c5760008555613e93565b82601f10613e6557803560ff1916838001178555613e93565b82800160010185558215613e93579182015b82811115613e92578235825591602001919060010190613e77565b5b509050613ea09190613ea4565b5090565b5b80821115613ebd576000816000905550600101613ea5565b5090565b6000613ed4613ecf84614e5e565b614e39565b905082815260208101848484011115613ef057613eef6152b8565b5b613efb848285615070565b509392505050565b600081359050613f1281615acd565b92915050565b60008083601f840112613f2e57613f2d6152ae565b5b8235905067ffffffffffffffff811115613f4b57613f4a6152a9565b5b602083019150836020820283011115613f6757613f666152b3565b5b9250929050565b600081359050613f7d81615ae4565b92915050565b600081359050613f9281615afb565b92915050565b600081519050613fa781615afb565b92915050565b600082601f830112613fc257613fc16152ae565b5b8135613fd2848260208601613ec1565b91505092915050565b60008083601f840112613ff157613ff06152ae565b5b8235905067ffffffffffffffff81111561400e5761400d6152a9565b5b60208301915083600182028301111561402a576140296152b3565b5b9250929050565b60008135905061404081615b12565b92915050565b60006020828403121561405c5761405b6152c2565b5b600061406a84828501613f03565b91505092915050565b6000806040838503121561408a576140896152c2565b5b600061409885828601613f03565b92505060206140a985828601613f03565b9150509250929050565b6000806000606084860312156140cc576140cb6152c2565b5b60006140da86828701613f03565b93505060206140eb86828701613f03565b92505060406140fc86828701614031565b9150509250925092565b600080600080608085870312156141205761411f6152c2565b5b600061412e87828801613f03565b945050602061413f87828801613f03565b935050604061415087828801614031565b925050606085013567ffffffffffffffff811115614171576141706152bd565b5b61417d87828801613fad565b91505092959194509250565b600080604083850312156141a05761419f6152c2565b5b60006141ae85828601613f03565b92505060206141bf85828601613f6e565b9150509250929050565b600080604083850312156141e0576141df6152c2565b5b60006141ee85828601613f03565b92505060206141ff85828601614031565b9150509250929050565b600080602083850312156142205761421f6152c2565b5b600083013567ffffffffffffffff81111561423e5761423d6152bd565b5b61424a85828601613f18565b92509250509250929050565b60006020828403121561426c5761426b6152c2565b5b600061427a84828501613f6e565b91505092915050565b600060208284031215614299576142986152c2565b5b60006142a784828501613f83565b91505092915050565b6000602082840312156142c6576142c56152c2565b5b60006142d484828501613f98565b91505092915050565b600080602083850312156142f4576142f36152c2565b5b600083013567ffffffffffffffff811115614312576143116152bd565b5b61431e85828601613fdb565b92509250509250929050565b6000602082840312156143405761433f6152c2565b5b600061434e84828501614031565b91505092915050565b61436081614ffc565b82525050565b61436f8161500e565b82525050565b600061438082614ea4565b61438a8185614eba565b935061439a81856020860161507f565b6143a3816152c7565b840191505092915050565b60006143b982614eaf565b6143c38185614ecb565b93506143d381856020860161507f565b6143dc816152c7565b840191505092915050565b60006143f282614eaf565b6143fc8185614edc565b935061440c81856020860161507f565b80840191505092915050565b60008154614425816150b2565b61442f8186614edc565b9450600182166000811461444a576001811461445b5761448e565b60ff1983168652818601935061448e565b61446485614e8f565b60005b8381101561448657815481890152600182019150602081019050614467565b838801955050505b50505092915050565b60006144a4602383614ecb565b91506144af826152d8565b604082019050919050565b60006144c7602183614ecb565b91506144d282615327565b604082019050919050565b60006144ea602b83614ecb565b91506144f582615376565b604082019050919050565b600061450d603283614ecb565b9150614518826153c5565b604082019050919050565b6000614530602083614ecb565b915061453b82615414565b602082019050919050565b6000614553602683614ecb565b915061455e8261543d565b604082019050919050565b6000614576602083614ecb565b91506145818261548c565b602082019050919050565b6000614599601b83614ecb565b91506145a4826154b5565b602082019050919050565b60006145bc601c83614ecb565b91506145c7826154de565b602082019050919050565b60006145df601a83614ecb565b91506145ea82615507565b602082019050919050565b6000614602602483614ecb565b915061460d82615530565b604082019050919050565b6000614625601983614ecb565b91506146308261557f565b602082019050919050565b6000614648601383614ecb565b9150614653826155a8565b602082019050919050565b600061466b602c83614ecb565b9150614676826155d1565b604082019050919050565b600061468e601f83614ecb565b915061469982615620565b602082019050919050565b60006146b1601b83614ecb565b91506146bc82615649565b602082019050919050565b60006146d4603883614ecb565b91506146df82615672565b604082019050919050565b60006146f7602a83614ecb565b9150614702826156c1565b604082019050919050565b600061471a602983614ecb565b915061472582615710565b604082019050919050565b600061473d602083614ecb565b91506147488261575f565b602082019050919050565b6000614760602283614ecb565b915061476b82615788565b604082019050919050565b6000614783602c83614ecb565b915061478e826157d7565b604082019050919050565b60006147a6602083614ecb565b91506147b182615826565b602082019050919050565b60006147c9601e83614ecb565b91506147d48261584f565b602082019050919050565b60006147ec601583614ecb565b91506147f782615878565b602082019050919050565b600061480f602983614ecb565b915061481a826158a1565b604082019050919050565b6000614832602f83614ecb565b915061483d826158f0565b604082019050919050565b6000614855601783614ecb565b91506148608261593f565b602082019050919050565b6000614878602183614ecb565b915061488382615968565b604082019050919050565b600061489b603183614ecb565b91506148a6826159b7565b604082019050919050565b60006148be602c83614ecb565b91506148c982615a06565b604082019050919050565b60006148e1602683614ecb565b91506148ec82615a55565b604082019050919050565b6000614904601883614ecb565b915061490f82615aa4565b602082019050919050565b61492381615066565b82525050565b600061493582866143e7565b915061494182856143e7565b915061494d8284614418565b9150819050949350505050565b600060208201905061496f6000830184614357565b92915050565b600060808201905061498a6000830187614357565b6149976020830186614357565b6149a4604083018561491a565b81810360608301526149b68184614375565b905095945050505050565b60006020820190506149d66000830184614366565b92915050565b600060208201905081810360008301526149f681846143ae565b905092915050565b60006020820190508181036000830152614a1781614497565b9050919050565b60006020820190508181036000830152614a37816144ba565b9050919050565b60006020820190508181036000830152614a57816144dd565b9050919050565b60006020820190508181036000830152614a7781614500565b9050919050565b60006020820190508181036000830152614a9781614523565b9050919050565b60006020820190508181036000830152614ab781614546565b9050919050565b60006020820190508181036000830152614ad781614569565b9050919050565b60006020820190508181036000830152614af78161458c565b9050919050565b60006020820190508181036000830152614b17816145af565b9050919050565b60006020820190508181036000830152614b37816145d2565b9050919050565b60006020820190508181036000830152614b57816145f5565b9050919050565b60006020820190508181036000830152614b7781614618565b9050919050565b60006020820190508181036000830152614b978161463b565b9050919050565b60006020820190508181036000830152614bb78161465e565b9050919050565b60006020820190508181036000830152614bd781614681565b9050919050565b60006020820190508181036000830152614bf7816146a4565b9050919050565b60006020820190508181036000830152614c17816146c7565b9050919050565b60006020820190508181036000830152614c37816146ea565b9050919050565b60006020820190508181036000830152614c578161470d565b9050919050565b60006020820190508181036000830152614c7781614730565b9050919050565b60006020820190508181036000830152614c9781614753565b9050919050565b60006020820190508181036000830152614cb781614776565b9050919050565b60006020820190508181036000830152614cd781614799565b9050919050565b60006020820190508181036000830152614cf7816147bc565b9050919050565b60006020820190508181036000830152614d17816147df565b9050919050565b60006020820190508181036000830152614d3781614802565b9050919050565b60006020820190508181036000830152614d5781614825565b9050919050565b60006020820190508181036000830152614d7781614848565b9050919050565b60006020820190508181036000830152614d978161486b565b9050919050565b60006020820190508181036000830152614db78161488e565b9050919050565b60006020820190508181036000830152614dd7816148b1565b9050919050565b60006020820190508181036000830152614df7816148d4565b9050919050565b60006020820190508181036000830152614e17816148f7565b9050919050565b6000602082019050614e33600083018461491a565b92915050565b6000614e43614e54565b9050614e4f82826150e4565b919050565b6000604051905090565b600067ffffffffffffffff821115614e7957614e7861527a565b5b614e82826152c7565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614ef282615066565b9150614efd83615066565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614f3257614f3161518f565b5b828201905092915050565b6000614f4882615066565b9150614f5383615066565b925082614f6357614f626151be565b5b828204905092915050565b6000614f7982615066565b9150614f8483615066565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614fbd57614fbc61518f565b5b828202905092915050565b6000614fd382615066565b9150614fde83615066565b925082821015614ff157614ff061518f565b5b828203905092915050565b600061500782615046565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561509d578082015181840152602081019050615082565b838111156150ac576000848401525b50505050565b600060028204905060018216806150ca57607f821691505b602082108114156150de576150dd6151ed565b5b50919050565b6150ed826152c7565b810181811067ffffffffffffffff8211171561510c5761510b61527a565b5b80604052505050565b600061512082615066565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156151535761515261518f565b5b600182019050919050565b600061516982615066565b915061517483615066565b925082615184576151836151be565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f596f7572204d797374657220536b696e20697320616c7265616479206163746960008201527f76652e0000000000000000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564205075626c69632053616c60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f546865726520617265206e6f20746f6b656e73206c65667420746f2067696674600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d79737465727920536b696e7320617265206e6f742061637469766520796574600082015250565b7f5468697320776f756c642065786365656420746865206c696d69740000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4554482073656e74206973206e6f742073756666696369656e74000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d696e74696e67206973206e6f74206c69766500000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f596f7520617265206e6f74206f6e207468652050726553616c65204c69737400600082015250565b7f43616e6e6f742061646420746865206e756c6c20616464726573730000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f50757263686173652065786365656473207468652050726553616c65204c696d60008201527f6974000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c6973740000600082015250565b7f50726553616c65206973206e6f74206163746976650000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f546869732069736e277420796f7572205374616b65722e000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f596f7572204d797374657220536b696e20697320616c7265616479206465616360008201527f74697665642e0000000000000000000000000000000000000000000000000000602082015250565b7f546865726520617265206e6f20746f6b656e73206c6566740000000000000000600082015250565b615ad681614ffc565b8114615ae157600080fd5b50565b615aed8161500e565b8114615af857600080fd5b50565b615b048161501a565b8114615b0f57600080fd5b50565b615b1b81615066565b8114615b2657600080fd5b5056fea2646970667358221220abfb39cec9c1a347b15b1e6b3e884b2032562ece19eba98c900a3c58e25bc0e264736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102875760003560e01c80636e83843a1161015a578063a22cb465116100c1578063e8a3d4851161007a578063e8a3d485146109b7578063e985e9c5146109e2578063e9eb884314610a1f578063eb8d244414610a3b578063f23347f514610a66578063f2fde38b14610a8257610287565b8063a22cb465146108ab578063a51312c8146108d4578063b88d4fde146108fd578063c06caa4214610926578063c87b56dd1461094f578063cd5b23381461098c57610287565b806383e89f191161011357806383e89f19146107d3578063853828b6146107fe5780638da5cb5b14610815578063938e3d7b1461084057806395d89b41146108695780639e6d3b5f1461089457610287565b80636e83843a146106d957806370a0823114610702578063715018a61461073f5780637263cfe214610756578063732516181461077f5780637919fef5146107aa57610287565b80632f745c59116101fe5780634fe40fbe116101b75780634fe40fbe146105c757806355f804b3146105f257806359c332171461061b5780636352211e1461064657806367365cce146106835780636b2db504146106ae57610287565b80632f745c59146104955780633a065892146104d257806342842e0e1461050f5780634bc8682e146105385780634de52f9f146105615780634f6ccce71461058a57610287565b80630b1a187a116102505780630b1a187a14610397578063163e1e61146103c257806318160ddd146103eb57806318886657146104165780631f0234d81461044157806323b872dd1461046c57610287565b806208ffdd1461028c57806301ffc9a7146102c957806306fdde0314610306578063081812fc14610331578063095ea7b31461036e575b600080fd5b34801561029857600080fd5b506102b360048036038101906102ae9190614046565b610aab565b6040516102c09190614e1e565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb9190614283565b610b63565b6040516102fd91906149c1565b60405180910390f35b34801561031257600080fd5b5061031b610bdd565b60405161032891906149dc565b60405180910390f35b34801561033d57600080fd5b506103586004803603810190610353919061432a565b610c6f565b604051610365919061495a565b60405180910390f35b34801561037a57600080fd5b50610395600480360381019061039091906141c9565b610cf4565b005b3480156103a357600080fd5b506103ac610e0c565b6040516103b99190614e1e565b60405180910390f35b3480156103ce57600080fd5b506103e960048036038101906103e49190614209565b610e11565b005b3480156103f757600080fd5b50610400610fbd565b60405161040d9190614e1e565b60405180910390f35b34801561042257600080fd5b5061042b610fca565b6040516104389190614e1e565b60405180910390f35b34801561044d57600080fd5b50610456610fcf565b60405161046391906149c1565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e91906140b3565b610fe2565b005b3480156104a157600080fd5b506104bc60048036038101906104b791906141c9565b611042565b6040516104c99190614e1e565b60405180910390f35b3480156104de57600080fd5b506104f960048036038101906104f49190614046565b6110e7565b60405161050691906149c1565b60405180910390f35b34801561051b57600080fd5b50610536600480360381019061053191906140b3565b61113d565b005b34801561054457600080fd5b5061055f600480360381019061055a919061432a565b61115d565b005b34801561056d57600080fd5b5061058860048036038101906105839190614256565b6112f1565b005b34801561059657600080fd5b506105b160048036038101906105ac919061432a565b61138a565b6040516105be9190614e1e565b60405180910390f35b3480156105d357600080fd5b506105dc6113fb565b6040516105e99190614e1e565b60405180910390f35b3480156105fe57600080fd5b50610619600480360381019061061491906142dd565b611401565b005b34801561062757600080fd5b50610630611493565b60405161063d9190614e1e565b60405180910390f35b34801561065257600080fd5b5061066d6004803603810190610668919061432a565b611499565b60405161067a919061495a565b60405180910390f35b34801561068f57600080fd5b5061069861154b565b6040516106a59190614e1e565b60405180910390f35b3480156106ba57600080fd5b506106c361155d565b6040516106d091906149c1565b60405180910390f35b3480156106e557600080fd5b5061070060048036038101906106fb91906142dd565b611570565b005b34801561070e57600080fd5b5061072960048036038101906107249190614046565b611602565b6040516107369190614e1e565b60405180910390f35b34801561074b57600080fd5b506107546116ba565b005b34801561076257600080fd5b5061077d60048036038101906107789190614209565b611742565b005b34801561078b57600080fd5b506107946119d8565b6040516107a19190614e1e565b60405180910390f35b3480156107b657600080fd5b506107d160048036038101906107cc919061432a565b6119de565b005b3480156107df57600080fd5b506107e8611b4c565b6040516107f59190614e1e565b60405180910390f35b34801561080a57600080fd5b50610813611b52565b005b34801561082157600080fd5b5061082a611dc2565b604051610837919061495a565b60405180910390f35b34801561084c57600080fd5b50610867600480360381019061086291906142dd565b611dec565b005b34801561087557600080fd5b5061087e611e7e565b60405161088b91906149dc565b60405180910390f35b3480156108a057600080fd5b506108a9611f10565b005b3480156108b757600080fd5b506108d260048036038101906108cd9190614189565b611fb8565b005b3480156108e057600080fd5b506108fb60048036038101906108f69190614209565b612139565b005b34801561090957600080fd5b50610924600480360381019061091f9190614106565b6122f1565b005b34801561093257600080fd5b5061094d60048036038101906109489190614256565b612353565b005b34801561095b57600080fd5b506109766004803603810190610971919061432a565b6123ec565b60405161098391906149dc565b60405180910390f35b34801561099857600080fd5b506109a16125a5565b6040516109ae9190614e1e565b60405180910390f35b3480156109c357600080fd5b506109cc6125b1565b6040516109d991906149dc565b60405180910390f35b3480156109ee57600080fd5b50610a096004803603810190610a049190614073565b612643565b604051610a1691906149c1565b60405180910390f35b610a396004803603810190610a34919061432a565b6126d7565b005b348015610a4757600080fd5b50610a506128dc565b604051610a5d91906149c1565b60405180910390f35b610a806004803603810190610a7b919061432a565b6128ef565b005b348015610a8e57600080fd5b50610aa96004803603810190610aa49190614046565b612c5a565b005b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1390614cde565b60405180910390fd5b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bd65750610bd582612d52565b5b9050919050565b606060008054610bec906150b2565b80601f0160208091040260200160405190810160405280929190818152602001828054610c18906150b2565b8015610c655780601f10610c3a57610100808354040283529160200191610c65565b820191906000526020600020905b815481529060010190602001808311610c4857829003601f168201915b5050505050905090565b6000610c7a82612e34565b610cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb090614c9e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cff82611499565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6790614d7e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d8f612ea0565b73ffffffffffffffffffffffffffffffffffffffff161480610dbe5750610dbd81610db8612ea0565b612643565b5b610dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df490614bfe565b60405180910390fd5b610e078383612ea8565b505050565b603281565b610e19612ea0565b73ffffffffffffffffffffffffffffffffffffffff16610e37611dc2565b73ffffffffffffffffffffffffffffffffffffffff1614610e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8490614cbe565b60405180910390fd5b6126de6032610e9c9190614ee7565b610ea4610fbd565b10610ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edb90614dfe565b60405180910390fd5b603282829050600c54610ef79190614ee7565b1115610f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2f90614a7e565b60405180910390fd5b60005b82829050811015610fb85760006001600c54610f579190614ee7565b90506001600c6000828254610f6c9190614ee7565b92505081905550610fa4848484818110610f8957610f8861524b565b5b9050602002016020810190610f9e9190614046565b82612f61565b508080610fb090615115565b915050610f3b565b505050565b6000600880549050905090565b600a81565b600a60159054906101000a900460ff1681565b610ff3610fed612ea0565b82612f7f565b611032576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102990614d9e565b60405180910390fd5b61103d83838361305d565b505050565b600061104d83611602565b821061108e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108590614a3e565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611158838383604051806020016040528060008152506122f1565b505050565b600a60169054906101000a900460ff166111ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a390614abe565b60405180910390fd5b60006111b782611499565b90508073ffffffffffffffffffffffffffffffffffffffff166111d8612ea0565b73ffffffffffffffffffffffffffffffffffffffff161461122e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122590614d5e565b60405180910390fd5b600060106000848152602001908152602001600020805461124e906150b2565b905014611290576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611287906149fe565b60405180910390fd5b6040518060400160405280600181526020017f61000000000000000000000000000000000000000000000000000000000000008152506010600084815260200190815260200160002090805190602001906112ec929190613d98565b505050565b6112f9612ea0565b73ffffffffffffffffffffffffffffffffffffffff16611317611dc2565b73ffffffffffffffffffffffffffffffffffffffff161461136d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136490614cbe565b60405180910390fd5b80600a60146101000a81548160ff02191690831515021790555050565b6000611394610fbd565b82106113d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cc90614dbe565b60405180910390fd5b600882815481106113e9576113e861524b565b5b90600052602060002001549050919050565b600c5481565b611409612ea0565b73ffffffffffffffffffffffffffffffffffffffff16611427611dc2565b73ffffffffffffffffffffffffffffffffffffffff161461147d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147490614cbe565b60405180910390fd5b81816013919061148e929190613e1e565b505050565b6126de81565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611542576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153990614c3e565b60405180910390fd5b80915050919050565b6126de603261155a9190614ee7565b81565b600a60169054906101000a900460ff1681565b611578612ea0565b73ffffffffffffffffffffffffffffffffffffffff16611596611dc2565b73ffffffffffffffffffffffffffffffffffffffff16146115ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e390614cbe565b60405180910390fd5b8181601491906115fd929190613e1e565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166a90614c1e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116c2612ea0565b73ffffffffffffffffffffffffffffffffffffffff166116e0611dc2565b73ffffffffffffffffffffffffffffffffffffffff1614611736576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172d90614cbe565b60405180910390fd5b61174060006132b9565b565b61174a612ea0565b73ffffffffffffffffffffffffffffffffffffffff16611768611dc2565b73ffffffffffffffffffffffffffffffffffffffff16146117be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b590614cbe565b60405180910390fd5b60005b828290508110156119d357600073ffffffffffffffffffffffffffffffffffffffff168383838181106117f7576117f661524b565b5b905060200201602081019061180c9190614046565b73ffffffffffffffffffffffffffffffffffffffff161415611863576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185a90614bde565b60405180910390fd5b6001600e600085858581811061187c5761187b61524b565b5b90506020020160208101906118919190614046565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000600f60008585858181106118fb576118fa61524b565b5b90506020020160208101906119109190614046565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116119575760006119bf565b600f600084848481811061196e5761196d61524b565b5b90506020020160208101906119839190614046565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020545b5080806119cb90615115565b9150506117c1565b505050565b600d5481565b600a60169054906101000a900460ff16611a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2490614abe565b60405180910390fd5b6000611a3882611499565b90508073ffffffffffffffffffffffffffffffffffffffff16611a59612ea0565b73ffffffffffffffffffffffffffffffffffffffff1614611aaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa690614d5e565b60405180910390fd5b6000601060008481526020019081526020016000208054611acf906150b2565b905011611b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0890614dde565b60405180910390fd5b60405180602001604052806000815250601060008481526020019081526020016000209080519060200190611b47929190613d98565b505050565b600b5481565b611b5a612ea0565b73ffffffffffffffffffffffffffffffffffffffff16611b78611dc2565b73ffffffffffffffffffffffffffffffffffffffff1614611bce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc590614cbe565b60405180910390fd5b6000600547611bdd9190614f3d565b9050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050611c3f57600080fd5b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050611c9f57600080fd5b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050611cff57600080fd5b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050611d5f57600080fd5b601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050611dbf57600080fd5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611df4612ea0565b73ffffffffffffffffffffffffffffffffffffffff16611e12611dc2565b73ffffffffffffffffffffffffffffffffffffffff1614611e68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5f90614cbe565b60405180910390fd5b818160129190611e79929190613e1e565b505050565b606060018054611e8d906150b2565b80601f0160208091040260200160405190810160405280929190818152602001828054611eb9906150b2565b8015611f065780601f10611edb57610100808354040283529160200191611f06565b820191906000526020600020905b815481529060010190602001808311611ee957829003601f168201915b5050505050905090565b611f18612ea0565b73ffffffffffffffffffffffffffffffffffffffff16611f36611dc2565b73ffffffffffffffffffffffffffffffffffffffff1614611f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8390614cbe565b60405180910390fd5b600a60169054906101000a900460ff1615600a60166101000a81548160ff021916908315150217905550565b611fc0612ea0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561202e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202590614b5e565b60405180910390fd5b806005600061203b612ea0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166120e8612ea0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161212d91906149c1565b60405180910390a35050565b612141612ea0565b73ffffffffffffffffffffffffffffffffffffffff1661215f611dc2565b73ffffffffffffffffffffffffffffffffffffffff16146121b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ac90614cbe565b60405180910390fd5b60005b828290508110156122ec57600073ffffffffffffffffffffffffffffffffffffffff168383838181106121ee576121ed61524b565b5b90506020020160208101906122039190614046565b73ffffffffffffffffffffffffffffffffffffffff16141561225a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225190614bde565b60405180910390fd5b6000600e60008585858181106122735761227261524b565b5b90506020020160208101906122889190614046565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806122e490615115565b9150506121b8565b505050565b6123026122fc612ea0565b83612f7f565b612341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233890614d9e565b60405180910390fd5b61234d8484848461337f565b50505050565b61235b612ea0565b73ffffffffffffffffffffffffffffffffffffffff16612379611dc2565b73ffffffffffffffffffffffffffffffffffffffff16146123cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c690614cbe565b60405180910390fd5b80600a60156101000a81548160ff02191690831515021790555050565b60606123f782612e34565b612436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242d90614d3e565b60405180910390fd5b600060148054612445906150b2565b80601f0160208091040260200160405190810160405280929190818152602001828054612471906150b2565b80156124be5780601f10612493576101008083540402835291602001916124be565b820191906000526020600020905b8154815290600101906020018083116124a157829003601f168201915b50505050509050600081511161255e57601380546124db906150b2565b80601f0160208091040260200160405190810160405280929190818152602001828054612507906150b2565b80156125545780601f1061252957610100808354040283529160200191612554565b820191906000526020600020905b81548152906001019060200180831161253757829003601f168201915b505050505061259d565b80612568846133db565b6010600086815260200190815260200160002060405160200161258d93929190614929565b6040516020818303038152906040525b915050919050565b67012dfb0cb5e8800081565b6060601280546125c0906150b2565b80601f01602080910402602001604051908101604052809291908181526020018280546125ec906150b2565b80156126395780601f1061260e57610100808354040283529160200191612639565b820191906000526020600020905b81548152906001019060200180831161261c57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a60149054906101000a900460ff16612726576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271d90614b7e565b60405180910390fd5b6126de60326127359190614ee7565b61273d610fbd565b1061277d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277490614dfe565b60405180910390fd5b600a8111156127c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b890614ade565b60405180910390fd5b6126de81600d546127d29190614ee7565b1115612813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280a90614dfe565b60405180910390fd5b348167012dfb0cb5e880006128289190614f6e565b1115612869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286090614b1e565b60405180910390fd5b60005b818110156128d8576126de600d5410156128c55760006001600d5460326128939190614ee7565b61289d9190614ee7565b90506001600d60008282546128b29190614ee7565b925050819055506128c33382612f61565b505b80806128d090615115565b91505061286c565b5050565b600a60149054906101000a900460ff1681565b600a60159054906101000a900460ff1661293e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293590614cfe565b60405180910390fd5b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166129ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c190614bbe565b60405180910390fd5b6126de60326129d99190614ee7565b6129e1610fbd565b10612a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1890614dfe565b60405180910390fd5b600b54811115612a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5d90614dfe565b60405180910390fd5b6126de81600d54612a779190614ee7565b1115612ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aaf90614a1e565b60405180910390fd5b600b5481600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b069190614ee7565b1115612b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3e90614c7e565b60405180910390fd5b348167012dfb0cb5e88000612b5c9190614f6e565b1115612b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9490614b1e565b60405180910390fd5b60005b81811015612c565760006001600d546032612bbb9190614ee7565b612bc59190614ee7565b90506001600d6000828254612bda9190614ee7565b925050819055506001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c319190614ee7565b92505081905550612c423382612f61565b508080612c4e90615115565b915050612ba0565b5050565b612c62612ea0565b73ffffffffffffffffffffffffffffffffffffffff16612c80611dc2565b73ffffffffffffffffffffffffffffffffffffffff1614612cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ccd90614cbe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3d90614a9e565b60405180910390fd5b612d4f816132b9565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612e1d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612e2d5750612e2c8261353c565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612f1b83611499565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b612f7b8282604051806020016040528060008152506135a6565b5050565b6000612f8a82612e34565b612fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc090614b9e565b60405180910390fd5b6000612fd483611499565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061304357508373ffffffffffffffffffffffffffffffffffffffff1661302b84610c6f565b73ffffffffffffffffffffffffffffffffffffffff16145b8061305457506130538185612643565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661307d82611499565b73ffffffffffffffffffffffffffffffffffffffff16146130d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ca90614d1e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313a90614b3e565b60405180910390fd5b61314e838383613601565b613159600082612ea8565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131a99190614fc8565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132009190614ee7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61338a84848461305d565b61339684848484613715565b6133d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133cc90614a5e565b60405180910390fd5b50505050565b60606000821415613423576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613537565b600082905060005b6000821461345557808061343e90615115565b915050600a8261344e9190614f3d565b915061342b565b60008167ffffffffffffffff8111156134715761347061527a565b5b6040519080825280601f01601f1916602001820160405280156134a35781602001600182028036833780820191505090505b5090505b60008514613530576001826134bc9190614fc8565b9150600a856134cb919061515e565b60306134d79190614ee7565b60f81b8183815181106134ed576134ec61524b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856135299190614f3d565b94506134a7565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6135b083836138ac565b6135bd6000848484613715565b6135fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135f390614a5e565b60405180910390fd5b505050565b61360c838383613a7a565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561364f5761364a81613a7f565b61368e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461368d5761368c8382613ac8565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136d1576136cc81613c35565b613710565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461370f5761370e8282613d06565b5b5b505050565b60006137368473ffffffffffffffffffffffffffffffffffffffff16613d85565b1561389f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261375f612ea0565b8786866040518563ffffffff1660e01b81526004016137819493929190614975565b602060405180830381600087803b15801561379b57600080fd5b505af19250505080156137cc57506040513d601f19601f820116820180604052508101906137c991906142b0565b60015b61384f573d80600081146137fc576040519150601f19603f3d011682016040523d82523d6000602084013e613801565b606091505b50600081511415613847576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161383e90614a5e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506138a4565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561391c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161391390614c5e565b60405180910390fd5b61392581612e34565b15613965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161395c90614afe565b60405180910390fd5b61397160008383613601565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139c19190614ee7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613ad584611602565b613adf9190614fc8565b9050600060076000848152602001908152602001600020549050818114613bc4576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613c499190614fc8565b9050600060096000848152602001908152602001600020549050600060088381548110613c7957613c7861524b565b5b906000526020600020015490508060088381548110613c9b57613c9a61524b565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613cea57613ce961521c565b5b6001900381819060005260206000200160009055905550505050565b6000613d1183611602565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054613da4906150b2565b90600052602060002090601f016020900481019282613dc65760008555613e0d565b82601f10613ddf57805160ff1916838001178555613e0d565b82800160010185558215613e0d579182015b82811115613e0c578251825591602001919060010190613df1565b5b509050613e1a9190613ea4565b5090565b828054613e2a906150b2565b90600052602060002090601f016020900481019282613e4c5760008555613e93565b82601f10613e6557803560ff1916838001178555613e93565b82800160010185558215613e93579182015b82811115613e92578235825591602001919060010190613e77565b5b509050613ea09190613ea4565b5090565b5b80821115613ebd576000816000905550600101613ea5565b5090565b6000613ed4613ecf84614e5e565b614e39565b905082815260208101848484011115613ef057613eef6152b8565b5b613efb848285615070565b509392505050565b600081359050613f1281615acd565b92915050565b60008083601f840112613f2e57613f2d6152ae565b5b8235905067ffffffffffffffff811115613f4b57613f4a6152a9565b5b602083019150836020820283011115613f6757613f666152b3565b5b9250929050565b600081359050613f7d81615ae4565b92915050565b600081359050613f9281615afb565b92915050565b600081519050613fa781615afb565b92915050565b600082601f830112613fc257613fc16152ae565b5b8135613fd2848260208601613ec1565b91505092915050565b60008083601f840112613ff157613ff06152ae565b5b8235905067ffffffffffffffff81111561400e5761400d6152a9565b5b60208301915083600182028301111561402a576140296152b3565b5b9250929050565b60008135905061404081615b12565b92915050565b60006020828403121561405c5761405b6152c2565b5b600061406a84828501613f03565b91505092915050565b6000806040838503121561408a576140896152c2565b5b600061409885828601613f03565b92505060206140a985828601613f03565b9150509250929050565b6000806000606084860312156140cc576140cb6152c2565b5b60006140da86828701613f03565b93505060206140eb86828701613f03565b92505060406140fc86828701614031565b9150509250925092565b600080600080608085870312156141205761411f6152c2565b5b600061412e87828801613f03565b945050602061413f87828801613f03565b935050604061415087828801614031565b925050606085013567ffffffffffffffff811115614171576141706152bd565b5b61417d87828801613fad565b91505092959194509250565b600080604083850312156141a05761419f6152c2565b5b60006141ae85828601613f03565b92505060206141bf85828601613f6e565b9150509250929050565b600080604083850312156141e0576141df6152c2565b5b60006141ee85828601613f03565b92505060206141ff85828601614031565b9150509250929050565b600080602083850312156142205761421f6152c2565b5b600083013567ffffffffffffffff81111561423e5761423d6152bd565b5b61424a85828601613f18565b92509250509250929050565b60006020828403121561426c5761426b6152c2565b5b600061427a84828501613f6e565b91505092915050565b600060208284031215614299576142986152c2565b5b60006142a784828501613f83565b91505092915050565b6000602082840312156142c6576142c56152c2565b5b60006142d484828501613f98565b91505092915050565b600080602083850312156142f4576142f36152c2565b5b600083013567ffffffffffffffff811115614312576143116152bd565b5b61431e85828601613fdb565b92509250509250929050565b6000602082840312156143405761433f6152c2565b5b600061434e84828501614031565b91505092915050565b61436081614ffc565b82525050565b61436f8161500e565b82525050565b600061438082614ea4565b61438a8185614eba565b935061439a81856020860161507f565b6143a3816152c7565b840191505092915050565b60006143b982614eaf565b6143c38185614ecb565b93506143d381856020860161507f565b6143dc816152c7565b840191505092915050565b60006143f282614eaf565b6143fc8185614edc565b935061440c81856020860161507f565b80840191505092915050565b60008154614425816150b2565b61442f8186614edc565b9450600182166000811461444a576001811461445b5761448e565b60ff1983168652818601935061448e565b61446485614e8f565b60005b8381101561448657815481890152600182019150602081019050614467565b838801955050505b50505092915050565b60006144a4602383614ecb565b91506144af826152d8565b604082019050919050565b60006144c7602183614ecb565b91506144d282615327565b604082019050919050565b60006144ea602b83614ecb565b91506144f582615376565b604082019050919050565b600061450d603283614ecb565b9150614518826153c5565b604082019050919050565b6000614530602083614ecb565b915061453b82615414565b602082019050919050565b6000614553602683614ecb565b915061455e8261543d565b604082019050919050565b6000614576602083614ecb565b91506145818261548c565b602082019050919050565b6000614599601b83614ecb565b91506145a4826154b5565b602082019050919050565b60006145bc601c83614ecb565b91506145c7826154de565b602082019050919050565b60006145df601a83614ecb565b91506145ea82615507565b602082019050919050565b6000614602602483614ecb565b915061460d82615530565b604082019050919050565b6000614625601983614ecb565b91506146308261557f565b602082019050919050565b6000614648601383614ecb565b9150614653826155a8565b602082019050919050565b600061466b602c83614ecb565b9150614676826155d1565b604082019050919050565b600061468e601f83614ecb565b915061469982615620565b602082019050919050565b60006146b1601b83614ecb565b91506146bc82615649565b602082019050919050565b60006146d4603883614ecb565b91506146df82615672565b604082019050919050565b60006146f7602a83614ecb565b9150614702826156c1565b604082019050919050565b600061471a602983614ecb565b915061472582615710565b604082019050919050565b600061473d602083614ecb565b91506147488261575f565b602082019050919050565b6000614760602283614ecb565b915061476b82615788565b604082019050919050565b6000614783602c83614ecb565b915061478e826157d7565b604082019050919050565b60006147a6602083614ecb565b91506147b182615826565b602082019050919050565b60006147c9601e83614ecb565b91506147d48261584f565b602082019050919050565b60006147ec601583614ecb565b91506147f782615878565b602082019050919050565b600061480f602983614ecb565b915061481a826158a1565b604082019050919050565b6000614832602f83614ecb565b915061483d826158f0565b604082019050919050565b6000614855601783614ecb565b91506148608261593f565b602082019050919050565b6000614878602183614ecb565b915061488382615968565b604082019050919050565b600061489b603183614ecb565b91506148a6826159b7565b604082019050919050565b60006148be602c83614ecb565b91506148c982615a06565b604082019050919050565b60006148e1602683614ecb565b91506148ec82615a55565b604082019050919050565b6000614904601883614ecb565b915061490f82615aa4565b602082019050919050565b61492381615066565b82525050565b600061493582866143e7565b915061494182856143e7565b915061494d8284614418565b9150819050949350505050565b600060208201905061496f6000830184614357565b92915050565b600060808201905061498a6000830187614357565b6149976020830186614357565b6149a4604083018561491a565b81810360608301526149b68184614375565b905095945050505050565b60006020820190506149d66000830184614366565b92915050565b600060208201905081810360008301526149f681846143ae565b905092915050565b60006020820190508181036000830152614a1781614497565b9050919050565b60006020820190508181036000830152614a37816144ba565b9050919050565b60006020820190508181036000830152614a57816144dd565b9050919050565b60006020820190508181036000830152614a7781614500565b9050919050565b60006020820190508181036000830152614a9781614523565b9050919050565b60006020820190508181036000830152614ab781614546565b9050919050565b60006020820190508181036000830152614ad781614569565b9050919050565b60006020820190508181036000830152614af78161458c565b9050919050565b60006020820190508181036000830152614b17816145af565b9050919050565b60006020820190508181036000830152614b37816145d2565b9050919050565b60006020820190508181036000830152614b57816145f5565b9050919050565b60006020820190508181036000830152614b7781614618565b9050919050565b60006020820190508181036000830152614b978161463b565b9050919050565b60006020820190508181036000830152614bb78161465e565b9050919050565b60006020820190508181036000830152614bd781614681565b9050919050565b60006020820190508181036000830152614bf7816146a4565b9050919050565b60006020820190508181036000830152614c17816146c7565b9050919050565b60006020820190508181036000830152614c37816146ea565b9050919050565b60006020820190508181036000830152614c578161470d565b9050919050565b60006020820190508181036000830152614c7781614730565b9050919050565b60006020820190508181036000830152614c9781614753565b9050919050565b60006020820190508181036000830152614cb781614776565b9050919050565b60006020820190508181036000830152614cd781614799565b9050919050565b60006020820190508181036000830152614cf7816147bc565b9050919050565b60006020820190508181036000830152614d17816147df565b9050919050565b60006020820190508181036000830152614d3781614802565b9050919050565b60006020820190508181036000830152614d5781614825565b9050919050565b60006020820190508181036000830152614d7781614848565b9050919050565b60006020820190508181036000830152614d978161486b565b9050919050565b60006020820190508181036000830152614db78161488e565b9050919050565b60006020820190508181036000830152614dd7816148b1565b9050919050565b60006020820190508181036000830152614df7816148d4565b9050919050565b60006020820190508181036000830152614e17816148f7565b9050919050565b6000602082019050614e33600083018461491a565b92915050565b6000614e43614e54565b9050614e4f82826150e4565b919050565b6000604051905090565b600067ffffffffffffffff821115614e7957614e7861527a565b5b614e82826152c7565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614ef282615066565b9150614efd83615066565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614f3257614f3161518f565b5b828201905092915050565b6000614f4882615066565b9150614f5383615066565b925082614f6357614f626151be565b5b828204905092915050565b6000614f7982615066565b9150614f8483615066565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614fbd57614fbc61518f565b5b828202905092915050565b6000614fd382615066565b9150614fde83615066565b925082821015614ff157614ff061518f565b5b828203905092915050565b600061500782615046565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561509d578082015181840152602081019050615082565b838111156150ac576000848401525b50505050565b600060028204905060018216806150ca57607f821691505b602082108114156150de576150dd6151ed565b5b50919050565b6150ed826152c7565b810181811067ffffffffffffffff8211171561510c5761510b61527a565b5b80604052505050565b600061512082615066565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156151535761515261518f565b5b600182019050919050565b600061516982615066565b915061517483615066565b925082615184576151836151be565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f596f7572204d797374657220536b696e20697320616c7265616479206163746960008201527f76652e0000000000000000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564205075626c69632053616c60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f546865726520617265206e6f20746f6b656e73206c65667420746f2067696674600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d79737465727920536b696e7320617265206e6f742061637469766520796574600082015250565b7f5468697320776f756c642065786365656420746865206c696d69740000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4554482073656e74206973206e6f742073756666696369656e74000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d696e74696e67206973206e6f74206c69766500000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f596f7520617265206e6f74206f6e207468652050726553616c65204c69737400600082015250565b7f43616e6e6f742061646420746865206e756c6c20616464726573730000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f50757263686173652065786365656473207468652050726553616c65204c696d60008201527f6974000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c6973740000600082015250565b7f50726553616c65206973206e6f74206163746976650000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f546869732069736e277420796f7572205374616b65722e000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f596f7572204d797374657220536b696e20697320616c7265616479206465616360008201527f74697665642e0000000000000000000000000000000000000000000000000000602082015250565b7f546865726520617265206e6f20746f6b656e73206c6566740000000000000000600082015250565b615ad681614ffc565b8114615ae157600080fd5b50565b615aed8161500e565b8114615af857600080fd5b50565b615b048161501a565b8114615b0f57600080fd5b50565b615b1b81615066565b8114615b2657600080fd5b5056fea2646970667358221220abfb39cec9c1a347b15b1e6b3e884b2032562ece19eba98c900a3c58e25bc0e264736f6c63430008070033

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.