ETH Price: $2,967.06 (-4.13%)
Gas: 2 Gwei

Token

Slim Salamander Squad (SSS)
 

Overview

Max Total Supply

84 SSS

Holders

62

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 SSS
0x28e5997d1d69773f1303c9ad4f31d0cf7d130ee6
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:
SlimSalamanderSquad

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

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




pragma solidity ^0.8.2;

import "@openzeppelin/[email protected]/token/ERC721/ERC721.sol";
import "@openzeppelin/[email protected]/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/[email protected]/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/[email protected]/access/Ownable.sol";

/**
███╗   ██╗███████╗████████╗██╗  ██╗██╗███╗   ██╗ ██████╗ ███╗   ███╗ █████╗ ██╗  ██╗███████╗██████╗     ██████╗ ██████╗ ███╗   ███╗
████╗  ██║██╔════╝╚══██╔══╝██║ ██╔╝██║█S███╗  ██║██╔════╝ ████╗ ████║██╔══██╗██║ ██╔╝██╔════╝██╔══██╗   ██╔════╝██╔═══██╗████╗ ████║
██╔██╗ ██║█████╗     ██║   █████╔╝ ██║██╔██╗ ██║██║  ███╗██╔████╔██║███████║█████╔╝ █████╗  ██████╔╝   ██║     ██║   ██║██╔████╔██║
██║╚██╗██║██╔══╝     ██║   ██╔═██╗ ██║██║╚██╗██║██║   ██║██║╚██╔╝██║██╔══██║██╔═██╗ ██╔══╝  ██╔══██╗   ██║     ██║   ██║██║╚██╔╝██║
██║ ╚████║██║        ██║   ██║  ██╗██║██║ ╚████║╚██████╔╝██║ ╚═╝ ██║██║  ██║██║  ██╗███████╗██║  ██║██╗╚██████╗╚██████╔╝██║ ╚═╝ ██║
╚═╝  ╚═══╝╚═╝        ╚═╝   ╚═╝  ╚═╝╚═╝╚═╝  ╚═══╝ ╚═════╝ ╚═╝     ╚═╝╚═╝  ╚═╝╚═╝  ╚═╝╚══════╝╚═╝  ╚═╝╚═╝ ╚═════╝ ╚═════╝ ╚═╝     ╚═╝
                                                                                                                                   */


contract SlimSalamanderSquad is ERC721, ERC721Enumerable, ERC721Burnable, Ownable {
    using Strings for uint256;
    
    // Set variables
    
    uint256 public SSS_SUPPLY = 10000;
    uint256 public SSS_PRICE = 60000000000000000 wei;
    bool private _saleActive = false;
    bool private _presaleActive = false;
    uint256 public constant presale_supply = 1000;
    uint256 public  maxtxinpresale = 20;
    uint256 public  maxtxinsale = 30;
    bool public iswhitelistrequired= true;
    mapping(address => bool) public whitelist;
    address ownerrr= 0xE01BffaE3d183440DD2224C9c2433c14b9F0C041;
    address nftkingmaker= 0x0ECbE30790B6a690D4088B70dCC27664ca530D55;



    string public _metaBaseUri = "https://slimsalamandersquad.com/unreveal/sss/";
    
    // Public Functions
    
    constructor() ERC721("Slim Salamander Squad", "SSS") {
        
        
    }
    
    function PUBLICSALEMINT(uint16 numberOfTokens) public payable {
        require(_saleActive==true, "SSS sale not active");
        require((totalSupply() + numberOfTokens) <= SSS_SUPPLY, "Sold Out");
        require((SSS_PRICE *numberOfTokens) <= msg.value, "Ether amount sent is incorrect");
        require(numberOfTokens<=maxtxinsale, "Max 30 are allowed" );

        _mintTokens(numberOfTokens);
    }
    
     function PRESALEMINT(uint16 numberOfTokens) public payable {
        require(_presaleActive==true, "Presale Of SSS is not active");
         if(iswhitelistrequired==true){
        require(whitelist[(msg.sender)]== true, "Not whitelisted is not active");
         }
         if(iswhitelistrequired==false){
        
        require((totalSupply()+numberOfTokens) <= presale_supply, "Insufficient supply, Try in public sale");
        require((SSS_PRICE *numberOfTokens) <= msg.value, "Ether amount sent is incorrect");
        require(numberOfTokens<=maxtxinpresale, "Max 20 are allowed" );
        _mintTokens(numberOfTokens);
    
         
         }
         
     }
    
    
    function mintgiveaway(address notforyou , uint16 numberOfTokens) external onlyOwner {
          for (uint16 i = 0; i < numberOfTokens; i++) {
            uint256 tokenId = totalSupply();
            _safeMint(notforyou, tokenId);
        }
    }
    
    function isSaleActive() public view returns (bool) {
        return _saleActive;
    }
    
    function ispreSaleActive() public view returns (bool) {
        return _presaleActive;
    }

    function tokenURI(uint256 tokenId) override public view returns (string memory) {
        return string(abi.encodePacked(_baseURI(), "", uint256(tokenId).toString()));
    }
    
    // Owner Functions

    function Changesalestatus() public onlyOwner {
        _saleActive = !_saleActive;
    }
    
    function shouldrequirewhitelist() public onlyOwner {
        iswhitelistrequired = !iswhitelistrequired;
    }
    
    function Changepresalestatus() public onlyOwner {
        _presaleActive = !_presaleActive;
    }

    function setMetaBaseURI(string memory baseURI) external onlyOwner {
        _metaBaseUri = baseURI;
    }
    
    function setsupply(uint256 _SSSupply ) external onlyOwner {
        SSS_SUPPLY = _SSSupply;
    }
    
    function withdrawAll() external onlyOwner {
        
                uint256 _70percent = address(this).balance*70/100;
                uint256 _30percent = address(this).balance*30/100;
                require(payable(ownerrr).send(_70percent));
                require(payable(nftkingmaker).send(_30percent));    
        
    }

    // Internal Functions
    
    function _mintTokens(uint16 numberOfTokens) internal {
        for (uint16 i = 0; i < numberOfTokens; i++) {
            uint256 tokenId = totalSupply();
            _safeMint(msg.sender, tokenId);
        }
    }

    function _baseURI() override internal view returns (string memory) {
        return _metaBaseUri;
    }
    
    function addaddrtowhitelist(address[] memory _address) public onlyOwner {
        for (uint256 i = 0; i < _address.length ; i++){
            whitelist[_address[i]] = true;
    }}
    
    function removeaddrfromwhitelist(address[] memory _address) public onlyOwner {
        for (uint256 i = 0; i < _address.length ; i++){
            whitelist[_address[i]] = false;
    }}
    
    
    function veiwifwhitelisted(address _address) public view returns (bool) {
       return whitelist[_address];
    }
    

    // The following functions are overrides required by Solidity.

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

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

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

pragma solidity ^0.8.0;

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

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

File 4 of 14 : 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 14 : 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 14 : 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 14 : 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 8 of 14 : 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 9 of 14 : 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 10 of 14 : 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 11 of 14 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 12 of 14 : 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 13 of 14 : 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 14 of 14 : 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",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Changepresalestatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"Changesalestatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"numberOfTokens","type":"uint16"}],"name":"PRESALEMINT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"numberOfTokens","type":"uint16"}],"name":"PUBLICSALEMINT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"SSS_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SSS_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_metaBaseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_address","type":"address[]"}],"name":"addaddrtowhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","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":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ispreSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"iswhitelistrequired","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxtxinpresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxtxinsale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"notforyou","type":"address"},{"internalType":"uint16","name":"numberOfTokens","type":"uint16"}],"name":"mintgiveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_address","type":"address[]"}],"name":"removeaddrfromwhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setMetaBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_SSSupply","type":"uint256"}],"name":"setsupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"shouldrequirewhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"veiwifwhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052612710600b5566d529ae9e860000600c556000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055506014600e55601e600f556001601060006101000a81548160ff02191690831515021790555073e01bffae3d183440dd2224c9c2433c14b9f0c041601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550730ecbe30790b6a690d4088b70dcc27664ca530d55601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060600160405280602d8152602001620051f0602d9139601490805190602001906200014b929190620002ee565b503480156200015957600080fd5b506040518060400160405280601581526020017f536c696d2053616c616d616e64657220537175616400000000000000000000008152506040518060400160405280600381526020017f53535300000000000000000000000000000000000000000000000000000000008152508160009080519060200190620001de929190620002ee565b508060019080519060200190620001f7929190620002ee565b5050506200021a6200020e6200022060201b60201c565b6200022860201b60201c565b62000403565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002fc906200039e565b90600052602060002090601f0160209004810192826200032057600085556200036c565b82601f106200033b57805160ff19168380011785556200036c565b828001600101855582156200036c579182015b828111156200036b5782518255916020019190600101906200034e565b5b5090506200037b91906200037f565b5090565b5b808211156200039a57600081600090555060010162000380565b5090565b60006002820490506001821680620003b757607f821691505b60208210811415620003ce57620003cd620003d4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614ddd80620004136000396000f3fe6080604052600436106102515760003560e01c80636352211e11610139578063b506848a116100b6578063d878fe101161007a578063d878fe1014610884578063df93d2a3146108ad578063e603d9b6146108c4578063e985e9c5146108ed578063eaeb7dda1461092a578063f2fde38b1461095557610251565b8063b506848a1461079a578063b88d4fde146107d7578063c5face6214610800578063c87b56dd1461082b578063ce4a61c61461086857610251565b80638ac05555116100fd5780638ac05555146106b55780638da5cb5b146106de57806395d89b41146107095780639b19251a14610734578063a22cb4651461077157610251565b80636352211e146105e25780636a33bb451461061f57806370a082311461064a578063715018a614610687578063853828b61461069e57610251565b80632f745c59116101d257806346d10fc31161019657806346d10fc31461050557806349e7cb501461051c5780634f6ccce714610538578063564566a81461057557806356ce7878146105a05780635ae77b43146105cb57610251565b80632f745c59146104225780633792ee011461045f5780633b871a321461048857806342842e0e146104b357806342966c68146104dc57610251565b806318160ddd1161021957806318160ddd1461034f57806318d272eb1461037a5780631d88edde146103a357806323b872dd146103ce57806324eedd4c146103f757610251565b806301ffc9a71461025657806303b268651461029357806306fdde03146102be578063081812fc146102e9578063095ea7b314610326575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613806565b61097e565b60405161028a9190613e1a565b60405180910390f35b34801561029f57600080fd5b506102a8610990565b6040516102b59190613e35565b60405180910390f35b3480156102ca57600080fd5b506102d3610a1e565b6040516102e09190613e35565b60405180910390f35b3480156102f557600080fd5b50610310600480360381019061030b91906138d6565b610ab0565b60405161031d9190613db3565b60405180910390f35b34801561033257600080fd5b5061034d6004803603810190610348919061377d565b610b35565b005b34801561035b57600080fd5b50610364610c4d565b6040516103719190614197565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c9190613860565b610c5a565b005b3480156103af57600080fd5b506103b8610cf0565b6040516103c59190614197565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f09190613627565b610cf6565b005b34801561040357600080fd5b5061040c610d56565b6040516104199190614197565b60405180910390f35b34801561042e57600080fd5b506104496004803603810190610444919061377d565b610d5c565b6040516104569190614197565b60405180910390f35b34801561046b57600080fd5b506104866004803603810190610481919061373d565b610e01565b005b34801561049457600080fd5b5061049d610ebf565b6040516104aa9190614197565b60405180910390f35b3480156104bf57600080fd5b506104da60048036038101906104d59190613627565b610ec5565b005b3480156104e857600080fd5b5061050360048036038101906104fe91906138d6565b610ee5565b005b34801561051157600080fd5b5061051a610f41565b005b610536600480360381019061053191906138a9565b610fe9565b005b34801561054457600080fd5b5061055f600480360381019061055a91906138d6565b611143565b60405161056c9190614197565b60405180910390f35b34801561058157600080fd5b5061058a6111b4565b6040516105979190613e1a565b60405180910390f35b3480156105ac57600080fd5b506105b56111cb565b6040516105c29190614197565b60405180910390f35b3480156105d757600080fd5b506105e06111d1565b005b3480156105ee57600080fd5b50610609600480360381019061060491906138d6565b611279565b6040516106169190613db3565b60405180910390f35b34801561062b57600080fd5b5061063461132b565b6040516106419190614197565b60405180910390f35b34801561065657600080fd5b50610671600480360381019061066c91906135ba565b611331565b60405161067e9190614197565b60405180910390f35b34801561069357600080fd5b5061069c6113e9565b005b3480156106aa57600080fd5b506106b3611471565b005b3480156106c157600080fd5b506106dc60048036038101906106d791906137bd565b6115eb565b005b3480156106ea57600080fd5b506106f36116fc565b6040516107009190613db3565b60405180910390f35b34801561071557600080fd5b5061071e611726565b60405161072b9190613e35565b60405180910390f35b34801561074057600080fd5b5061075b600480360381019061075691906135ba565b6117b8565b6040516107689190613e1a565b60405180910390f35b34801561077d57600080fd5b50610798600480360381019061079391906136fd565b6117d8565b005b3480156107a657600080fd5b506107c160048036038101906107bc91906135ba565b611959565b6040516107ce9190613e1a565b60405180910390f35b3480156107e357600080fd5b506107fe60048036038101906107f9919061367a565b6119af565b005b34801561080c57600080fd5b50610815611a11565b6040516108229190613e1a565b60405180910390f35b34801561083757600080fd5b50610852600480360381019061084d91906138d6565b611a24565b60405161085f9190613e35565b60405180910390f35b610882600480360381019061087d91906138a9565b611a5e565b005b34801561089057600080fd5b506108ab60048036038101906108a691906138d6565b611c85565b005b3480156108b957600080fd5b506108c2611d0b565b005b3480156108d057600080fd5b506108eb60048036038101906108e691906137bd565b611db3565b005b3480156108f957600080fd5b50610914600480360381019061090f91906135e7565b611ec4565b6040516109219190613e1a565b60405180910390f35b34801561093657600080fd5b5061093f611f58565b60405161094c9190613e1a565b60405180910390f35b34801561096157600080fd5b5061097c600480360381019061097791906135ba565b611f6f565b005b600061098982612067565b9050919050565b6014805461099d90614481565b80601f01602080910402602001604051908101604052809291908181526020018280546109c990614481565b8015610a165780601f106109eb57610100808354040283529160200191610a16565b820191906000526020600020905b8154815290600101906020018083116109f957829003601f168201915b505050505081565b606060008054610a2d90614481565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5990614481565b8015610aa65780601f10610a7b57610100808354040283529160200191610aa6565b820191906000526020600020905b815481529060010190602001808311610a8957829003601f168201915b5050505050905090565b6000610abb826120e1565b610afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af190613ff7565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b4082611279565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba890614097565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bd061214d565b73ffffffffffffffffffffffffffffffffffffffff161480610bff5750610bfe81610bf961214d565b611ec4565b5b610c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3590613f77565b60405180910390fd5b610c488383612155565b505050565b6000600880549050905090565b610c6261214d565b73ffffffffffffffffffffffffffffffffffffffff16610c806116fc565b73ffffffffffffffffffffffffffffffffffffffff1614610cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccd90614017565b60405180910390fd5b8060149080519060200190610cec92919061331b565b5050565b600e5481565b610d07610d0161214d565b8261220e565b610d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3d906140f7565b60405180910390fd5b610d518383836122ec565b505050565b6103e881565b6000610d6783611331565b8210610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9f90613e57565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610e0961214d565b73ffffffffffffffffffffffffffffffffffffffff16610e276116fc565b73ffffffffffffffffffffffffffffffffffffffff1614610e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7490614017565b60405180910390fd5b60005b8161ffff168161ffff161015610eba576000610e9a610c4d565b9050610ea68482612548565b508080610eb2906144e4565b915050610e80565b505050565b600f5481565b610ee0838383604051806020016040528060008152506119af565b505050565b610ef6610ef061214d565b8261220e565b610f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2c90614177565b60405180910390fd5b610f3e81612566565b50565b610f4961214d565b73ffffffffffffffffffffffffffffffffffffffff16610f676116fc565b73ffffffffffffffffffffffffffffffffffffffff1614610fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb490614017565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b60011515600d60009054906101000a900460ff1615151461103f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103690614077565b60405180910390fd5b600b548161ffff1661104f610c4d565b61105991906142a8565b111561109a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109190613e97565b60405180910390fd5b348161ffff16600c546110ad919061432f565b11156110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e590614157565b60405180910390fd5b600f548161ffff161115611137576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112e90614137565b60405180910390fd5b61114081612677565b50565b600061114d610c4d565b821061118e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118590614117565b60405180910390fd5b600882815481106111a2576111a1614645565b5b90600052602060002001549050919050565b6000600d60009054906101000a900460ff16905090565b600b5481565b6111d961214d565b73ffffffffffffffffffffffffffffffffffffffff166111f76116fc565b73ffffffffffffffffffffffffffffffffffffffff161461124d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124490614017565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611322576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131990613fb7565b60405180910390fd5b80915050919050565b600c5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139990613f97565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113f161214d565b73ffffffffffffffffffffffffffffffffffffffff1661140f6116fc565b73ffffffffffffffffffffffffffffffffffffffff1614611465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145c90614017565b60405180910390fd5b61146f60006126b8565b565b61147961214d565b73ffffffffffffffffffffffffffffffffffffffff166114976116fc565b73ffffffffffffffffffffffffffffffffffffffff16146114ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e490614017565b60405180910390fd5b600060646046476114fe919061432f565b61150891906142fe565b905060006064601e4761151b919061432f565b61152591906142fe565b9050601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505061158757600080fd5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506115e757600080fd5b5050565b6115f361214d565b73ffffffffffffffffffffffffffffffffffffffff166116116116fc565b73ffffffffffffffffffffffffffffffffffffffff1614611667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165e90614017565b60405180910390fd5b60005b81518110156116f85760016011600084848151811061168c5761168b614645565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806116f09061450f565b91505061166a565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461173590614481565b80601f016020809104026020016040519081016040528092919081815260200182805461176190614481565b80156117ae5780601f10611783576101008083540402835291602001916117ae565b820191906000526020600020905b81548152906001019060200180831161179157829003601f168201915b5050505050905090565b60116020528060005260406000206000915054906101000a900460ff1681565b6117e061214d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561184e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184590613f17565b60405180910390fd5b806005600061185b61214d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661190861214d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161194d9190613e1a565b60405180910390a35050565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6119c06119ba61214d565b8361220e565b6119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f6906140f7565b60405180910390fd5b611a0b8484848461277e565b50505050565b601060009054906101000a900460ff1681565b6060611a2e6127da565b611a378361286c565b604051602001611a48929190613d84565b6040516020818303038152906040529050919050565b60011515600d60019054906101000a900460ff16151514611ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aab90614057565b60405180910390fd5b60011515601060009054906101000a900460ff1615151415611b645760011515601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5a906140d7565b60405180910390fd5b5b60001515601060009054906101000a900460ff1615151415611c82576103e88161ffff16611b90610c4d565b611b9a91906142a8565b1115611bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd290613f57565b60405180910390fd5b348161ffff16600c54611bee919061432f565b1115611c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2690614157565b60405180910390fd5b600e548161ffff161115611c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6f906140b7565b60405180910390fd5b611c8181612677565b5b50565b611c8d61214d565b73ffffffffffffffffffffffffffffffffffffffff16611cab6116fc565b73ffffffffffffffffffffffffffffffffffffffff1614611d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf890614017565b60405180910390fd5b80600b8190555050565b611d1361214d565b73ffffffffffffffffffffffffffffffffffffffff16611d316116fc565b73ffffffffffffffffffffffffffffffffffffffff1614611d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7e90614017565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b611dbb61214d565b73ffffffffffffffffffffffffffffffffffffffff16611dd96116fc565b73ffffffffffffffffffffffffffffffffffffffff1614611e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2690614017565b60405180910390fd5b60005b8151811015611ec057600060116000848481518110611e5457611e53614645565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611eb89061450f565b915050611e32565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600d60019054906101000a900460ff16905090565b611f7761214d565b73ffffffffffffffffffffffffffffffffffffffff16611f956116fc565b73ffffffffffffffffffffffffffffffffffffffff1614611feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe290614017565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561205b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205290613eb7565b60405180910390fd5b612064816126b8565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806120da57506120d9826129cd565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166121c883611279565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612219826120e1565b612258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224f90613f37565b60405180910390fd5b600061226383611279565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806122d257508373ffffffffffffffffffffffffffffffffffffffff166122ba84610ab0565b73ffffffffffffffffffffffffffffffffffffffff16145b806122e357506122e28185611ec4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661230c82611279565b73ffffffffffffffffffffffffffffffffffffffff1614612362576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235990614037565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c990613ef7565b60405180910390fd5b6123dd838383612aaf565b6123e8600082612155565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124389190614389565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461248f91906142a8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612562828260405180602001604052806000815250612abf565b5050565b600061257182611279565b905061257f81600084612aaf565b61258a600083612155565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125da9190614389565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60005b8161ffff168161ffff1610156126b4576000612694610c4d565b90506126a03382612548565b5080806126ac906144e4565b91505061267a565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6127898484846122ec565b61279584848484612b1a565b6127d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127cb90613e77565b60405180910390fd5b50505050565b6060601480546127e990614481565b80601f016020809104026020016040519081016040528092919081815260200182805461281590614481565b80156128625780601f1061283757610100808354040283529160200191612862565b820191906000526020600020905b81548152906001019060200180831161284557829003601f168201915b5050505050905090565b606060008214156128b4576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129c8565b600082905060005b600082146128e65780806128cf9061450f565b915050600a826128df91906142fe565b91506128bc565b60008167ffffffffffffffff81111561290257612901614674565b5b6040519080825280601f01601f1916602001820160405280156129345781602001600182028036833780820191505090505b5090505b600085146129c15760018261294d9190614389565b9150600a8561295c9190614558565b603061296891906142a8565b60f81b81838151811061297e5761297d614645565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129ba91906142fe565b9450612938565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612a9857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612aa85750612aa782612cb1565b5b9050919050565b612aba838383612d1b565b505050565b612ac98383612e2f565b612ad66000848484612b1a565b612b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0c90613e77565b60405180910390fd5b505050565b6000612b3b8473ffffffffffffffffffffffffffffffffffffffff16612ffd565b15612ca4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b6461214d565b8786866040518563ffffffff1660e01b8152600401612b869493929190613dce565b602060405180830381600087803b158015612ba057600080fd5b505af1925050508015612bd157506040513d601f19601f82011682018060405250810190612bce9190613833565b60015b612c54573d8060008114612c01576040519150601f19603f3d011682016040523d82523d6000602084013e612c06565b606091505b50600081511415612c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4390613e77565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ca9565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612d26838383613010565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612d6957612d6481613015565b612da8565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612da757612da6838261305e565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612deb57612de6816131cb565b612e2a565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612e2957612e28828261329c565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9690613fd7565b60405180910390fd5b612ea8816120e1565b15612ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612edf90613ed7565b60405180910390fd5b612ef460008383612aaf565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f4491906142a8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161306b84611331565b6130759190614389565b905060006007600084815260200190815260200160002054905081811461315a576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506131df9190614389565b905060006009600084815260200190815260200160002054905060006008838154811061320f5761320e614645565b5b90600052602060002001549050806008838154811061323157613230614645565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806132805761327f614616565b5b6001900381819060005260206000200160009055905550505050565b60006132a783611331565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461332790614481565b90600052602060002090601f0160209004810192826133495760008555613390565b82601f1061336257805160ff1916838001178555613390565b82800160010185558215613390579182015b8281111561338f578251825591602001919060010190613374565b5b50905061339d91906133a1565b5090565b5b808211156133ba5760008160009055506001016133a2565b5090565b60006133d16133cc846141d7565b6141b2565b905080838252602082019050828560208602820111156133f4576133f36146a8565b5b60005b85811015613424578161340a88826134b2565b8452602084019350602083019250506001810190506133f7565b5050509392505050565b600061344161343c84614203565b6141b2565b90508281526020810184848401111561345d5761345c6146ad565b5b61346884828561443f565b509392505050565b600061348361347e84614234565b6141b2565b90508281526020810184848401111561349f5761349e6146ad565b5b6134aa84828561443f565b509392505050565b6000813590506134c181614d34565b92915050565b600082601f8301126134dc576134db6146a3565b5b81356134ec8482602086016133be565b91505092915050565b60008135905061350481614d4b565b92915050565b60008135905061351981614d62565b92915050565b60008151905061352e81614d62565b92915050565b600082601f830112613549576135486146a3565b5b813561355984826020860161342e565b91505092915050565b600082601f830112613577576135766146a3565b5b8135613587848260208601613470565b91505092915050565b60008135905061359f81614d79565b92915050565b6000813590506135b481614d90565b92915050565b6000602082840312156135d0576135cf6146b7565b5b60006135de848285016134b2565b91505092915050565b600080604083850312156135fe576135fd6146b7565b5b600061360c858286016134b2565b925050602061361d858286016134b2565b9150509250929050565b6000806000606084860312156136405761363f6146b7565b5b600061364e868287016134b2565b935050602061365f868287016134b2565b9250506040613670868287016135a5565b9150509250925092565b60008060008060808587031215613694576136936146b7565b5b60006136a2878288016134b2565b94505060206136b3878288016134b2565b93505060406136c4878288016135a5565b925050606085013567ffffffffffffffff8111156136e5576136e46146b2565b5b6136f187828801613534565b91505092959194509250565b60008060408385031215613714576137136146b7565b5b6000613722858286016134b2565b9250506020613733858286016134f5565b9150509250929050565b60008060408385031215613754576137536146b7565b5b6000613762858286016134b2565b925050602061377385828601613590565b9150509250929050565b60008060408385031215613794576137936146b7565b5b60006137a2858286016134b2565b92505060206137b3858286016135a5565b9150509250929050565b6000602082840312156137d3576137d26146b7565b5b600082013567ffffffffffffffff8111156137f1576137f06146b2565b5b6137fd848285016134c7565b91505092915050565b60006020828403121561381c5761381b6146b7565b5b600061382a8482850161350a565b91505092915050565b600060208284031215613849576138486146b7565b5b60006138578482850161351f565b91505092915050565b600060208284031215613876576138756146b7565b5b600082013567ffffffffffffffff811115613894576138936146b2565b5b6138a084828501613562565b91505092915050565b6000602082840312156138bf576138be6146b7565b5b60006138cd84828501613590565b91505092915050565b6000602082840312156138ec576138eb6146b7565b5b60006138fa848285016135a5565b91505092915050565b61390c816143bd565b82525050565b61391b816143cf565b82525050565b600061392c82614265565b613936818561427b565b935061394681856020860161444e565b61394f816146bc565b840191505092915050565b600061396582614270565b61396f818561428c565b935061397f81856020860161444e565b613988816146bc565b840191505092915050565b600061399e82614270565b6139a8818561429d565b93506139b881856020860161444e565b80840191505092915050565b60006139d1602b8361428c565b91506139dc826146cd565b604082019050919050565b60006139f460328361428c565b91506139ff8261471c565b604082019050919050565b6000613a1760088361428c565b9150613a228261476b565b602082019050919050565b6000613a3a60268361428c565b9150613a4582614794565b604082019050919050565b6000613a5d601c8361428c565b9150613a68826147e3565b602082019050919050565b6000613a8060248361428c565b9150613a8b8261480c565b604082019050919050565b6000613aa360198361428c565b9150613aae8261485b565b602082019050919050565b6000613ac6602c8361428c565b9150613ad182614884565b604082019050919050565b6000613ae960278361428c565b9150613af4826148d3565b604082019050919050565b6000613b0c60388361428c565b9150613b1782614922565b604082019050919050565b6000613b2f602a8361428c565b9150613b3a82614971565b604082019050919050565b6000613b5260298361428c565b9150613b5d826149c0565b604082019050919050565b6000613b7560208361428c565b9150613b8082614a0f565b602082019050919050565b6000613b98602c8361428c565b9150613ba382614a38565b604082019050919050565b6000613bbb60208361428c565b9150613bc682614a87565b602082019050919050565b6000613bde60298361428c565b9150613be982614ab0565b604082019050919050565b6000613c01601c8361428c565b9150613c0c82614aff565b602082019050919050565b6000613c2460138361428c565b9150613c2f82614b28565b602082019050919050565b6000613c4760218361428c565b9150613c5282614b51565b604082019050919050565b6000613c6a60128361428c565b9150613c7582614ba0565b602082019050919050565b6000613c8d601d8361428c565b9150613c9882614bc9565b602082019050919050565b6000613cb060008361429d565b9150613cbb82614bf2565b600082019050919050565b6000613cd360318361428c565b9150613cde82614bf5565b604082019050919050565b6000613cf6602c8361428c565b9150613d0182614c44565b604082019050919050565b6000613d1960128361428c565b9150613d2482614c93565b602082019050919050565b6000613d3c601e8361428c565b9150613d4782614cbc565b602082019050919050565b6000613d5f60308361428c565b9150613d6a82614ce5565b604082019050919050565b613d7e81614435565b82525050565b6000613d908285613993565b9150613d9b82613ca3565b9150613da78284613993565b91508190509392505050565b6000602082019050613dc86000830184613903565b92915050565b6000608082019050613de36000830187613903565b613df06020830186613903565b613dfd6040830185613d75565b8181036060830152613e0f8184613921565b905095945050505050565b6000602082019050613e2f6000830184613912565b92915050565b60006020820190508181036000830152613e4f818461395a565b905092915050565b60006020820190508181036000830152613e70816139c4565b9050919050565b60006020820190508181036000830152613e90816139e7565b9050919050565b60006020820190508181036000830152613eb081613a0a565b9050919050565b60006020820190508181036000830152613ed081613a2d565b9050919050565b60006020820190508181036000830152613ef081613a50565b9050919050565b60006020820190508181036000830152613f1081613a73565b9050919050565b60006020820190508181036000830152613f3081613a96565b9050919050565b60006020820190508181036000830152613f5081613ab9565b9050919050565b60006020820190508181036000830152613f7081613adc565b9050919050565b60006020820190508181036000830152613f9081613aff565b9050919050565b60006020820190508181036000830152613fb081613b22565b9050919050565b60006020820190508181036000830152613fd081613b45565b9050919050565b60006020820190508181036000830152613ff081613b68565b9050919050565b6000602082019050818103600083015261401081613b8b565b9050919050565b6000602082019050818103600083015261403081613bae565b9050919050565b6000602082019050818103600083015261405081613bd1565b9050919050565b6000602082019050818103600083015261407081613bf4565b9050919050565b6000602082019050818103600083015261409081613c17565b9050919050565b600060208201905081810360008301526140b081613c3a565b9050919050565b600060208201905081810360008301526140d081613c5d565b9050919050565b600060208201905081810360008301526140f081613c80565b9050919050565b6000602082019050818103600083015261411081613cc6565b9050919050565b6000602082019050818103600083015261413081613ce9565b9050919050565b6000602082019050818103600083015261415081613d0c565b9050919050565b6000602082019050818103600083015261417081613d2f565b9050919050565b6000602082019050818103600083015261419081613d52565b9050919050565b60006020820190506141ac6000830184613d75565b92915050565b60006141bc6141cd565b90506141c882826144b3565b919050565b6000604051905090565b600067ffffffffffffffff8211156141f2576141f1614674565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561421e5761421d614674565b5b614227826146bc565b9050602081019050919050565b600067ffffffffffffffff82111561424f5761424e614674565b5b614258826146bc565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006142b382614435565b91506142be83614435565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142f3576142f2614589565b5b828201905092915050565b600061430982614435565b915061431483614435565b925082614324576143236145b8565b5b828204905092915050565b600061433a82614435565b915061434583614435565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561437e5761437d614589565b5b828202905092915050565b600061439482614435565b915061439f83614435565b9250828210156143b2576143b1614589565b5b828203905092915050565b60006143c882614415565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561446c578082015181840152602081019050614451565b8381111561447b576000848401525b50505050565b6000600282049050600182168061449957607f821691505b602082108114156144ad576144ac6145e7565b5b50919050565b6144bc826146bc565b810181811067ffffffffffffffff821117156144db576144da614674565b5b80604052505050565b60006144ef82614407565b915061ffff82141561450457614503614589565b5b600182019050919050565b600061451a82614435565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561454d5761454c614589565b5b600182019050919050565b600061456382614435565b915061456e83614435565b92508261457e5761457d6145b8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f536f6c64204f7574000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e7420737570706c792c2054727920696e207075626c60008201527f69632073616c6500000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f50726573616c65204f6620535353206973206e6f742061637469766500000000600082015250565b7f5353532073616c65206e6f742061637469766500000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d61782032302061726520616c6c6f7765640000000000000000000000000000600082015250565b7f4e6f742077686974656c6973746564206973206e6f7420616374697665000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4d61782033302061726520616c6c6f7765640000000000000000000000000000600082015250565b7f457468657220616d6f756e742073656e7420697320696e636f72726563740000600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b614d3d816143bd565b8114614d4857600080fd5b50565b614d54816143cf565b8114614d5f57600080fd5b50565b614d6b816143db565b8114614d7657600080fd5b50565b614d8281614407565b8114614d8d57600080fd5b50565b614d9981614435565b8114614da457600080fd5b5056fea2646970667358221220c23b663fb682e1a3aca834b51700e421cf0e7786e3563db9ce8a237df7ea4d6464736f6c6343000807003368747470733a2f2f736c696d73616c616d616e64657273717561642e636f6d2f756e72657665616c2f7373732f

Deployed Bytecode

0x6080604052600436106102515760003560e01c80636352211e11610139578063b506848a116100b6578063d878fe101161007a578063d878fe1014610884578063df93d2a3146108ad578063e603d9b6146108c4578063e985e9c5146108ed578063eaeb7dda1461092a578063f2fde38b1461095557610251565b8063b506848a1461079a578063b88d4fde146107d7578063c5face6214610800578063c87b56dd1461082b578063ce4a61c61461086857610251565b80638ac05555116100fd5780638ac05555146106b55780638da5cb5b146106de57806395d89b41146107095780639b19251a14610734578063a22cb4651461077157610251565b80636352211e146105e25780636a33bb451461061f57806370a082311461064a578063715018a614610687578063853828b61461069e57610251565b80632f745c59116101d257806346d10fc31161019657806346d10fc31461050557806349e7cb501461051c5780634f6ccce714610538578063564566a81461057557806356ce7878146105a05780635ae77b43146105cb57610251565b80632f745c59146104225780633792ee011461045f5780633b871a321461048857806342842e0e146104b357806342966c68146104dc57610251565b806318160ddd1161021957806318160ddd1461034f57806318d272eb1461037a5780631d88edde146103a357806323b872dd146103ce57806324eedd4c146103f757610251565b806301ffc9a71461025657806303b268651461029357806306fdde03146102be578063081812fc146102e9578063095ea7b314610326575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613806565b61097e565b60405161028a9190613e1a565b60405180910390f35b34801561029f57600080fd5b506102a8610990565b6040516102b59190613e35565b60405180910390f35b3480156102ca57600080fd5b506102d3610a1e565b6040516102e09190613e35565b60405180910390f35b3480156102f557600080fd5b50610310600480360381019061030b91906138d6565b610ab0565b60405161031d9190613db3565b60405180910390f35b34801561033257600080fd5b5061034d6004803603810190610348919061377d565b610b35565b005b34801561035b57600080fd5b50610364610c4d565b6040516103719190614197565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c9190613860565b610c5a565b005b3480156103af57600080fd5b506103b8610cf0565b6040516103c59190614197565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f09190613627565b610cf6565b005b34801561040357600080fd5b5061040c610d56565b6040516104199190614197565b60405180910390f35b34801561042e57600080fd5b506104496004803603810190610444919061377d565b610d5c565b6040516104569190614197565b60405180910390f35b34801561046b57600080fd5b506104866004803603810190610481919061373d565b610e01565b005b34801561049457600080fd5b5061049d610ebf565b6040516104aa9190614197565b60405180910390f35b3480156104bf57600080fd5b506104da60048036038101906104d59190613627565b610ec5565b005b3480156104e857600080fd5b5061050360048036038101906104fe91906138d6565b610ee5565b005b34801561051157600080fd5b5061051a610f41565b005b610536600480360381019061053191906138a9565b610fe9565b005b34801561054457600080fd5b5061055f600480360381019061055a91906138d6565b611143565b60405161056c9190614197565b60405180910390f35b34801561058157600080fd5b5061058a6111b4565b6040516105979190613e1a565b60405180910390f35b3480156105ac57600080fd5b506105b56111cb565b6040516105c29190614197565b60405180910390f35b3480156105d757600080fd5b506105e06111d1565b005b3480156105ee57600080fd5b50610609600480360381019061060491906138d6565b611279565b6040516106169190613db3565b60405180910390f35b34801561062b57600080fd5b5061063461132b565b6040516106419190614197565b60405180910390f35b34801561065657600080fd5b50610671600480360381019061066c91906135ba565b611331565b60405161067e9190614197565b60405180910390f35b34801561069357600080fd5b5061069c6113e9565b005b3480156106aa57600080fd5b506106b3611471565b005b3480156106c157600080fd5b506106dc60048036038101906106d791906137bd565b6115eb565b005b3480156106ea57600080fd5b506106f36116fc565b6040516107009190613db3565b60405180910390f35b34801561071557600080fd5b5061071e611726565b60405161072b9190613e35565b60405180910390f35b34801561074057600080fd5b5061075b600480360381019061075691906135ba565b6117b8565b6040516107689190613e1a565b60405180910390f35b34801561077d57600080fd5b50610798600480360381019061079391906136fd565b6117d8565b005b3480156107a657600080fd5b506107c160048036038101906107bc91906135ba565b611959565b6040516107ce9190613e1a565b60405180910390f35b3480156107e357600080fd5b506107fe60048036038101906107f9919061367a565b6119af565b005b34801561080c57600080fd5b50610815611a11565b6040516108229190613e1a565b60405180910390f35b34801561083757600080fd5b50610852600480360381019061084d91906138d6565b611a24565b60405161085f9190613e35565b60405180910390f35b610882600480360381019061087d91906138a9565b611a5e565b005b34801561089057600080fd5b506108ab60048036038101906108a691906138d6565b611c85565b005b3480156108b957600080fd5b506108c2611d0b565b005b3480156108d057600080fd5b506108eb60048036038101906108e691906137bd565b611db3565b005b3480156108f957600080fd5b50610914600480360381019061090f91906135e7565b611ec4565b6040516109219190613e1a565b60405180910390f35b34801561093657600080fd5b5061093f611f58565b60405161094c9190613e1a565b60405180910390f35b34801561096157600080fd5b5061097c600480360381019061097791906135ba565b611f6f565b005b600061098982612067565b9050919050565b6014805461099d90614481565b80601f01602080910402602001604051908101604052809291908181526020018280546109c990614481565b8015610a165780601f106109eb57610100808354040283529160200191610a16565b820191906000526020600020905b8154815290600101906020018083116109f957829003601f168201915b505050505081565b606060008054610a2d90614481565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5990614481565b8015610aa65780601f10610a7b57610100808354040283529160200191610aa6565b820191906000526020600020905b815481529060010190602001808311610a8957829003601f168201915b5050505050905090565b6000610abb826120e1565b610afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af190613ff7565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b4082611279565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba890614097565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bd061214d565b73ffffffffffffffffffffffffffffffffffffffff161480610bff5750610bfe81610bf961214d565b611ec4565b5b610c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3590613f77565b60405180910390fd5b610c488383612155565b505050565b6000600880549050905090565b610c6261214d565b73ffffffffffffffffffffffffffffffffffffffff16610c806116fc565b73ffffffffffffffffffffffffffffffffffffffff1614610cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccd90614017565b60405180910390fd5b8060149080519060200190610cec92919061331b565b5050565b600e5481565b610d07610d0161214d565b8261220e565b610d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3d906140f7565b60405180910390fd5b610d518383836122ec565b505050565b6103e881565b6000610d6783611331565b8210610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9f90613e57565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610e0961214d565b73ffffffffffffffffffffffffffffffffffffffff16610e276116fc565b73ffffffffffffffffffffffffffffffffffffffff1614610e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7490614017565b60405180910390fd5b60005b8161ffff168161ffff161015610eba576000610e9a610c4d565b9050610ea68482612548565b508080610eb2906144e4565b915050610e80565b505050565b600f5481565b610ee0838383604051806020016040528060008152506119af565b505050565b610ef6610ef061214d565b8261220e565b610f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2c90614177565b60405180910390fd5b610f3e81612566565b50565b610f4961214d565b73ffffffffffffffffffffffffffffffffffffffff16610f676116fc565b73ffffffffffffffffffffffffffffffffffffffff1614610fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb490614017565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b60011515600d60009054906101000a900460ff1615151461103f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103690614077565b60405180910390fd5b600b548161ffff1661104f610c4d565b61105991906142a8565b111561109a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109190613e97565b60405180910390fd5b348161ffff16600c546110ad919061432f565b11156110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e590614157565b60405180910390fd5b600f548161ffff161115611137576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112e90614137565b60405180910390fd5b61114081612677565b50565b600061114d610c4d565b821061118e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118590614117565b60405180910390fd5b600882815481106111a2576111a1614645565b5b90600052602060002001549050919050565b6000600d60009054906101000a900460ff16905090565b600b5481565b6111d961214d565b73ffffffffffffffffffffffffffffffffffffffff166111f76116fc565b73ffffffffffffffffffffffffffffffffffffffff161461124d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124490614017565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611322576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131990613fb7565b60405180910390fd5b80915050919050565b600c5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139990613f97565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113f161214d565b73ffffffffffffffffffffffffffffffffffffffff1661140f6116fc565b73ffffffffffffffffffffffffffffffffffffffff1614611465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145c90614017565b60405180910390fd5b61146f60006126b8565b565b61147961214d565b73ffffffffffffffffffffffffffffffffffffffff166114976116fc565b73ffffffffffffffffffffffffffffffffffffffff16146114ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e490614017565b60405180910390fd5b600060646046476114fe919061432f565b61150891906142fe565b905060006064601e4761151b919061432f565b61152591906142fe565b9050601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505061158757600080fd5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506115e757600080fd5b5050565b6115f361214d565b73ffffffffffffffffffffffffffffffffffffffff166116116116fc565b73ffffffffffffffffffffffffffffffffffffffff1614611667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165e90614017565b60405180910390fd5b60005b81518110156116f85760016011600084848151811061168c5761168b614645565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806116f09061450f565b91505061166a565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461173590614481565b80601f016020809104026020016040519081016040528092919081815260200182805461176190614481565b80156117ae5780601f10611783576101008083540402835291602001916117ae565b820191906000526020600020905b81548152906001019060200180831161179157829003601f168201915b5050505050905090565b60116020528060005260406000206000915054906101000a900460ff1681565b6117e061214d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561184e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184590613f17565b60405180910390fd5b806005600061185b61214d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661190861214d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161194d9190613e1a565b60405180910390a35050565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6119c06119ba61214d565b8361220e565b6119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f6906140f7565b60405180910390fd5b611a0b8484848461277e565b50505050565b601060009054906101000a900460ff1681565b6060611a2e6127da565b611a378361286c565b604051602001611a48929190613d84565b6040516020818303038152906040529050919050565b60011515600d60019054906101000a900460ff16151514611ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aab90614057565b60405180910390fd5b60011515601060009054906101000a900460ff1615151415611b645760011515601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5a906140d7565b60405180910390fd5b5b60001515601060009054906101000a900460ff1615151415611c82576103e88161ffff16611b90610c4d565b611b9a91906142a8565b1115611bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd290613f57565b60405180910390fd5b348161ffff16600c54611bee919061432f565b1115611c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2690614157565b60405180910390fd5b600e548161ffff161115611c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6f906140b7565b60405180910390fd5b611c8181612677565b5b50565b611c8d61214d565b73ffffffffffffffffffffffffffffffffffffffff16611cab6116fc565b73ffffffffffffffffffffffffffffffffffffffff1614611d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf890614017565b60405180910390fd5b80600b8190555050565b611d1361214d565b73ffffffffffffffffffffffffffffffffffffffff16611d316116fc565b73ffffffffffffffffffffffffffffffffffffffff1614611d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7e90614017565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b611dbb61214d565b73ffffffffffffffffffffffffffffffffffffffff16611dd96116fc565b73ffffffffffffffffffffffffffffffffffffffff1614611e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2690614017565b60405180910390fd5b60005b8151811015611ec057600060116000848481518110611e5457611e53614645565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611eb89061450f565b915050611e32565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600d60019054906101000a900460ff16905090565b611f7761214d565b73ffffffffffffffffffffffffffffffffffffffff16611f956116fc565b73ffffffffffffffffffffffffffffffffffffffff1614611feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe290614017565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561205b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205290613eb7565b60405180910390fd5b612064816126b8565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806120da57506120d9826129cd565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166121c883611279565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612219826120e1565b612258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224f90613f37565b60405180910390fd5b600061226383611279565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806122d257508373ffffffffffffffffffffffffffffffffffffffff166122ba84610ab0565b73ffffffffffffffffffffffffffffffffffffffff16145b806122e357506122e28185611ec4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661230c82611279565b73ffffffffffffffffffffffffffffffffffffffff1614612362576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235990614037565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c990613ef7565b60405180910390fd5b6123dd838383612aaf565b6123e8600082612155565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124389190614389565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461248f91906142a8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612562828260405180602001604052806000815250612abf565b5050565b600061257182611279565b905061257f81600084612aaf565b61258a600083612155565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125da9190614389565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60005b8161ffff168161ffff1610156126b4576000612694610c4d565b90506126a03382612548565b5080806126ac906144e4565b91505061267a565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6127898484846122ec565b61279584848484612b1a565b6127d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127cb90613e77565b60405180910390fd5b50505050565b6060601480546127e990614481565b80601f016020809104026020016040519081016040528092919081815260200182805461281590614481565b80156128625780601f1061283757610100808354040283529160200191612862565b820191906000526020600020905b81548152906001019060200180831161284557829003601f168201915b5050505050905090565b606060008214156128b4576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129c8565b600082905060005b600082146128e65780806128cf9061450f565b915050600a826128df91906142fe565b91506128bc565b60008167ffffffffffffffff81111561290257612901614674565b5b6040519080825280601f01601f1916602001820160405280156129345781602001600182028036833780820191505090505b5090505b600085146129c15760018261294d9190614389565b9150600a8561295c9190614558565b603061296891906142a8565b60f81b81838151811061297e5761297d614645565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129ba91906142fe565b9450612938565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612a9857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612aa85750612aa782612cb1565b5b9050919050565b612aba838383612d1b565b505050565b612ac98383612e2f565b612ad66000848484612b1a565b612b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0c90613e77565b60405180910390fd5b505050565b6000612b3b8473ffffffffffffffffffffffffffffffffffffffff16612ffd565b15612ca4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b6461214d565b8786866040518563ffffffff1660e01b8152600401612b869493929190613dce565b602060405180830381600087803b158015612ba057600080fd5b505af1925050508015612bd157506040513d601f19601f82011682018060405250810190612bce9190613833565b60015b612c54573d8060008114612c01576040519150601f19603f3d011682016040523d82523d6000602084013e612c06565b606091505b50600081511415612c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4390613e77565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ca9565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612d26838383613010565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612d6957612d6481613015565b612da8565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612da757612da6838261305e565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612deb57612de6816131cb565b612e2a565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612e2957612e28828261329c565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9690613fd7565b60405180910390fd5b612ea8816120e1565b15612ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612edf90613ed7565b60405180910390fd5b612ef460008383612aaf565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f4491906142a8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161306b84611331565b6130759190614389565b905060006007600084815260200190815260200160002054905081811461315a576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506131df9190614389565b905060006009600084815260200190815260200160002054905060006008838154811061320f5761320e614645565b5b90600052602060002001549050806008838154811061323157613230614645565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806132805761327f614616565b5b6001900381819060005260206000200160009055905550505050565b60006132a783611331565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461332790614481565b90600052602060002090601f0160209004810192826133495760008555613390565b82601f1061336257805160ff1916838001178555613390565b82800160010185558215613390579182015b8281111561338f578251825591602001919060010190613374565b5b50905061339d91906133a1565b5090565b5b808211156133ba5760008160009055506001016133a2565b5090565b60006133d16133cc846141d7565b6141b2565b905080838252602082019050828560208602820111156133f4576133f36146a8565b5b60005b85811015613424578161340a88826134b2565b8452602084019350602083019250506001810190506133f7565b5050509392505050565b600061344161343c84614203565b6141b2565b90508281526020810184848401111561345d5761345c6146ad565b5b61346884828561443f565b509392505050565b600061348361347e84614234565b6141b2565b90508281526020810184848401111561349f5761349e6146ad565b5b6134aa84828561443f565b509392505050565b6000813590506134c181614d34565b92915050565b600082601f8301126134dc576134db6146a3565b5b81356134ec8482602086016133be565b91505092915050565b60008135905061350481614d4b565b92915050565b60008135905061351981614d62565b92915050565b60008151905061352e81614d62565b92915050565b600082601f830112613549576135486146a3565b5b813561355984826020860161342e565b91505092915050565b600082601f830112613577576135766146a3565b5b8135613587848260208601613470565b91505092915050565b60008135905061359f81614d79565b92915050565b6000813590506135b481614d90565b92915050565b6000602082840312156135d0576135cf6146b7565b5b60006135de848285016134b2565b91505092915050565b600080604083850312156135fe576135fd6146b7565b5b600061360c858286016134b2565b925050602061361d858286016134b2565b9150509250929050565b6000806000606084860312156136405761363f6146b7565b5b600061364e868287016134b2565b935050602061365f868287016134b2565b9250506040613670868287016135a5565b9150509250925092565b60008060008060808587031215613694576136936146b7565b5b60006136a2878288016134b2565b94505060206136b3878288016134b2565b93505060406136c4878288016135a5565b925050606085013567ffffffffffffffff8111156136e5576136e46146b2565b5b6136f187828801613534565b91505092959194509250565b60008060408385031215613714576137136146b7565b5b6000613722858286016134b2565b9250506020613733858286016134f5565b9150509250929050565b60008060408385031215613754576137536146b7565b5b6000613762858286016134b2565b925050602061377385828601613590565b9150509250929050565b60008060408385031215613794576137936146b7565b5b60006137a2858286016134b2565b92505060206137b3858286016135a5565b9150509250929050565b6000602082840312156137d3576137d26146b7565b5b600082013567ffffffffffffffff8111156137f1576137f06146b2565b5b6137fd848285016134c7565b91505092915050565b60006020828403121561381c5761381b6146b7565b5b600061382a8482850161350a565b91505092915050565b600060208284031215613849576138486146b7565b5b60006138578482850161351f565b91505092915050565b600060208284031215613876576138756146b7565b5b600082013567ffffffffffffffff811115613894576138936146b2565b5b6138a084828501613562565b91505092915050565b6000602082840312156138bf576138be6146b7565b5b60006138cd84828501613590565b91505092915050565b6000602082840312156138ec576138eb6146b7565b5b60006138fa848285016135a5565b91505092915050565b61390c816143bd565b82525050565b61391b816143cf565b82525050565b600061392c82614265565b613936818561427b565b935061394681856020860161444e565b61394f816146bc565b840191505092915050565b600061396582614270565b61396f818561428c565b935061397f81856020860161444e565b613988816146bc565b840191505092915050565b600061399e82614270565b6139a8818561429d565b93506139b881856020860161444e565b80840191505092915050565b60006139d1602b8361428c565b91506139dc826146cd565b604082019050919050565b60006139f460328361428c565b91506139ff8261471c565b604082019050919050565b6000613a1760088361428c565b9150613a228261476b565b602082019050919050565b6000613a3a60268361428c565b9150613a4582614794565b604082019050919050565b6000613a5d601c8361428c565b9150613a68826147e3565b602082019050919050565b6000613a8060248361428c565b9150613a8b8261480c565b604082019050919050565b6000613aa360198361428c565b9150613aae8261485b565b602082019050919050565b6000613ac6602c8361428c565b9150613ad182614884565b604082019050919050565b6000613ae960278361428c565b9150613af4826148d3565b604082019050919050565b6000613b0c60388361428c565b9150613b1782614922565b604082019050919050565b6000613b2f602a8361428c565b9150613b3a82614971565b604082019050919050565b6000613b5260298361428c565b9150613b5d826149c0565b604082019050919050565b6000613b7560208361428c565b9150613b8082614a0f565b602082019050919050565b6000613b98602c8361428c565b9150613ba382614a38565b604082019050919050565b6000613bbb60208361428c565b9150613bc682614a87565b602082019050919050565b6000613bde60298361428c565b9150613be982614ab0565b604082019050919050565b6000613c01601c8361428c565b9150613c0c82614aff565b602082019050919050565b6000613c2460138361428c565b9150613c2f82614b28565b602082019050919050565b6000613c4760218361428c565b9150613c5282614b51565b604082019050919050565b6000613c6a60128361428c565b9150613c7582614ba0565b602082019050919050565b6000613c8d601d8361428c565b9150613c9882614bc9565b602082019050919050565b6000613cb060008361429d565b9150613cbb82614bf2565b600082019050919050565b6000613cd360318361428c565b9150613cde82614bf5565b604082019050919050565b6000613cf6602c8361428c565b9150613d0182614c44565b604082019050919050565b6000613d1960128361428c565b9150613d2482614c93565b602082019050919050565b6000613d3c601e8361428c565b9150613d4782614cbc565b602082019050919050565b6000613d5f60308361428c565b9150613d6a82614ce5565b604082019050919050565b613d7e81614435565b82525050565b6000613d908285613993565b9150613d9b82613ca3565b9150613da78284613993565b91508190509392505050565b6000602082019050613dc86000830184613903565b92915050565b6000608082019050613de36000830187613903565b613df06020830186613903565b613dfd6040830185613d75565b8181036060830152613e0f8184613921565b905095945050505050565b6000602082019050613e2f6000830184613912565b92915050565b60006020820190508181036000830152613e4f818461395a565b905092915050565b60006020820190508181036000830152613e70816139c4565b9050919050565b60006020820190508181036000830152613e90816139e7565b9050919050565b60006020820190508181036000830152613eb081613a0a565b9050919050565b60006020820190508181036000830152613ed081613a2d565b9050919050565b60006020820190508181036000830152613ef081613a50565b9050919050565b60006020820190508181036000830152613f1081613a73565b9050919050565b60006020820190508181036000830152613f3081613a96565b9050919050565b60006020820190508181036000830152613f5081613ab9565b9050919050565b60006020820190508181036000830152613f7081613adc565b9050919050565b60006020820190508181036000830152613f9081613aff565b9050919050565b60006020820190508181036000830152613fb081613b22565b9050919050565b60006020820190508181036000830152613fd081613b45565b9050919050565b60006020820190508181036000830152613ff081613b68565b9050919050565b6000602082019050818103600083015261401081613b8b565b9050919050565b6000602082019050818103600083015261403081613bae565b9050919050565b6000602082019050818103600083015261405081613bd1565b9050919050565b6000602082019050818103600083015261407081613bf4565b9050919050565b6000602082019050818103600083015261409081613c17565b9050919050565b600060208201905081810360008301526140b081613c3a565b9050919050565b600060208201905081810360008301526140d081613c5d565b9050919050565b600060208201905081810360008301526140f081613c80565b9050919050565b6000602082019050818103600083015261411081613cc6565b9050919050565b6000602082019050818103600083015261413081613ce9565b9050919050565b6000602082019050818103600083015261415081613d0c565b9050919050565b6000602082019050818103600083015261417081613d2f565b9050919050565b6000602082019050818103600083015261419081613d52565b9050919050565b60006020820190506141ac6000830184613d75565b92915050565b60006141bc6141cd565b90506141c882826144b3565b919050565b6000604051905090565b600067ffffffffffffffff8211156141f2576141f1614674565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561421e5761421d614674565b5b614227826146bc565b9050602081019050919050565b600067ffffffffffffffff82111561424f5761424e614674565b5b614258826146bc565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006142b382614435565b91506142be83614435565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142f3576142f2614589565b5b828201905092915050565b600061430982614435565b915061431483614435565b925082614324576143236145b8565b5b828204905092915050565b600061433a82614435565b915061434583614435565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561437e5761437d614589565b5b828202905092915050565b600061439482614435565b915061439f83614435565b9250828210156143b2576143b1614589565b5b828203905092915050565b60006143c882614415565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561446c578082015181840152602081019050614451565b8381111561447b576000848401525b50505050565b6000600282049050600182168061449957607f821691505b602082108114156144ad576144ac6145e7565b5b50919050565b6144bc826146bc565b810181811067ffffffffffffffff821117156144db576144da614674565b5b80604052505050565b60006144ef82614407565b915061ffff82141561450457614503614589565b5b600182019050919050565b600061451a82614435565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561454d5761454c614589565b5b600182019050919050565b600061456382614435565b915061456e83614435565b92508261457e5761457d6145b8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f536f6c64204f7574000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e7420737570706c792c2054727920696e207075626c60008201527f69632073616c6500000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f50726573616c65204f6620535353206973206e6f742061637469766500000000600082015250565b7f5353532073616c65206e6f742061637469766500000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d61782032302061726520616c6c6f7765640000000000000000000000000000600082015250565b7f4e6f742077686974656c6973746564206973206e6f7420616374697665000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4d61782033302061726520616c6c6f7765640000000000000000000000000000600082015250565b7f457468657220616d6f756e742073656e7420697320696e636f72726563740000600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b614d3d816143bd565b8114614d4857600080fd5b50565b614d54816143cf565b8114614d5f57600080fd5b50565b614d6b816143db565b8114614d7657600080fd5b50565b614d8281614407565b8114614d8d57600080fd5b50565b614d9981614435565b8114614da457600080fd5b5056fea2646970667358221220c23b663fb682e1a3aca834b51700e421cf0e7786e3563db9ce8a237df7ea4d6464736f6c63430008070033

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.