ETH Price: $2,675.57 (-0.92%)

Token

WBMC Vinyls (WBMCVNLS)
 

Overview

Max Total Supply

495 WBMCVNLS

Holders

141

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 WBMCVNLS
0x4F811ED3b17c6C797d18a1a80050D98F2a55Da26
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:
WBMCVinylsND

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : Vinyls_nodata.sol
/*                                                  
                L.                                      
            t   EW:        ,ft                      i   
            Ej  E##;       t#E f.     ;WE.         LE   
 t      .DD.E#, E###t      t#E E#,   i#G          L#E   
 EK:   ,WK. E#t E#fE#f     t#E E#t  f#f          G#W.   
 E#t  i#D   E#t E#t D#G    t#E E#t G#i          D#K.    
 E#t j#f    E#t E#t  f#E.  t#E E#jEW,          E#K.     
 E#tL#i     E#t E#t   t#K: t#E E##E.         .E#E.      
 E#WW,      E#t E#t    ;#W,t#E E#G          .K#E        
 E#K:       E#t E#t     :K#D#E E#t         .K#D         
 ED.        E#t E#t      .E##E E#t        .W#G          
 t          E#t ..         G#E EE.       :W##########Wt 
            ,;.             fE t         :,,,,,,,,,,,,,.
                             ,                          


VINYL ON-CHAIN GENERATIVE AUDIO-VISUAL ART COLLECTION
by Wannabes Music Club

*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

interface IVinylsMetadata { 
    function tokenURI(uint256 tokenId) external view returns (string memory); 
}

interface IVIBE20 {
    function burnBurner(address from, uint256 amount) external;
}

interface IWBMC {
    function ownerOf(uint256 tokenId) external view returns (address);
    function totalSupply() external view returns (uint256);
}

interface IWBMCEnum {
    function tokensOfOwner(address _owner, uint256 _totalSupply) external view returns (uint256[] memory);
}

contract WBMCVinylsND is ERC721, ReentrancyGuard, Ownable {

    uint256 public maxVinyls;
    uint private vinylPrice = 100000000000000000; //0.1 ETH
    uint private vinylVibePrice = 5000 * (10 ** 18); // 5000 $VIBE
    
    bool private publicSale = false;
    bool private privateSale = false;
    uint private _totalSupply = 0;

    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;

    mapping(uint256 => bool) private idsClaimed;
    mapping (address => uint256) private whitelisted;

    uint256 public curGen = 1;
    mapping (uint256 => uint256) private tokenIdtoGen;

    bool private metadataSwitch = false;
    string private baseURI;
    string public provenanceHash;

    //interfaces
    IVinylsMetadata private vinylsMeta;
    IVIBE20 private vibeToken;
    IWBMC private WBMC;
    IWBMCEnum private WBMCEnum;

    function setMetaContr(address _vinylsMetaContr) public onlyOwner {
        vinylsMeta = IVinylsMetadata(_vinylsMetaContr);
    }

    function setVibeContr(address _vibeContr) public onlyOwner {
        vibeToken = IVIBE20(_vibeContr);
    }

    function setWBMCContr(address _wbmcContr) public onlyOwner {
        WBMC = IWBMC(_wbmcContr);
    }

    function setWBMCEnumContr(address _wbmcEnumContr) public onlyOwner {
        WBMCEnum = IWBMCEnum(_wbmcEnumContr);
    }

    /*
    ********************
    Claiming
    ********************
    */

    // claim with ethereum on public sale
    function claimEthTo(address _to, uint256 _vinQty) public payable nonReentrant {  
        require(_vinQty<=3 && _vinQty>0, "wrong qty");
        require(publicSale, "Sale not started");
        require(totalSupply() + _vinQty <= maxVinyls, "MaxSupply");
        require(msg.value >= vinylPrice*_vinQty, "low eth");
        for (uint256 i = 0; i < _vinQty; i++) {
            _tokenIds.increment(); 
            uint256 newItemId = _tokenIds.current();
            _safeMint(_to, newItemId);
            tokenIdtoGen[newItemId] = curGen;
            _totalSupply++;
        }
    }

    // claim with ethereum on public sale
    function claimEthWL() public payable nonReentrant {  
        require(privateSale, "Sale not started");
        require(msg.value >= vinylPrice, "low eth");
        require(whitelisted[msg.sender] > 0, "not WLed"); 
        _tokenIds.increment(); 
        uint256 newItemId = _tokenIds.current();
        _safeMint(_msgSender(), newItemId);
        tokenIdtoGen[newItemId] = curGen;
        whitelisted[msg.sender]--;
        _totalSupply++;
    }

    function claimVibe() public nonReentrant {  
        require(privateSale, "Sale not started or ended");
        
        //burn vibe
        vibeToken.burnBurner(msg.sender, vinylVibePrice);

        _tokenIds.increment(); 
        uint256 newItemId = _tokenIds.current();
        _safeMint(_msgSender(), newItemId);
        tokenIdtoGen[newItemId] = curGen;
        _totalSupply++;
    }

    function claimByWannabeId(uint256 wannabeId) public nonReentrant {  
        require(privateSale, "Sale not started");
        require(WBMC.ownerOf(wannabeId) == _msgSender(), "must own");
        require (!idsClaimed[wannabeId], "already claimed");

        _tokenIds.increment(); 
        uint256 newItemId = _tokenIds.current();
        _safeMint(_msgSender(), newItemId);
        tokenIdtoGen[newItemId] = curGen;
        _totalSupply++;
        idsClaimed[wannabeId] = true;
    }

    // claim vinyls for all wannabes on that wallet
    function claimAll() public nonReentrant {  
        require(privateSale, "Sale not started");

        uint[] memory tokens = WBMCEnum.tokensOfOwner(_msgSender(), WBMC.totalSupply());

        for (uint256 i=0; i<tokens.length; i++) {
            uint256 wannabeId = tokens[i];
            if (!idsClaimed[wannabeId]) {
                //if was not claimed yet;
                require(WBMC.ownerOf(wannabeId) == _msgSender(), "must own");
                _tokenIds.increment(); 
                uint256 newItemId = _tokenIds.current();
                _safeMint(_msgSender(), newItemId);
                tokenIdtoGen[newItemId] = curGen;
                _totalSupply++;
                idsClaimed[wannabeId] = true;
            }
        }
    }

    // check if that Wannabe was used to claim Vinyl
    function isClaimed (uint256 wannabeId) public view returns (bool) {  
        return idsClaimed[wannabeId];
    }

    // returns WL quota for this address
    function getWLQuota (address addr) public view returns (uint256) {  
        return whitelisted[addr];
    }

    // returns gen for this tokenId
    function genByTokenId (uint256 _tokenId) public view returns (uint256) {  
        return tokenIdtoGen[_tokenId];
    }

    // returns array with tokenIds of eth wallet
    function tokensOfOwner(address _owner) external view returns(uint256[] memory ownerTokens) {
        uint256 tokenCount = balanceOf(_owner);

        if (tokenCount == 0) {
            // Return an empty array
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 totalNFTs = totalSupply();
            uint256 resultIndex = 0;

            uint256 NFTId;

            for (NFTId = 1; NFTId <= totalNFTs; NFTId++) {
                if (ownerOf(NFTId) == _owner) {
                    result[resultIndex] = NFTId;
                    resultIndex++;
                }
            }
            return result;
        }
    }

    // Public Sale on/off
    function switchPublicSale(uint256 _newMaxVinyls) external onlyOwner {
        publicSale = !publicSale;
        maxVinyls = _newMaxVinyls;
    }

    // Private Sale on/off
    function switchPrivateSale() external onlyOwner {
        privateSale = !privateSale;
    }

    // increases WL quota for _wlAddress
    function increaseWLQuota(address _wlAddress, uint256 _quota) public onlyOwner {
        whitelisted[_wlAddress] = whitelisted[_wlAddress] + _quota;
    }

    // Get total Supply
    function totalSupply() public view returns (uint) {
        return _totalSupply;
    } 

    // Set generation
    function setGen(uint _newGen) public onlyOwner {
        curGen = _newGen;
    }

    // Get current price
    function getPrice() public view returns (uint) {
        return vinylPrice;
    }

     // Get current price in Vibe
    function getVibePrice() public view returns (uint) {
        return vinylVibePrice;
    }

    // Set price
    function setPrice(uint _newPrice) public onlyOwner {
        vinylPrice = _newPrice;
    }

    // Set price in $VIBE
    function setVibePrice(uint _newPrice) public onlyOwner {
        vinylVibePrice = _newPrice * (10 ** 18);
    }

    // check if such token exists
    function tokenExists(uint256 _tokenId) public view returns (bool) {
        if (tokenIdtoGen[_tokenId] > 0) {
            return true;
        }
        else { 
            return false;
        }
    }

    function switchMetadata() public onlyOwner {
        metadataSwitch = !metadataSwitch;
    }

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

    function setProvenance(string memory _newProv) public onlyOwner {
        provenanceHash = _newProv;
    }

    //withdraw
    function withdraw(uint256 amt) public onlyOwner {
        payable(msg.sender).transfer(amt);
    }

    function tokenURI(uint256 tokenId) override public view returns (string memory) {
        if (!metadataSwitch) {
            return string (abi.encodePacked(baseURI, toString(tokenId)));
        } else {
            return vinylsMeta.tokenURI(tokenId);
        }
    }

    function toString(uint256 value) internal pure returns (string memory) {
    // Inspired by OraclizeAPI's implementation - MIT license
    // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

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

/*
May the force be with you! 
*/

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"wannabeId","type":"uint256"}],"name":"claimByWannabeId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_vinQty","type":"uint256"}],"name":"claimEthTo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"claimEthWL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"claimVibe","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"curGen","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"genByTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getVibePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"getWLQuota","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wlAddress","type":"address"},{"internalType":"uint256","name":"_quota","type":"uint256"}],"name":"increaseWLQuota","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"wannabeId","type":"uint256"}],"name":"isClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxVinyls","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"provenanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newGen","type":"uint256"}],"name":"setGen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_vinylsMetaContr","type":"address"}],"name":"setMetaContr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newProv","type":"string"}],"name":"setProvenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_vibeContr","type":"address"}],"name":"setVibeContr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setVibePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wbmcContr","type":"address"}],"name":"setWBMCContr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wbmcEnumContr","type":"address"}],"name":"setWBMCEnumContr","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":"switchMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"switchPrivateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxVinyls","type":"uint256"}],"name":"switchPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenExists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"ownerTokens","type":"uint256[]"}],"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":"uint256","name":"amt","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405267016345785d8a000060095569010f0cf064dd59200000600a556000600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600c5560016010556000601260006101000a81548160ff0219169083151502179055503480156200008657600080fd5b506040518060400160405280600b81526020017f57424d432056696e796c730000000000000000000000000000000000000000008152506040518060400160405280600881526020017f57424d43564e4c5300000000000000000000000000000000000000000000000081525081600090805190602001906200010b92919062000223565b5080600190805190602001906200012492919062000223565b50505060016006819055506200014f620001436200015560201b60201c565b6200015d60201b60201c565b62000338565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200023190620002d3565b90600052602060002090601f016020900481019282620002555760008555620002a1565b82601f106200027057805160ff1916838001178555620002a1565b82800160010185558215620002a1579182015b82811115620002a057825182559160200191906001019062000283565b5b509050620002b09190620002b4565b5090565b5b80821115620002cf576000816000905550600101620002b5565b5090565b60006002820490506001821680620002ec57607f821691505b6020821081141562000303576200030262000309565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6154be80620003486000396000f3fe60806040526004361061027c5760003560e01c80638da5cb5b1161014f578063c87b56dd116100c1578063e985e9c51161007a578063e985e9c514610939578063f2fde38b14610976578063f68af8591461099f578063f7d01cbb146109ca578063f86f7d07146109f3578063ffe630b514610a1e5761027c565b8063c87b56dd1461084e578063d1058e591461088b578063d424a0a5146108a2578063d93ad2dc146108cb578063dcde1f5b146108e7578063df35e019146109105761027c565b80639f68e956116101135780639f68e95614610754578063a22cb46514610791578063aae4eb2a146107ba578063b88d4fde146107e3578063be9627971461080c578063c6ab67a3146108235761027c565b80638da5cb5b1461066d57806391b7f5ed1461069857806395d89b41146106c157806398d5fdca146106ec5780639e34070f146107175761027c565b80633b53d6e0116101f35780635f82aa4c116101ac5780635f82aa4c1461056c5780636352211e1461059557806370a08231146105d2578063715018a61461060f5780638462151c146106265780638740d855146106635761027c565b80633b53d6e01461048657806342262a341461049d57806342842e0e146104c65780634d687122146104ef57806351924d441461051857806355f804b3146105435761027c565b8063095ea7b311610245578063095ea7b31461037a57806318160ddd146103a357806323b872dd146103ce5780632b39862f146103f75780632e1a7d4d1461043457806332fb455c1461045d5761027c565b8062923f9e1461028157806301ffc9a7146102be57806306fdde03146102fb578063070d3a6314610326578063081812fc1461033d575b600080fd5b34801561028d57600080fd5b506102a860048036038101906102a39190614033565b610a47565b6040516102b59190614677565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190613f5f565b610a77565b6040516102f29190614677565b60405180910390f35b34801561030757600080fd5b50610310610b59565b60405161031d9190614692565b60405180910390f35b34801561033257600080fd5b5061033b610beb565b005b34801561034957600080fd5b50610364600480360381019061035f9190614033565b610c93565b60405161037191906145c5565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c9190613ee2565b610d18565b005b3480156103af57600080fd5b506103b8610e30565b6040516103c591906149b4565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f09190613ddc565b610e3a565b005b34801561040357600080fd5b5061041e60048036038101906104199190614033565b610e9a565b60405161042b91906149b4565b60405180910390f35b34801561044057600080fd5b5061045b60048036038101906104569190614033565b610eb7565b005b34801561046957600080fd5b50610484600480360381019061047f9190614033565b610f7d565b005b34801561049257600080fd5b5061049b61122d565b005b3480156104a957600080fd5b506104c460048036038101906104bf9190613ee2565b6113c1565b005b3480156104d257600080fd5b506104ed60048036038101906104e89190613ddc565b6114cf565b005b3480156104fb57600080fd5b5061051660048036038101906105119190614033565b6114ef565b005b34801561052457600080fd5b5061052d611588565b60405161053a91906149b4565b60405180910390f35b34801561054f57600080fd5b5061056a60048036038101906105659190613fb1565b61158e565b005b34801561057857600080fd5b50610593600480360381019061058e9190613d4e565b611624565b005b3480156105a157600080fd5b506105bc60048036038101906105b79190614033565b6116e4565b6040516105c991906145c5565b60405180910390f35b3480156105de57600080fd5b506105f960048036038101906105f49190613d4e565b611796565b60405161060691906149b4565b60405180910390f35b34801561061b57600080fd5b5061062461184e565b005b34801561063257600080fd5b5061064d60048036038101906106489190613d4e565b6118d6565b60405161065a9190614655565b60405180910390f35b61066b611aa6565b005b34801561067957600080fd5b50610682611cc5565b60405161068f91906145c5565b60405180910390f35b3480156106a457600080fd5b506106bf60048036038101906106ba9190614033565b611cef565b005b3480156106cd57600080fd5b506106d6611d75565b6040516106e39190614692565b60405180910390f35b3480156106f857600080fd5b50610701611e07565b60405161070e91906149b4565b60405180910390f35b34801561072357600080fd5b5061073e60048036038101906107399190614033565b611e11565b60405161074b9190614677565b60405180910390f35b34801561076057600080fd5b5061077b60048036038101906107769190613d4e565b611e3b565b60405161078891906149b4565b60405180910390f35b34801561079d57600080fd5b506107b860048036038101906107b39190613ea6565b611e84565b005b3480156107c657600080fd5b506107e160048036038101906107dc9190613d4e565b612005565b005b3480156107ef57600080fd5b5061080a60048036038101906108059190613e2b565b6120c5565b005b34801561081857600080fd5b50610821612127565b005b34801561082f57600080fd5b506108386121cf565b6040516108459190614692565b60405180910390f35b34801561085a57600080fd5b5061087560048036038101906108709190614033565b61225d565b6040516108829190614692565b60405180910390f35b34801561089757600080fd5b506108a061235d565b005b3480156108ae57600080fd5b506108c960048036038101906108c49190613d4e565b612794565b005b6108e560048036038101906108e09190613ee2565b612854565b005b3480156108f357600080fd5b5061090e60048036038101906109099190613d4e565b612a68565b005b34801561091c57600080fd5b5061093760048036038101906109329190614033565b612b28565b005b34801561094557600080fd5b50610960600480360381019061095b9190613da0565b612bae565b60405161096d9190614677565b60405180910390f35b34801561098257600080fd5b5061099d60048036038101906109989190613d4e565b612c42565b005b3480156109ab57600080fd5b506109b4612d3a565b6040516109c191906149b4565b60405180910390f35b3480156109d657600080fd5b506109f160048036038101906109ec9190614033565b612d40565b005b3480156109ff57600080fd5b50610a08612df0565b604051610a1591906149b4565b60405180910390f35b348015610a2a57600080fd5b50610a456004803603810190610a409190613fb1565b612dfa565b005b60008060116000848152602001908152602001600020541115610a6d5760019050610a72565b600090505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b4257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b525750610b5182612e90565b5b9050919050565b606060008054610b6890614d08565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9490614d08565b8015610be15780601f10610bb657610100808354040283529160200191610be1565b820191906000526020600020905b815481529060010190602001808311610bc457829003601f168201915b5050505050905090565b610bf3612efa565b73ffffffffffffffffffffffffffffffffffffffff16610c11611cc5565b73ffffffffffffffffffffffffffffffffffffffff1614610c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5e906148d4565b60405180910390fd5b601260009054906101000a900460ff1615601260006101000a81548160ff021916908315150217905550565b6000610c9e82612f02565b610cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd4906148b4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d23826116e4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8b90614914565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610db3612efa565b73ffffffffffffffffffffffffffffffffffffffff161480610de25750610de181610ddc612efa565b612bae565b5b610e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1890614834565b60405180910390fd5b610e2b8383612f6e565b505050565b6000600c54905090565b610e4b610e45612efa565b82613027565b610e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8190614934565b60405180910390fd5b610e95838383613105565b505050565b600060116000838152602001908152602001600020549050919050565b610ebf612efa565b73ffffffffffffffffffffffffffffffffffffffff16610edd611cc5565b73ffffffffffffffffffffffffffffffffffffffff1614610f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2a906148d4565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f79573d6000803e3d6000fd5b5050565b60026006541415610fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fba90614974565b60405180910390fd5b6002600681905550600b60019054906101000a900460ff1661101a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101190614814565b60405180910390fd5b611022612efa565b73ffffffffffffffffffffffffffffffffffffffff16601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b815260040161109391906149b4565b60206040518083038186803b1580156110ab57600080fd5b505afa1580156110bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110e39190613d77565b73ffffffffffffffffffffffffffffffffffffffff1614611139576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611130906146f4565b60405180910390fd5b600e600082815260200190815260200160002060009054906101000a900460ff161561119a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119190614754565b60405180910390fd5b6111a4600d613361565b60006111b0600d613377565b90506111c36111bd612efa565b82613385565b6010546011600083815260200190815260200160002081905550600c60008154809291906111f090614d6b565b91905055506001600e600084815260200190815260200160002060006101000a81548160ff02191690831515021790555050600160068190555050565b60026006541415611273576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126a90614974565b60405180910390fd5b6002600681905550600b60019054906101000a900460ff166112ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c1906147f4565b60405180910390fd5b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636328bc0533600a546040518363ffffffff1660e01b815260040161132992919061462c565b600060405180830381600087803b15801561134357600080fd5b505af1158015611357573d6000803e3d6000fd5b50505050611365600d613361565b6000611371600d613377565b905061138461137e612efa565b82613385565b6010546011600083815260200190815260200160002081905550600c60008154809291906113b190614d6b565b9190505550506001600681905550565b6113c9612efa565b73ffffffffffffffffffffffffffffffffffffffff166113e7611cc5565b73ffffffffffffffffffffffffffffffffffffffff161461143d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611434906148d4565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114889190614b13565b600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6114ea838383604051806020016040528060008152506120c5565b505050565b6114f7612efa565b73ffffffffffffffffffffffffffffffffffffffff16611515611cc5565b73ffffffffffffffffffffffffffffffffffffffff161461156b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611562906148d4565b60405180910390fd5b670de0b6b3a76400008161157f9190614b9a565b600a8190555050565b60105481565b611596612efa565b73ffffffffffffffffffffffffffffffffffffffff166115b4611cc5565b73ffffffffffffffffffffffffffffffffffffffff161461160a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611601906148d4565b60405180910390fd5b8060139080519060200190611620929190613a4a565b5050565b61162c612efa565b73ffffffffffffffffffffffffffffffffffffffff1661164a611cc5565b73ffffffffffffffffffffffffffffffffffffffff16146116a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611697906148d4565b60405180910390fd5b80601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561178d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178490614874565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fe90614854565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611856612efa565b73ffffffffffffffffffffffffffffffffffffffff16611874611cc5565b73ffffffffffffffffffffffffffffffffffffffff16146118ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c1906148d4565b60405180910390fd5b6118d460006133a3565b565b606060006118e383611796565b9050600081141561196657600067ffffffffffffffff81111561192f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561195d5781602001602082028036833780820191505090505b50915050611aa1565b60008167ffffffffffffffff8111156119a8577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156119d65781602001602082028036833780820191505090505b50905060006119e3610e30565b9050600080600190505b828111611a98578673ffffffffffffffffffffffffffffffffffffffff16611a14826116e4565b73ffffffffffffffffffffffffffffffffffffffff161415611a855780848381518110611a6a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508180611a8190614d6b565b9250505b8080611a9090614d6b565b9150506119ed565b83955050505050505b919050565b60026006541415611aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae390614974565b60405180910390fd5b6002600681905550600b60019054906101000a900460ff16611b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3a90614814565b60405180910390fd5b600954341015611b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7f90614994565b60405180910390fd5b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611c0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0190614954565b60405180910390fd5b611c14600d613361565b6000611c20600d613377565b9050611c33611c2d612efa565b82613385565b6010546011600083815260200190815260200160002081905550600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611c9d90614cde565b9190505550600c6000815480929190611cb590614d6b565b9190505550506001600681905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611cf7612efa565b73ffffffffffffffffffffffffffffffffffffffff16611d15611cc5565b73ffffffffffffffffffffffffffffffffffffffff1614611d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d62906148d4565b60405180910390fd5b8060098190555050565b606060018054611d8490614d08565b80601f0160208091040260200160405190810160405280929190818152602001828054611db090614d08565b8015611dfd5780601f10611dd257610100808354040283529160200191611dfd565b820191906000526020600020905b815481529060010190602001808311611de057829003601f168201915b5050505050905090565b6000600954905090565b6000600e600083815260200190815260200160002060009054906101000a900460ff169050919050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611e8c612efa565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef190614794565b60405180910390fd5b8060056000611f07612efa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611fb4612efa565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ff99190614677565b60405180910390a35050565b61200d612efa565b73ffffffffffffffffffffffffffffffffffffffff1661202b611cc5565b73ffffffffffffffffffffffffffffffffffffffff1614612081576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612078906148d4565b60405180910390fd5b80601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6120d66120d0612efa565b83613027565b612115576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210c90614934565b60405180910390fd5b61212184848484613469565b50505050565b61212f612efa565b73ffffffffffffffffffffffffffffffffffffffff1661214d611cc5565b73ffffffffffffffffffffffffffffffffffffffff16146121a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219a906148d4565b60405180910390fd5b600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550565b601480546121dc90614d08565b80601f016020809104026020016040519081016040528092919081815260200182805461220890614d08565b80156122555780601f1061222a57610100808354040283529160200191612255565b820191906000526020600020905b81548152906001019060200180831161223857829003601f168201915b505050505081565b6060601260009054906101000a900460ff166122a557601361227e836134c5565b60405160200161228f9291906145a1565b6040516020818303038152906040529050612358565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c87b56dd836040518263ffffffff1660e01b815260040161230091906149b4565b60006040518083038186803b15801561231857600080fd5b505afa15801561232c573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906123559190613ff2565b90505b919050565b600260065414156123a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239a90614974565b60405180910390fd5b6002600681905550600b60019054906101000a900460ff166123fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f190614814565b60405180910390fd5b6000601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166368c179d0612442612efa565b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b1580156124aa57600080fd5b505afa1580156124be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124e2919061405c565b6040518363ffffffff1660e01b81526004016124ff92919061462c565b60006040518083038186803b15801561251757600080fd5b505afa15801561252b573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906125549190613f1e565b905060005b815181101561278857600082828151811061259d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600e600082815260200190815260200160002060009054906101000a900460ff16612774576125d4612efa565b73ffffffffffffffffffffffffffffffffffffffff16601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b815260040161264591906149b4565b60206040518083038186803b15801561265d57600080fd5b505afa158015612671573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126959190613d77565b73ffffffffffffffffffffffffffffffffffffffff16146126eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e2906146f4565b60405180910390fd5b6126f5600d613361565b6000612701600d613377565b905061271461270e612efa565b82613385565b6010546011600083815260200190815260200160002081905550600c600081548092919061274190614d6b565b91905055506001600e600084815260200190815260200160002060006101000a81548160ff021916908315150217905550505b50808061278090614d6b565b915050612559565b50506001600681905550565b61279c612efa565b73ffffffffffffffffffffffffffffffffffffffff166127ba611cc5565b73ffffffffffffffffffffffffffffffffffffffff1614612810576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612807906148d4565b60405180910390fd5b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6002600654141561289a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289190614974565b60405180910390fd5b6002600681905550600381111580156128b35750600081115b6128f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e9906147b4565b60405180910390fd5b600b60009054906101000a900460ff16612941576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293890614814565b60405180910390fd5b6008548161294d610e30565b6129579190614b13565b1115612998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298f906146b4565b60405180910390fd5b806009546129a69190614b9a565b3410156129e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129df90614994565b60405180910390fd5b60005b81811015612a5b576129fd600d613361565b6000612a09600d613377565b9050612a158482613385565b6010546011600083815260200190815260200160002081905550600c6000815480929190612a4290614d6b565b9190505550508080612a5390614d6b565b9150506129eb565b5060016006819055505050565b612a70612efa565b73ffffffffffffffffffffffffffffffffffffffff16612a8e611cc5565b73ffffffffffffffffffffffffffffffffffffffff1614612ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612adb906148d4565b60405180910390fd5b80601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612b30612efa565b73ffffffffffffffffffffffffffffffffffffffff16612b4e611cc5565b73ffffffffffffffffffffffffffffffffffffffff1614612ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9b906148d4565b60405180910390fd5b8060108190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612c4a612efa565b73ffffffffffffffffffffffffffffffffffffffff16612c68611cc5565b73ffffffffffffffffffffffffffffffffffffffff1614612cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb5906148d4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2590614714565b60405180910390fd5b612d37816133a3565b50565b60085481565b612d48612efa565b73ffffffffffffffffffffffffffffffffffffffff16612d66611cc5565b73ffffffffffffffffffffffffffffffffffffffff1614612dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db3906148d4565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff0219169083151502179055508060088190555050565b6000600a54905090565b612e02612efa565b73ffffffffffffffffffffffffffffffffffffffff16612e20611cc5565b73ffffffffffffffffffffffffffffffffffffffff1614612e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6d906148d4565b60405180910390fd5b8060149080519060200190612e8c929190613a4a565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612fe1836116e4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061303282612f02565b613071576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613068906147d4565b60405180910390fd5b600061307c836116e4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806130eb57508373ffffffffffffffffffffffffffffffffffffffff166130d384610c93565b73ffffffffffffffffffffffffffffffffffffffff16145b806130fc57506130fb8185612bae565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16613125826116e4565b73ffffffffffffffffffffffffffffffffffffffff161461317b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613172906148f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e290614774565b60405180910390fd5b6131f6838383613672565b613201600082612f6e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132519190614bf4565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132a89190614b13565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b61339f828260405180602001604052806000815250613677565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613474848484613105565b613480848484846136d2565b6134bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134b6906146d4565b60405180910390fd5b50505050565b6060600082141561350d576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061366d565b600082905060005b6000821461353f57808061352890614d6b565b915050600a826135389190614b69565b9150613515565b60008167ffffffffffffffff811115613581577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156135b35781602001600182028036833780820191505090505b5090505b60008514613666576001826135cc9190614bf4565b9150600a856135db9190614db4565b60306135e79190614b13565b60f81b818381518110613623577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561365f9190614b69565b94506135b7565b8093505050505b919050565b505050565b6136818383613869565b61368e60008484846136d2565b6136cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136c4906146d4565b60405180910390fd5b505050565b60006136f38473ffffffffffffffffffffffffffffffffffffffff16613a37565b1561385c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261371c612efa565b8786866040518563ffffffff1660e01b815260040161373e94939291906145e0565b602060405180830381600087803b15801561375857600080fd5b505af192505050801561378957506040513d601f19601f820116820180604052508101906137869190613f88565b60015b61380c573d80600081146137b9576040519150601f19603f3d011682016040523d82523d6000602084013e6137be565b606091505b50600081511415613804576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137fb906146d4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613861565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156138d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138d090614894565b60405180910390fd5b6138e281612f02565b15613922576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161391990614734565b60405180910390fd5b61392e60008383613672565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461397e9190614b13565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613a5690614d08565b90600052602060002090601f016020900481019282613a785760008555613abf565b82601f10613a9157805160ff1916838001178555613abf565b82800160010185558215613abf579182015b82811115613abe578251825591602001919060010190613aa3565b5b509050613acc9190613ad0565b5090565b5b80821115613ae9576000816000905550600101613ad1565b5090565b6000613b00613afb846149f4565b6149cf565b90508083825260208201905082856020860282011115613b1f57600080fd5b60005b85811015613b4f5781613b358882613d39565b845260208401935060208301925050600181019050613b22565b5050509392505050565b6000613b6c613b6784614a20565b6149cf565b905082815260208101848484011115613b8457600080fd5b613b8f848285614c9c565b509392505050565b6000613baa613ba584614a51565b6149cf565b905082815260208101848484011115613bc257600080fd5b613bcd848285614c9c565b509392505050565b6000613be8613be384614a51565b6149cf565b905082815260208101848484011115613c0057600080fd5b613c0b848285614cab565b509392505050565b600081359050613c228161542c565b92915050565b600081519050613c378161542c565b92915050565b600082601f830112613c4e57600080fd5b8151613c5e848260208601613aed565b91505092915050565b600081359050613c7681615443565b92915050565b600081359050613c8b8161545a565b92915050565b600081519050613ca08161545a565b92915050565b600082601f830112613cb757600080fd5b8135613cc7848260208601613b59565b91505092915050565b600082601f830112613ce157600080fd5b8135613cf1848260208601613b97565b91505092915050565b600082601f830112613d0b57600080fd5b8151613d1b848260208601613bd5565b91505092915050565b600081359050613d3381615471565b92915050565b600081519050613d4881615471565b92915050565b600060208284031215613d6057600080fd5b6000613d6e84828501613c13565b91505092915050565b600060208284031215613d8957600080fd5b6000613d9784828501613c28565b91505092915050565b60008060408385031215613db357600080fd5b6000613dc185828601613c13565b9250506020613dd285828601613c13565b9150509250929050565b600080600060608486031215613df157600080fd5b6000613dff86828701613c13565b9350506020613e1086828701613c13565b9250506040613e2186828701613d24565b9150509250925092565b60008060008060808587031215613e4157600080fd5b6000613e4f87828801613c13565b9450506020613e6087828801613c13565b9350506040613e7187828801613d24565b925050606085013567ffffffffffffffff811115613e8e57600080fd5b613e9a87828801613ca6565b91505092959194509250565b60008060408385031215613eb957600080fd5b6000613ec785828601613c13565b9250506020613ed885828601613c67565b9150509250929050565b60008060408385031215613ef557600080fd5b6000613f0385828601613c13565b9250506020613f1485828601613d24565b9150509250929050565b600060208284031215613f3057600080fd5b600082015167ffffffffffffffff811115613f4a57600080fd5b613f5684828501613c3d565b91505092915050565b600060208284031215613f7157600080fd5b6000613f7f84828501613c7c565b91505092915050565b600060208284031215613f9a57600080fd5b6000613fa884828501613c91565b91505092915050565b600060208284031215613fc357600080fd5b600082013567ffffffffffffffff811115613fdd57600080fd5b613fe984828501613cd0565b91505092915050565b60006020828403121561400457600080fd5b600082015167ffffffffffffffff81111561401e57600080fd5b61402a84828501613cfa565b91505092915050565b60006020828403121561404557600080fd5b600061405384828501613d24565b91505092915050565b60006020828403121561406e57600080fd5b600061407c84828501613d39565b91505092915050565b60006140918383614583565b60208301905092915050565b6140a681614c28565b82525050565b60006140b782614aa7565b6140c18185614ad5565b93506140cc83614a82565b8060005b838110156140fd5781516140e48882614085565b97506140ef83614ac8565b9250506001810190506140d0565b5085935050505092915050565b61411381614c3a565b82525050565b600061412482614ab2565b61412e8185614ae6565b935061413e818560208601614cab565b61414781614ea1565b840191505092915050565b600061415d82614abd565b6141678185614af7565b9350614177818560208601614cab565b61418081614ea1565b840191505092915050565b600061419682614abd565b6141a08185614b08565b93506141b0818560208601614cab565b80840191505092915050565b600081546141c981614d08565b6141d38186614b08565b945060018216600081146141ee57600181146141ff57614232565b60ff19831686528186019350614232565b61420885614a92565b60005b8381101561422a5781548189015260018201915060208101905061420b565b838801955050505b50505092915050565b6000614248600983614af7565b915061425382614eb2565b602082019050919050565b600061426b603283614af7565b915061427682614edb565b604082019050919050565b600061428e600883614af7565b915061429982614f2a565b602082019050919050565b60006142b1602683614af7565b91506142bc82614f53565b604082019050919050565b60006142d4601c83614af7565b91506142df82614fa2565b602082019050919050565b60006142f7600f83614af7565b915061430282614fcb565b602082019050919050565b600061431a602483614af7565b915061432582614ff4565b604082019050919050565b600061433d601983614af7565b915061434882615043565b602082019050919050565b6000614360600983614af7565b915061436b8261506c565b602082019050919050565b6000614383602c83614af7565b915061438e82615095565b604082019050919050565b60006143a6601983614af7565b91506143b1826150e4565b602082019050919050565b60006143c9601083614af7565b91506143d48261510d565b602082019050919050565b60006143ec603883614af7565b91506143f782615136565b604082019050919050565b600061440f602a83614af7565b915061441a82615185565b604082019050919050565b6000614432602983614af7565b915061443d826151d4565b604082019050919050565b6000614455602083614af7565b915061446082615223565b602082019050919050565b6000614478602c83614af7565b91506144838261524c565b604082019050919050565b600061449b602083614af7565b91506144a68261529b565b602082019050919050565b60006144be602983614af7565b91506144c9826152c4565b604082019050919050565b60006144e1602183614af7565b91506144ec82615313565b604082019050919050565b6000614504603183614af7565b915061450f82615362565b604082019050919050565b6000614527600883614af7565b9150614532826153b1565b602082019050919050565b600061454a601f83614af7565b9150614555826153da565b602082019050919050565b600061456d600783614af7565b915061457882615403565b602082019050919050565b61458c81614c92565b82525050565b61459b81614c92565b82525050565b60006145ad82856141bc565b91506145b9828461418b565b91508190509392505050565b60006020820190506145da600083018461409d565b92915050565b60006080820190506145f5600083018761409d565b614602602083018661409d565b61460f6040830185614592565b81810360608301526146218184614119565b905095945050505050565b6000604082019050614641600083018561409d565b61464e6020830184614592565b9392505050565b6000602082019050818103600083015261466f81846140ac565b905092915050565b600060208201905061468c600083018461410a565b92915050565b600060208201905081810360008301526146ac8184614152565b905092915050565b600060208201905081810360008301526146cd8161423b565b9050919050565b600060208201905081810360008301526146ed8161425e565b9050919050565b6000602082019050818103600083015261470d81614281565b9050919050565b6000602082019050818103600083015261472d816142a4565b9050919050565b6000602082019050818103600083015261474d816142c7565b9050919050565b6000602082019050818103600083015261476d816142ea565b9050919050565b6000602082019050818103600083015261478d8161430d565b9050919050565b600060208201905081810360008301526147ad81614330565b9050919050565b600060208201905081810360008301526147cd81614353565b9050919050565b600060208201905081810360008301526147ed81614376565b9050919050565b6000602082019050818103600083015261480d81614399565b9050919050565b6000602082019050818103600083015261482d816143bc565b9050919050565b6000602082019050818103600083015261484d816143df565b9050919050565b6000602082019050818103600083015261486d81614402565b9050919050565b6000602082019050818103600083015261488d81614425565b9050919050565b600060208201905081810360008301526148ad81614448565b9050919050565b600060208201905081810360008301526148cd8161446b565b9050919050565b600060208201905081810360008301526148ed8161448e565b9050919050565b6000602082019050818103600083015261490d816144b1565b9050919050565b6000602082019050818103600083015261492d816144d4565b9050919050565b6000602082019050818103600083015261494d816144f7565b9050919050565b6000602082019050818103600083015261496d8161451a565b9050919050565b6000602082019050818103600083015261498d8161453d565b9050919050565b600060208201905081810360008301526149ad81614560565b9050919050565b60006020820190506149c96000830184614592565b92915050565b60006149d96149ea565b90506149e58282614d3a565b919050565b6000604051905090565b600067ffffffffffffffff821115614a0f57614a0e614e72565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614a3b57614a3a614e72565b5b614a4482614ea1565b9050602081019050919050565b600067ffffffffffffffff821115614a6c57614a6b614e72565b5b614a7582614ea1565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614b1e82614c92565b9150614b2983614c92565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b5e57614b5d614de5565b5b828201905092915050565b6000614b7482614c92565b9150614b7f83614c92565b925082614b8f57614b8e614e14565b5b828204905092915050565b6000614ba582614c92565b9150614bb083614c92565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614be957614be8614de5565b5b828202905092915050565b6000614bff82614c92565b9150614c0a83614c92565b925082821015614c1d57614c1c614de5565b5b828203905092915050565b6000614c3382614c72565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614cc9578082015181840152602081019050614cae565b83811115614cd8576000848401525b50505050565b6000614ce982614c92565b91506000821415614cfd57614cfc614de5565b5b600182039050919050565b60006002820490506001821680614d2057607f821691505b60208210811415614d3457614d33614e43565b5b50919050565b614d4382614ea1565b810181811067ffffffffffffffff82111715614d6257614d61614e72565b5b80604052505050565b6000614d7682614c92565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614da957614da8614de5565b5b600182019050919050565b6000614dbf82614c92565b9150614dca83614c92565b925082614dda57614dd9614e14565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4d6178537570706c790000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f6d757374206f776e000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f616c726561647920636c61696d65640000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f77726f6e67207174790000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f53616c65206e6f742073746172746564206f7220656e64656400000000000000600082015250565b7f53616c65206e6f74207374617274656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6e6f7420574c6564000000000000000000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f6c6f772065746800000000000000000000000000000000000000000000000000600082015250565b61543581614c28565b811461544057600080fd5b50565b61544c81614c3a565b811461545757600080fd5b50565b61546381614c46565b811461546e57600080fd5b50565b61547a81614c92565b811461548557600080fd5b5056fea2646970667358221220da4702b1abb24ca37f64ef35460d18cb3ab446c67c4b886d7ea2b673fc7b891664736f6c63430008040033

Deployed Bytecode

0x60806040526004361061027c5760003560e01c80638da5cb5b1161014f578063c87b56dd116100c1578063e985e9c51161007a578063e985e9c514610939578063f2fde38b14610976578063f68af8591461099f578063f7d01cbb146109ca578063f86f7d07146109f3578063ffe630b514610a1e5761027c565b8063c87b56dd1461084e578063d1058e591461088b578063d424a0a5146108a2578063d93ad2dc146108cb578063dcde1f5b146108e7578063df35e019146109105761027c565b80639f68e956116101135780639f68e95614610754578063a22cb46514610791578063aae4eb2a146107ba578063b88d4fde146107e3578063be9627971461080c578063c6ab67a3146108235761027c565b80638da5cb5b1461066d57806391b7f5ed1461069857806395d89b41146106c157806398d5fdca146106ec5780639e34070f146107175761027c565b80633b53d6e0116101f35780635f82aa4c116101ac5780635f82aa4c1461056c5780636352211e1461059557806370a08231146105d2578063715018a61461060f5780638462151c146106265780638740d855146106635761027c565b80633b53d6e01461048657806342262a341461049d57806342842e0e146104c65780634d687122146104ef57806351924d441461051857806355f804b3146105435761027c565b8063095ea7b311610245578063095ea7b31461037a57806318160ddd146103a357806323b872dd146103ce5780632b39862f146103f75780632e1a7d4d1461043457806332fb455c1461045d5761027c565b8062923f9e1461028157806301ffc9a7146102be57806306fdde03146102fb578063070d3a6314610326578063081812fc1461033d575b600080fd5b34801561028d57600080fd5b506102a860048036038101906102a39190614033565b610a47565b6040516102b59190614677565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190613f5f565b610a77565b6040516102f29190614677565b60405180910390f35b34801561030757600080fd5b50610310610b59565b60405161031d9190614692565b60405180910390f35b34801561033257600080fd5b5061033b610beb565b005b34801561034957600080fd5b50610364600480360381019061035f9190614033565b610c93565b60405161037191906145c5565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c9190613ee2565b610d18565b005b3480156103af57600080fd5b506103b8610e30565b6040516103c591906149b4565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f09190613ddc565b610e3a565b005b34801561040357600080fd5b5061041e60048036038101906104199190614033565b610e9a565b60405161042b91906149b4565b60405180910390f35b34801561044057600080fd5b5061045b60048036038101906104569190614033565b610eb7565b005b34801561046957600080fd5b50610484600480360381019061047f9190614033565b610f7d565b005b34801561049257600080fd5b5061049b61122d565b005b3480156104a957600080fd5b506104c460048036038101906104bf9190613ee2565b6113c1565b005b3480156104d257600080fd5b506104ed60048036038101906104e89190613ddc565b6114cf565b005b3480156104fb57600080fd5b5061051660048036038101906105119190614033565b6114ef565b005b34801561052457600080fd5b5061052d611588565b60405161053a91906149b4565b60405180910390f35b34801561054f57600080fd5b5061056a60048036038101906105659190613fb1565b61158e565b005b34801561057857600080fd5b50610593600480360381019061058e9190613d4e565b611624565b005b3480156105a157600080fd5b506105bc60048036038101906105b79190614033565b6116e4565b6040516105c991906145c5565b60405180910390f35b3480156105de57600080fd5b506105f960048036038101906105f49190613d4e565b611796565b60405161060691906149b4565b60405180910390f35b34801561061b57600080fd5b5061062461184e565b005b34801561063257600080fd5b5061064d60048036038101906106489190613d4e565b6118d6565b60405161065a9190614655565b60405180910390f35b61066b611aa6565b005b34801561067957600080fd5b50610682611cc5565b60405161068f91906145c5565b60405180910390f35b3480156106a457600080fd5b506106bf60048036038101906106ba9190614033565b611cef565b005b3480156106cd57600080fd5b506106d6611d75565b6040516106e39190614692565b60405180910390f35b3480156106f857600080fd5b50610701611e07565b60405161070e91906149b4565b60405180910390f35b34801561072357600080fd5b5061073e60048036038101906107399190614033565b611e11565b60405161074b9190614677565b60405180910390f35b34801561076057600080fd5b5061077b60048036038101906107769190613d4e565b611e3b565b60405161078891906149b4565b60405180910390f35b34801561079d57600080fd5b506107b860048036038101906107b39190613ea6565b611e84565b005b3480156107c657600080fd5b506107e160048036038101906107dc9190613d4e565b612005565b005b3480156107ef57600080fd5b5061080a60048036038101906108059190613e2b565b6120c5565b005b34801561081857600080fd5b50610821612127565b005b34801561082f57600080fd5b506108386121cf565b6040516108459190614692565b60405180910390f35b34801561085a57600080fd5b5061087560048036038101906108709190614033565b61225d565b6040516108829190614692565b60405180910390f35b34801561089757600080fd5b506108a061235d565b005b3480156108ae57600080fd5b506108c960048036038101906108c49190613d4e565b612794565b005b6108e560048036038101906108e09190613ee2565b612854565b005b3480156108f357600080fd5b5061090e60048036038101906109099190613d4e565b612a68565b005b34801561091c57600080fd5b5061093760048036038101906109329190614033565b612b28565b005b34801561094557600080fd5b50610960600480360381019061095b9190613da0565b612bae565b60405161096d9190614677565b60405180910390f35b34801561098257600080fd5b5061099d60048036038101906109989190613d4e565b612c42565b005b3480156109ab57600080fd5b506109b4612d3a565b6040516109c191906149b4565b60405180910390f35b3480156109d657600080fd5b506109f160048036038101906109ec9190614033565b612d40565b005b3480156109ff57600080fd5b50610a08612df0565b604051610a1591906149b4565b60405180910390f35b348015610a2a57600080fd5b50610a456004803603810190610a409190613fb1565b612dfa565b005b60008060116000848152602001908152602001600020541115610a6d5760019050610a72565b600090505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b4257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b525750610b5182612e90565b5b9050919050565b606060008054610b6890614d08565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9490614d08565b8015610be15780601f10610bb657610100808354040283529160200191610be1565b820191906000526020600020905b815481529060010190602001808311610bc457829003601f168201915b5050505050905090565b610bf3612efa565b73ffffffffffffffffffffffffffffffffffffffff16610c11611cc5565b73ffffffffffffffffffffffffffffffffffffffff1614610c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5e906148d4565b60405180910390fd5b601260009054906101000a900460ff1615601260006101000a81548160ff021916908315150217905550565b6000610c9e82612f02565b610cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd4906148b4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d23826116e4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8b90614914565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610db3612efa565b73ffffffffffffffffffffffffffffffffffffffff161480610de25750610de181610ddc612efa565b612bae565b5b610e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1890614834565b60405180910390fd5b610e2b8383612f6e565b505050565b6000600c54905090565b610e4b610e45612efa565b82613027565b610e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8190614934565b60405180910390fd5b610e95838383613105565b505050565b600060116000838152602001908152602001600020549050919050565b610ebf612efa565b73ffffffffffffffffffffffffffffffffffffffff16610edd611cc5565b73ffffffffffffffffffffffffffffffffffffffff1614610f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2a906148d4565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f79573d6000803e3d6000fd5b5050565b60026006541415610fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fba90614974565b60405180910390fd5b6002600681905550600b60019054906101000a900460ff1661101a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101190614814565b60405180910390fd5b611022612efa565b73ffffffffffffffffffffffffffffffffffffffff16601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b815260040161109391906149b4565b60206040518083038186803b1580156110ab57600080fd5b505afa1580156110bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110e39190613d77565b73ffffffffffffffffffffffffffffffffffffffff1614611139576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611130906146f4565b60405180910390fd5b600e600082815260200190815260200160002060009054906101000a900460ff161561119a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119190614754565b60405180910390fd5b6111a4600d613361565b60006111b0600d613377565b90506111c36111bd612efa565b82613385565b6010546011600083815260200190815260200160002081905550600c60008154809291906111f090614d6b565b91905055506001600e600084815260200190815260200160002060006101000a81548160ff02191690831515021790555050600160068190555050565b60026006541415611273576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126a90614974565b60405180910390fd5b6002600681905550600b60019054906101000a900460ff166112ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c1906147f4565b60405180910390fd5b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636328bc0533600a546040518363ffffffff1660e01b815260040161132992919061462c565b600060405180830381600087803b15801561134357600080fd5b505af1158015611357573d6000803e3d6000fd5b50505050611365600d613361565b6000611371600d613377565b905061138461137e612efa565b82613385565b6010546011600083815260200190815260200160002081905550600c60008154809291906113b190614d6b565b9190505550506001600681905550565b6113c9612efa565b73ffffffffffffffffffffffffffffffffffffffff166113e7611cc5565b73ffffffffffffffffffffffffffffffffffffffff161461143d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611434906148d4565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114889190614b13565b600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6114ea838383604051806020016040528060008152506120c5565b505050565b6114f7612efa565b73ffffffffffffffffffffffffffffffffffffffff16611515611cc5565b73ffffffffffffffffffffffffffffffffffffffff161461156b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611562906148d4565b60405180910390fd5b670de0b6b3a76400008161157f9190614b9a565b600a8190555050565b60105481565b611596612efa565b73ffffffffffffffffffffffffffffffffffffffff166115b4611cc5565b73ffffffffffffffffffffffffffffffffffffffff161461160a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611601906148d4565b60405180910390fd5b8060139080519060200190611620929190613a4a565b5050565b61162c612efa565b73ffffffffffffffffffffffffffffffffffffffff1661164a611cc5565b73ffffffffffffffffffffffffffffffffffffffff16146116a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611697906148d4565b60405180910390fd5b80601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561178d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178490614874565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fe90614854565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611856612efa565b73ffffffffffffffffffffffffffffffffffffffff16611874611cc5565b73ffffffffffffffffffffffffffffffffffffffff16146118ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c1906148d4565b60405180910390fd5b6118d460006133a3565b565b606060006118e383611796565b9050600081141561196657600067ffffffffffffffff81111561192f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561195d5781602001602082028036833780820191505090505b50915050611aa1565b60008167ffffffffffffffff8111156119a8577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156119d65781602001602082028036833780820191505090505b50905060006119e3610e30565b9050600080600190505b828111611a98578673ffffffffffffffffffffffffffffffffffffffff16611a14826116e4565b73ffffffffffffffffffffffffffffffffffffffff161415611a855780848381518110611a6a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508180611a8190614d6b565b9250505b8080611a9090614d6b565b9150506119ed565b83955050505050505b919050565b60026006541415611aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae390614974565b60405180910390fd5b6002600681905550600b60019054906101000a900460ff16611b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3a90614814565b60405180910390fd5b600954341015611b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7f90614994565b60405180910390fd5b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611c0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0190614954565b60405180910390fd5b611c14600d613361565b6000611c20600d613377565b9050611c33611c2d612efa565b82613385565b6010546011600083815260200190815260200160002081905550600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611c9d90614cde565b9190505550600c6000815480929190611cb590614d6b565b9190505550506001600681905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611cf7612efa565b73ffffffffffffffffffffffffffffffffffffffff16611d15611cc5565b73ffffffffffffffffffffffffffffffffffffffff1614611d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d62906148d4565b60405180910390fd5b8060098190555050565b606060018054611d8490614d08565b80601f0160208091040260200160405190810160405280929190818152602001828054611db090614d08565b8015611dfd5780601f10611dd257610100808354040283529160200191611dfd565b820191906000526020600020905b815481529060010190602001808311611de057829003601f168201915b5050505050905090565b6000600954905090565b6000600e600083815260200190815260200160002060009054906101000a900460ff169050919050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611e8c612efa565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef190614794565b60405180910390fd5b8060056000611f07612efa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611fb4612efa565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ff99190614677565b60405180910390a35050565b61200d612efa565b73ffffffffffffffffffffffffffffffffffffffff1661202b611cc5565b73ffffffffffffffffffffffffffffffffffffffff1614612081576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612078906148d4565b60405180910390fd5b80601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6120d66120d0612efa565b83613027565b612115576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210c90614934565b60405180910390fd5b61212184848484613469565b50505050565b61212f612efa565b73ffffffffffffffffffffffffffffffffffffffff1661214d611cc5565b73ffffffffffffffffffffffffffffffffffffffff16146121a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219a906148d4565b60405180910390fd5b600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550565b601480546121dc90614d08565b80601f016020809104026020016040519081016040528092919081815260200182805461220890614d08565b80156122555780601f1061222a57610100808354040283529160200191612255565b820191906000526020600020905b81548152906001019060200180831161223857829003601f168201915b505050505081565b6060601260009054906101000a900460ff166122a557601361227e836134c5565b60405160200161228f9291906145a1565b6040516020818303038152906040529050612358565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c87b56dd836040518263ffffffff1660e01b815260040161230091906149b4565b60006040518083038186803b15801561231857600080fd5b505afa15801561232c573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906123559190613ff2565b90505b919050565b600260065414156123a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239a90614974565b60405180910390fd5b6002600681905550600b60019054906101000a900460ff166123fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f190614814565b60405180910390fd5b6000601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166368c179d0612442612efa565b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b1580156124aa57600080fd5b505afa1580156124be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124e2919061405c565b6040518363ffffffff1660e01b81526004016124ff92919061462c565b60006040518083038186803b15801561251757600080fd5b505afa15801561252b573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906125549190613f1e565b905060005b815181101561278857600082828151811061259d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600e600082815260200190815260200160002060009054906101000a900460ff16612774576125d4612efa565b73ffffffffffffffffffffffffffffffffffffffff16601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b815260040161264591906149b4565b60206040518083038186803b15801561265d57600080fd5b505afa158015612671573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126959190613d77565b73ffffffffffffffffffffffffffffffffffffffff16146126eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e2906146f4565b60405180910390fd5b6126f5600d613361565b6000612701600d613377565b905061271461270e612efa565b82613385565b6010546011600083815260200190815260200160002081905550600c600081548092919061274190614d6b565b91905055506001600e600084815260200190815260200160002060006101000a81548160ff021916908315150217905550505b50808061278090614d6b565b915050612559565b50506001600681905550565b61279c612efa565b73ffffffffffffffffffffffffffffffffffffffff166127ba611cc5565b73ffffffffffffffffffffffffffffffffffffffff1614612810576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612807906148d4565b60405180910390fd5b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6002600654141561289a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289190614974565b60405180910390fd5b6002600681905550600381111580156128b35750600081115b6128f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e9906147b4565b60405180910390fd5b600b60009054906101000a900460ff16612941576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293890614814565b60405180910390fd5b6008548161294d610e30565b6129579190614b13565b1115612998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298f906146b4565b60405180910390fd5b806009546129a69190614b9a565b3410156129e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129df90614994565b60405180910390fd5b60005b81811015612a5b576129fd600d613361565b6000612a09600d613377565b9050612a158482613385565b6010546011600083815260200190815260200160002081905550600c6000815480929190612a4290614d6b565b9190505550508080612a5390614d6b565b9150506129eb565b5060016006819055505050565b612a70612efa565b73ffffffffffffffffffffffffffffffffffffffff16612a8e611cc5565b73ffffffffffffffffffffffffffffffffffffffff1614612ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612adb906148d4565b60405180910390fd5b80601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612b30612efa565b73ffffffffffffffffffffffffffffffffffffffff16612b4e611cc5565b73ffffffffffffffffffffffffffffffffffffffff1614612ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9b906148d4565b60405180910390fd5b8060108190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612c4a612efa565b73ffffffffffffffffffffffffffffffffffffffff16612c68611cc5565b73ffffffffffffffffffffffffffffffffffffffff1614612cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb5906148d4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2590614714565b60405180910390fd5b612d37816133a3565b50565b60085481565b612d48612efa565b73ffffffffffffffffffffffffffffffffffffffff16612d66611cc5565b73ffffffffffffffffffffffffffffffffffffffff1614612dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db3906148d4565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff0219169083151502179055508060088190555050565b6000600a54905090565b612e02612efa565b73ffffffffffffffffffffffffffffffffffffffff16612e20611cc5565b73ffffffffffffffffffffffffffffffffffffffff1614612e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6d906148d4565b60405180910390fd5b8060149080519060200190612e8c929190613a4a565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612fe1836116e4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061303282612f02565b613071576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613068906147d4565b60405180910390fd5b600061307c836116e4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806130eb57508373ffffffffffffffffffffffffffffffffffffffff166130d384610c93565b73ffffffffffffffffffffffffffffffffffffffff16145b806130fc57506130fb8185612bae565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16613125826116e4565b73ffffffffffffffffffffffffffffffffffffffff161461317b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613172906148f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e290614774565b60405180910390fd5b6131f6838383613672565b613201600082612f6e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132519190614bf4565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132a89190614b13565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b61339f828260405180602001604052806000815250613677565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613474848484613105565b613480848484846136d2565b6134bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134b6906146d4565b60405180910390fd5b50505050565b6060600082141561350d576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061366d565b600082905060005b6000821461353f57808061352890614d6b565b915050600a826135389190614b69565b9150613515565b60008167ffffffffffffffff811115613581577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156135b35781602001600182028036833780820191505090505b5090505b60008514613666576001826135cc9190614bf4565b9150600a856135db9190614db4565b60306135e79190614b13565b60f81b818381518110613623577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561365f9190614b69565b94506135b7565b8093505050505b919050565b505050565b6136818383613869565b61368e60008484846136d2565b6136cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136c4906146d4565b60405180910390fd5b505050565b60006136f38473ffffffffffffffffffffffffffffffffffffffff16613a37565b1561385c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261371c612efa565b8786866040518563ffffffff1660e01b815260040161373e94939291906145e0565b602060405180830381600087803b15801561375857600080fd5b505af192505050801561378957506040513d601f19601f820116820180604052508101906137869190613f88565b60015b61380c573d80600081146137b9576040519150601f19603f3d011682016040523d82523d6000602084013e6137be565b606091505b50600081511415613804576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137fb906146d4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613861565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156138d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138d090614894565b60405180910390fd5b6138e281612f02565b15613922576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161391990614734565b60405180910390fd5b61392e60008383613672565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461397e9190614b13565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613a5690614d08565b90600052602060002090601f016020900481019282613a785760008555613abf565b82601f10613a9157805160ff1916838001178555613abf565b82800160010185558215613abf579182015b82811115613abe578251825591602001919060010190613aa3565b5b509050613acc9190613ad0565b5090565b5b80821115613ae9576000816000905550600101613ad1565b5090565b6000613b00613afb846149f4565b6149cf565b90508083825260208201905082856020860282011115613b1f57600080fd5b60005b85811015613b4f5781613b358882613d39565b845260208401935060208301925050600181019050613b22565b5050509392505050565b6000613b6c613b6784614a20565b6149cf565b905082815260208101848484011115613b8457600080fd5b613b8f848285614c9c565b509392505050565b6000613baa613ba584614a51565b6149cf565b905082815260208101848484011115613bc257600080fd5b613bcd848285614c9c565b509392505050565b6000613be8613be384614a51565b6149cf565b905082815260208101848484011115613c0057600080fd5b613c0b848285614cab565b509392505050565b600081359050613c228161542c565b92915050565b600081519050613c378161542c565b92915050565b600082601f830112613c4e57600080fd5b8151613c5e848260208601613aed565b91505092915050565b600081359050613c7681615443565b92915050565b600081359050613c8b8161545a565b92915050565b600081519050613ca08161545a565b92915050565b600082601f830112613cb757600080fd5b8135613cc7848260208601613b59565b91505092915050565b600082601f830112613ce157600080fd5b8135613cf1848260208601613b97565b91505092915050565b600082601f830112613d0b57600080fd5b8151613d1b848260208601613bd5565b91505092915050565b600081359050613d3381615471565b92915050565b600081519050613d4881615471565b92915050565b600060208284031215613d6057600080fd5b6000613d6e84828501613c13565b91505092915050565b600060208284031215613d8957600080fd5b6000613d9784828501613c28565b91505092915050565b60008060408385031215613db357600080fd5b6000613dc185828601613c13565b9250506020613dd285828601613c13565b9150509250929050565b600080600060608486031215613df157600080fd5b6000613dff86828701613c13565b9350506020613e1086828701613c13565b9250506040613e2186828701613d24565b9150509250925092565b60008060008060808587031215613e4157600080fd5b6000613e4f87828801613c13565b9450506020613e6087828801613c13565b9350506040613e7187828801613d24565b925050606085013567ffffffffffffffff811115613e8e57600080fd5b613e9a87828801613ca6565b91505092959194509250565b60008060408385031215613eb957600080fd5b6000613ec785828601613c13565b9250506020613ed885828601613c67565b9150509250929050565b60008060408385031215613ef557600080fd5b6000613f0385828601613c13565b9250506020613f1485828601613d24565b9150509250929050565b600060208284031215613f3057600080fd5b600082015167ffffffffffffffff811115613f4a57600080fd5b613f5684828501613c3d565b91505092915050565b600060208284031215613f7157600080fd5b6000613f7f84828501613c7c565b91505092915050565b600060208284031215613f9a57600080fd5b6000613fa884828501613c91565b91505092915050565b600060208284031215613fc357600080fd5b600082013567ffffffffffffffff811115613fdd57600080fd5b613fe984828501613cd0565b91505092915050565b60006020828403121561400457600080fd5b600082015167ffffffffffffffff81111561401e57600080fd5b61402a84828501613cfa565b91505092915050565b60006020828403121561404557600080fd5b600061405384828501613d24565b91505092915050565b60006020828403121561406e57600080fd5b600061407c84828501613d39565b91505092915050565b60006140918383614583565b60208301905092915050565b6140a681614c28565b82525050565b60006140b782614aa7565b6140c18185614ad5565b93506140cc83614a82565b8060005b838110156140fd5781516140e48882614085565b97506140ef83614ac8565b9250506001810190506140d0565b5085935050505092915050565b61411381614c3a565b82525050565b600061412482614ab2565b61412e8185614ae6565b935061413e818560208601614cab565b61414781614ea1565b840191505092915050565b600061415d82614abd565b6141678185614af7565b9350614177818560208601614cab565b61418081614ea1565b840191505092915050565b600061419682614abd565b6141a08185614b08565b93506141b0818560208601614cab565b80840191505092915050565b600081546141c981614d08565b6141d38186614b08565b945060018216600081146141ee57600181146141ff57614232565b60ff19831686528186019350614232565b61420885614a92565b60005b8381101561422a5781548189015260018201915060208101905061420b565b838801955050505b50505092915050565b6000614248600983614af7565b915061425382614eb2565b602082019050919050565b600061426b603283614af7565b915061427682614edb565b604082019050919050565b600061428e600883614af7565b915061429982614f2a565b602082019050919050565b60006142b1602683614af7565b91506142bc82614f53565b604082019050919050565b60006142d4601c83614af7565b91506142df82614fa2565b602082019050919050565b60006142f7600f83614af7565b915061430282614fcb565b602082019050919050565b600061431a602483614af7565b915061432582614ff4565b604082019050919050565b600061433d601983614af7565b915061434882615043565b602082019050919050565b6000614360600983614af7565b915061436b8261506c565b602082019050919050565b6000614383602c83614af7565b915061438e82615095565b604082019050919050565b60006143a6601983614af7565b91506143b1826150e4565b602082019050919050565b60006143c9601083614af7565b91506143d48261510d565b602082019050919050565b60006143ec603883614af7565b91506143f782615136565b604082019050919050565b600061440f602a83614af7565b915061441a82615185565b604082019050919050565b6000614432602983614af7565b915061443d826151d4565b604082019050919050565b6000614455602083614af7565b915061446082615223565b602082019050919050565b6000614478602c83614af7565b91506144838261524c565b604082019050919050565b600061449b602083614af7565b91506144a68261529b565b602082019050919050565b60006144be602983614af7565b91506144c9826152c4565b604082019050919050565b60006144e1602183614af7565b91506144ec82615313565b604082019050919050565b6000614504603183614af7565b915061450f82615362565b604082019050919050565b6000614527600883614af7565b9150614532826153b1565b602082019050919050565b600061454a601f83614af7565b9150614555826153da565b602082019050919050565b600061456d600783614af7565b915061457882615403565b602082019050919050565b61458c81614c92565b82525050565b61459b81614c92565b82525050565b60006145ad82856141bc565b91506145b9828461418b565b91508190509392505050565b60006020820190506145da600083018461409d565b92915050565b60006080820190506145f5600083018761409d565b614602602083018661409d565b61460f6040830185614592565b81810360608301526146218184614119565b905095945050505050565b6000604082019050614641600083018561409d565b61464e6020830184614592565b9392505050565b6000602082019050818103600083015261466f81846140ac565b905092915050565b600060208201905061468c600083018461410a565b92915050565b600060208201905081810360008301526146ac8184614152565b905092915050565b600060208201905081810360008301526146cd8161423b565b9050919050565b600060208201905081810360008301526146ed8161425e565b9050919050565b6000602082019050818103600083015261470d81614281565b9050919050565b6000602082019050818103600083015261472d816142a4565b9050919050565b6000602082019050818103600083015261474d816142c7565b9050919050565b6000602082019050818103600083015261476d816142ea565b9050919050565b6000602082019050818103600083015261478d8161430d565b9050919050565b600060208201905081810360008301526147ad81614330565b9050919050565b600060208201905081810360008301526147cd81614353565b9050919050565b600060208201905081810360008301526147ed81614376565b9050919050565b6000602082019050818103600083015261480d81614399565b9050919050565b6000602082019050818103600083015261482d816143bc565b9050919050565b6000602082019050818103600083015261484d816143df565b9050919050565b6000602082019050818103600083015261486d81614402565b9050919050565b6000602082019050818103600083015261488d81614425565b9050919050565b600060208201905081810360008301526148ad81614448565b9050919050565b600060208201905081810360008301526148cd8161446b565b9050919050565b600060208201905081810360008301526148ed8161448e565b9050919050565b6000602082019050818103600083015261490d816144b1565b9050919050565b6000602082019050818103600083015261492d816144d4565b9050919050565b6000602082019050818103600083015261494d816144f7565b9050919050565b6000602082019050818103600083015261496d8161451a565b9050919050565b6000602082019050818103600083015261498d8161453d565b9050919050565b600060208201905081810360008301526149ad81614560565b9050919050565b60006020820190506149c96000830184614592565b92915050565b60006149d96149ea565b90506149e58282614d3a565b919050565b6000604051905090565b600067ffffffffffffffff821115614a0f57614a0e614e72565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614a3b57614a3a614e72565b5b614a4482614ea1565b9050602081019050919050565b600067ffffffffffffffff821115614a6c57614a6b614e72565b5b614a7582614ea1565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614b1e82614c92565b9150614b2983614c92565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b5e57614b5d614de5565b5b828201905092915050565b6000614b7482614c92565b9150614b7f83614c92565b925082614b8f57614b8e614e14565b5b828204905092915050565b6000614ba582614c92565b9150614bb083614c92565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614be957614be8614de5565b5b828202905092915050565b6000614bff82614c92565b9150614c0a83614c92565b925082821015614c1d57614c1c614de5565b5b828203905092915050565b6000614c3382614c72565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614cc9578082015181840152602081019050614cae565b83811115614cd8576000848401525b50505050565b6000614ce982614c92565b91506000821415614cfd57614cfc614de5565b5b600182039050919050565b60006002820490506001821680614d2057607f821691505b60208210811415614d3457614d33614e43565b5b50919050565b614d4382614ea1565b810181811067ffffffffffffffff82111715614d6257614d61614e72565b5b80604052505050565b6000614d7682614c92565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614da957614da8614de5565b5b600182019050919050565b6000614dbf82614c92565b9150614dca83614c92565b925082614dda57614dd9614e14565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4d6178537570706c790000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f6d757374206f776e000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f616c726561647920636c61696d65640000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f77726f6e67207174790000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f53616c65206e6f742073746172746564206f7220656e64656400000000000000600082015250565b7f53616c65206e6f74207374617274656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6e6f7420574c6564000000000000000000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f6c6f772065746800000000000000000000000000000000000000000000000000600082015250565b61543581614c28565b811461544057600080fd5b50565b61544c81614c3a565b811461545757600080fd5b50565b61546381614c46565b811461546e57600080fd5b50565b61547a81614c92565b811461548557600080fd5b5056fea2646970667358221220da4702b1abb24ca37f64ef35460d18cb3ab446c67c4b886d7ea2b673fc7b891664736f6c63430008040033

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.