ETH Price: $2,274.63 (-6.05%)

Token

LIKOFASHION (LIKOFASHION)
 

Overview

Max Total Supply

64 LIKOFASHION

Holders

60

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 LIKOFASHION
0x386064895c37b306733c10161eb2821fa9bc63ca
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:
LikoNFTFinal

Compiler Version
v0.8.2+commit.661d1103

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : LikoNFT.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

import "./AvatarNFT.sol";

contract LikoNFTFinal is AvatarNFT {

    constructor() AvatarNFT(0.1 ether, 800, 800, "ipfs://QmVGSVvoCyqMonDeyNsNHB7RUJ1j2mziVqxqqTr72oNRVu/", "LIKOFASHION", "LIKOFASHION") {}
}

File 2 of 14 : AvatarNFT.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

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

contract AvatarNFT is ERC721, ERC721Enumerable, Ownable {

    uint256 internal _price; // = 0 ether;

    uint256 public MAX_SUPPLY; // = 3500;
    uint256 public MAX_TOKENS_PER_MINT; // = 2;

    uint256 public startingIndex;

    bool public _onlyWhitelisted = true;
    bool private _saleStarted = false;

    string public PROVENANCE_HASH = "";
    string public baseURI;

    mapping(address => bool) private whitelistedAddresses; // Added by Adiel

    constructor(
        uint256 _startPrice,
        uint256 _maxSupply,
        uint256 _maxTokensPerMint,
        string memory _uri,
        string memory _name,
         string memory _symbol
    ) ERC721(_name, _symbol) {
        _price = _startPrice;
        MAX_SUPPLY = _maxSupply;
        MAX_TOKENS_PER_MINT = _maxTokensPerMint;
        baseURI = _uri;
    }

    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }
    
    function contractURI() public view returns (string memory) {
        return baseURI;
    }

    function setBaseURI(string calldata uri) public onlyOwner {
        baseURI = uri;
    }

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

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

    function _checkSaleAllowed(address _address)
        internal
        view
        virtual
        returns (bool)
    {

        if (_onlyWhitelisted)
        {
            require(isAddressWhitelisted(_address) == true, "User isn't whitelisted");
        }

        return true;
    }

    modifier whenSaleStarted() {
        require(_saleStarted, "Sale not started");
        _;
    }

    modifier whenSaleAllowed(address _to) {
        require(_checkSaleAllowed(_to), "Sale not allowed");
        _;
    }

    function mint(uint256 _nbTokens) external payable whenSaleStarted whenSaleAllowed(msg.sender) {
        uint256 supply = totalSupply();
        require(_nbTokens <= MAX_TOKENS_PER_MINT, "You cannot mint more than MAX_TOKENS_PER_MINT tokens at once!");
        require(supply + _nbTokens <= MAX_SUPPLY, "Not enough Tokens left.");
        require(_nbTokens * _price <= msg.value, "Inconsistent amount sent!");

        for (uint256 i; i < _nbTokens; i++) {
            _safeMint(msg.sender, supply + i);
        }

        if ( whitelistedAddresses[msg.sender] == true)
        {
            whitelistedAddresses[msg.sender] = false;
        }
    }

    function _safeMint(address to, uint256 tokenId) internal override {
        _safeMint(to, tokenId, ".json");
    }

    function flipSaleStarted() external onlyOwner {
        _saleStarted = !_saleStarted;

        if (_saleStarted && startingIndex == 0) {
            setStartingIndex();
        }
    }

    function saleStarted() public view returns(bool) {
        return _saleStarted;
    }

    function setPrice(uint256 _newPrice) external onlyOwner {
        _price = _newPrice;
    }

    function getPrice() public view returns (uint256){
        return _price;
    }

    function setProvenanceHash(string memory provenanceHash) public onlyOwner {
        PROVENANCE_HASH = provenanceHash;
    }

    function walletOfOwner(address _owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    function setStartingIndex() public onlyOwner{
        require(startingIndex == 0, "Starting index is already set");

        uint256 _block_shift = uint(keccak256(abi.encodePacked(block.difficulty, block.timestamp)));
        _block_shift =  1 + (_block_shift % 255);

        if (block.number < _block_shift) {
            _block_shift = 1;
        }

        uint256 _block_ref = block.number - _block_shift;
        startingIndex = uint(blockhash(_block_ref)) % MAX_SUPPLY;

        // Prevent default sequence
        if (startingIndex == 0) {
            startingIndex = startingIndex + 1;
        }
    }

    function withdraw() public onlyOwner {
        uint256 _balance = address(this).balance;

        require(payable(msg.sender).send(_balance));
    }    

    function addAddressesToWhitelist(address[] memory _addressesToWhitelist) public onlyOwner {
        for (uint256 index = 0; index < _addressesToWhitelist.length; index++) {
            require(whitelistedAddresses[_addressesToWhitelist[index]] != true, "Address is already whitlisted");
            whitelistedAddresses[_addressesToWhitelist[index]] = true;
        }        
    }

    function removeAddressesFromWhitelist(address[] memory _addressesToRemove) public onlyOwner {
        for (uint256 index = 0; index < _addressesToRemove.length; index++) {
            require(whitelistedAddresses[_addressesToRemove[index]] == true, "Address isn't whitelisted");
            whitelistedAddresses[_addressesToRemove[index]] = false;
        }
    }

    function isAddressWhitelisted(address _whitelistedAddress) public view returns(bool) {
        return whitelistedAddresses[_whitelistedAddress] == true;
    }
    
    function flipOnlyWhitelist() public onlyOwner {
        _onlyWhitelisted = !_onlyWhitelisted;
    }

    function ownerMint(uint256 _nbTokens) external payable onlyOwner {
        uint256 supply = totalSupply();
        require(supply + _nbTokens <= MAX_SUPPLY, "Not enough Tokens left.");

        for (uint256 i; i < _nbTokens; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS_PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addressesToWhitelist","type":"address[]"}],"name":"addAddressesToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipOnlyWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_whitelistedAddress","type":"address"}],"name":"isAddressWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nbTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"_nbTokens","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addressesToRemove","type":"address[]"}],"name":"removeAddressesFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff02191690831515021790555060405180602001604052806000815250601090805190602001906200006192919062000261565b503480156200006f57600080fd5b5067016345785d8a00006103208060405180606001604052806036815260200162005632603691396040518060400160405280600b81526020017f4c494b4f46415348494f4e0000000000000000000000000000000000000000008152506040518060400160405280600b81526020017f4c494b4f46415348494f4e000000000000000000000000000000000000000000815250818181600090805190602001906200011d92919062000261565b5080600190805190602001906200013692919062000261565b505050620001596200014d6200019360201b60201c565b6200019b60201b60201c565b85600b8190555084600c8190555083600d8190555082601190805190602001906200018692919062000261565b5050505050505062000376565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200026f9062000311565b90600052602060002090601f016020900481019282620002935760008555620002df565b82601f10620002ae57805160ff1916838001178555620002df565b82800160010185558215620002df579182015b82811115620002de578251825591602001919060010190620002c1565b5b509050620002ee9190620002f2565b5090565b5b808211156200030d576000816000905550600101620002f3565b5090565b600060028204905060018216806200032a57607f821691505b6020821081141562000341576200034062000347565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6152ac80620003866000396000f3fe6080604052600436106102465760003560e01c80636c0360eb11610139578063a22cb465116100b6578063e8a3d4851161007a578063e8a3d4851461085b578063e985e9c514610886578063e9866550146108c3578063f19e75d4146108da578063f2fde38b146108f6578063ff1b65561461091f57610246565b8063a22cb46514610778578063b88d4fde146107a1578063c87b56dd146107ca578063cb774d4714610807578063e2ec6ec31461083257610246565b80638da5cb5b116100fd5780638da5cb5b146106b257806391b7f5ed146106dd57806395d89b411461070657806398d5fdca14610731578063a0712d681461075c57610246565b80636c0360eb1461060557806370a0823114610630578063715018a61461066d578063801352ec14610684578063899d7b381461069b57610246565b80632f745c59116101c7578063438b63001161018b578063438b6300146104fa5780634f6ccce71461053757806355f804b3146105745780635c474f9e1461059d5780636352211e146105c857610246565b80632f745c591461042757806332cb6b0c146104645780633377cd661461048f5780633ccfd60b146104ba57806342842e0e146104d157610246565b8063109695231161020e578063109695231461034457806313f44d101461036d57806318160ddd146103aa57806323b872dd146103d557806324953eaa146103fe57610246565b806301ffc9a71461024b578063026bf1361461028857806306fdde03146102b3578063081812fc146102de578063095ea7b31461031b575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613c30565b61094a565b60405161027f9190614327565b60405180910390f35b34801561029457600080fd5b5061029d61095c565b6040516102aa9190614327565b60405180910390f35b3480156102bf57600080fd5b506102c861096f565b6040516102d59190614342565b60405180910390f35b3480156102ea57600080fd5b5061030560048036038101906103009190613d08565b610a01565b604051610312919061429e565b60405180910390f35b34801561032757600080fd5b50610342600480360381019061033d9190613bb3565b610a86565b005b34801561035057600080fd5b5061036b60048036038101906103669190613cc7565b610b9e565b005b34801561037957600080fd5b50610394600480360381019061038f9190613a48565b610c34565b6040516103a19190614327565b60405180910390f35b3480156103b657600080fd5b506103bf610c91565b6040516103cc91906146c4565b60405180910390f35b3480156103e157600080fd5b506103fc60048036038101906103f79190613aad565b610c9e565b005b34801561040a57600080fd5b5061042560048036038101906104209190613bef565b610cfe565b005b34801561043357600080fd5b5061044e60048036038101906104499190613bb3565b610f08565b60405161045b91906146c4565b60405180910390f35b34801561047057600080fd5b50610479610fad565b60405161048691906146c4565b60405180910390f35b34801561049b57600080fd5b506104a4610fb3565b6040516104b191906146c4565b60405180910390f35b3480156104c657600080fd5b506104cf610fb9565b005b3480156104dd57600080fd5b506104f860048036038101906104f39190613aad565b61107b565b005b34801561050657600080fd5b50610521600480360381019061051c9190613a48565b61109b565b60405161052e9190614305565b60405180910390f35b34801561054357600080fd5b5061055e60048036038101906105599190613d08565b611195565b60405161056b91906146c4565b60405180910390f35b34801561058057600080fd5b5061059b60048036038101906105969190613c82565b61122c565b005b3480156105a957600080fd5b506105b26112be565b6040516105bf9190614327565b60405180910390f35b3480156105d457600080fd5b506105ef60048036038101906105ea9190613d08565b6112d5565b6040516105fc919061429e565b60405180910390f35b34801561061157600080fd5b5061061a611387565b6040516106279190614342565b60405180910390f35b34801561063c57600080fd5b5061065760048036038101906106529190613a48565b611415565b60405161066491906146c4565b60405180910390f35b34801561067957600080fd5b506106826114cd565b005b34801561069057600080fd5b50610699611555565b005b3480156106a757600080fd5b506106b06115fd565b005b3480156106be57600080fd5b506106c76116d1565b6040516106d4919061429e565b60405180910390f35b3480156106e957600080fd5b5061070460048036038101906106ff9190613d08565b6116fb565b005b34801561071257600080fd5b5061071b611781565b6040516107289190614342565b60405180910390f35b34801561073d57600080fd5b50610746611813565b60405161075391906146c4565b60405180910390f35b61077660048036038101906107719190613d08565b61181d565b005b34801561078457600080fd5b5061079f600480360381019061079a9190613b77565b611a91565b005b3480156107ad57600080fd5b506107c860048036038101906107c39190613afc565b611aa7565b005b3480156107d657600080fd5b506107f160048036038101906107ec9190613d08565b611b09565b6040516107fe9190614342565b60405180910390f35b34801561081357600080fd5b5061081c611bb0565b60405161082991906146c4565b60405180910390f35b34801561083e57600080fd5b5061085960048036038101906108549190613bef565b611bb6565b005b34801561086757600080fd5b50610870611dc1565b60405161087d9190614342565b60405180910390f35b34801561089257600080fd5b506108ad60048036038101906108a89190613a71565b611e53565b6040516108ba9190614327565b60405180910390f35b3480156108cf57600080fd5b506108d8611ee7565b005b6108f460048036038101906108ef9190613d08565b61204d565b005b34801561090257600080fd5b5061091d60048036038101906109189190613a48565b61215d565b005b34801561092b57600080fd5b50610934612255565b6040516109419190614342565b60405180910390f35b6000610955826122e3565b9050919050565b600f60009054906101000a900460ff1681565b60606000805461097e906149d9565b80601f01602080910402602001604051908101604052809291908181526020018280546109aa906149d9565b80156109f75780601f106109cc576101008083540402835291602001916109f7565b820191906000526020600020905b8154815290600101906020018083116109da57829003601f168201915b5050505050905090565b6000610a0c8261235d565b610a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4290614524565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a91826112d5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af9906145e4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b216123c9565b73ffffffffffffffffffffffffffffffffffffffff161480610b505750610b4f81610b4a6123c9565b611e53565b5b610b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b86906144a4565b60405180910390fd5b610b9983836123d1565b505050565b610ba66123c9565b73ffffffffffffffffffffffffffffffffffffffff16610bc46116d1565b73ffffffffffffffffffffffffffffffffffffffff1614610c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1190614544565b60405180910390fd5b8060109080519060200190610c30929190613706565b5050565b600060011515601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515149050919050565b6000600880549050905090565b610caf610ca96123c9565b8261248a565b610cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce590614644565b60405180910390fd5b610cf9838383612568565b505050565b610d066123c9565b73ffffffffffffffffffffffffffffffffffffffff16610d246116d1565b73ffffffffffffffffffffffffffffffffffffffff1614610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7190614544565b60405180910390fd5b60005b8151811015610f04576001151560126000848481518110610dc7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5090614624565b60405180910390fd5b600060126000848481518110610e98577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610efc90614a3c565b915050610d7d565b5050565b6000610f1383611415565b8210610f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4b90614364565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600c5481565b600d5481565b610fc16123c9565b73ffffffffffffffffffffffffffffffffffffffff16610fdf6116d1565b73ffffffffffffffffffffffffffffffffffffffff1614611035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102c90614544565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061107857600080fd5b50565b61109683838360405180602001604052806000815250611aa7565b505050565b606060006110a883611415565b905060008167ffffffffffffffff8111156110ec577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561111a5781602001602082028036833780820191505090505b50905060005b8281101561118a576111328582610f08565b82828151811061116b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061118290614a3c565b915050611120565b508092505050919050565b600061119f610c91565b82106111e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d790614664565b60405180910390fd5b6008828154811061121a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6112346123c9565b73ffffffffffffffffffffffffffffffffffffffff166112526116d1565b73ffffffffffffffffffffffffffffffffffffffff16146112a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129f90614544565b60405180910390fd5b8181601191906112b992919061378c565b505050565b6000600f60019054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561137e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611375906144e4565b60405180910390fd5b80915050919050565b60118054611394906149d9565b80601f01602080910402602001604051908101604052809291908181526020018280546113c0906149d9565b801561140d5780601f106113e25761010080835404028352916020019161140d565b820191906000526020600020905b8154815290600101906020018083116113f057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147d906144c4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114d56123c9565b73ffffffffffffffffffffffffffffffffffffffff166114f36116d1565b73ffffffffffffffffffffffffffffffffffffffff1614611549576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154090614544565b60405180910390fd5b61155360006127c4565b565b61155d6123c9565b73ffffffffffffffffffffffffffffffffffffffff1661157b6116d1565b73ffffffffffffffffffffffffffffffffffffffff16146115d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c890614544565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6116056123c9565b73ffffffffffffffffffffffffffffffffffffffff166116236116d1565b73ffffffffffffffffffffffffffffffffffffffff1614611679576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167090614544565b60405180910390fd5b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550600f60019054906101000a900460ff1680156116c157506000600e54145b156116cf576116ce611ee7565b5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6117036123c9565b73ffffffffffffffffffffffffffffffffffffffff166117216116d1565b73ffffffffffffffffffffffffffffffffffffffff1614611777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176e90614544565b60405180910390fd5b80600b8190555050565b606060018054611790906149d9565b80601f01602080910402602001604051908101604052809291908181526020018280546117bc906149d9565b80156118095780601f106117de57610100808354040283529160200191611809565b820191906000526020600020905b8154815290600101906020018083116117ec57829003601f168201915b5050505050905090565b6000600b54905090565b600f60019054906101000a900460ff1661186c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186390614484565b60405180910390fd5b336118768161288a565b6118b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ac906146a4565b60405180910390fd5b60006118bf610c91565b9050600d54831115611906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fd906145c4565b60405180910390fd5b600c548382611915919061480e565b1115611956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194d90614564565b60405180910390fd5b34600b54846119659190614895565b11156119a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199d90614424565b60405180910390fd5b60005b838110156119d9576119c63382846119c1919061480e565b6128fa565b80806119d190614a3c565b9150506119a9565b5060011515601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415611a8c576000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b505050565b611aa3611a9c6123c9565b838361293e565b5050565b611ab8611ab26123c9565b8361248a565b611af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aee90614644565b60405180910390fd5b611b0384848484612aab565b50505050565b6060611b148261235d565b611b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4a906145a4565b60405180910390fd5b6000611b5d612b07565b90506000815111611b7d5760405180602001604052806000815250611ba8565b80611b8784612b99565b604051602001611b9892919061424e565b6040516020818303038152906040525b915050919050565b600e5481565b611bbe6123c9565b73ffffffffffffffffffffffffffffffffffffffff16611bdc6116d1565b73ffffffffffffffffffffffffffffffffffffffff1614611c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2990614544565b60405180910390fd5b60005b8151811015611dbd576001151560126000848481518110611c7f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415611d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0990614604565b60405180910390fd5b600160126000848481518110611d51577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611db590614a3c565b915050611c35565b5050565b606060118054611dd0906149d9565b80601f0160208091040260200160405190810160405280929190818152602001828054611dfc906149d9565b8015611e495780601f10611e1e57610100808354040283529160200191611e49565b820191906000526020600020905b815481529060010190602001808311611e2c57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611eef6123c9565b73ffffffffffffffffffffffffffffffffffffffff16611f0d6116d1565b73ffffffffffffffffffffffffffffffffffffffff1614611f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5a90614544565b60405180910390fd5b6000600e5414611fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9f90614464565b60405180910390fd5b60004442604051602001611fbd929190614272565b6040516020818303038152906040528051906020012060001c905060ff81611fe59190614a8f565b6001611ff1919061480e565b90508043101561200057600190505b6000814361200e91906148ef565b9050600c54814060001c6120229190614a8f565b600e819055506000600e541415612049576001600e54612042919061480e565b600e819055505b5050565b6120556123c9565b73ffffffffffffffffffffffffffffffffffffffff166120736116d1565b73ffffffffffffffffffffffffffffffffffffffff16146120c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c090614544565b60405180910390fd5b60006120d3610c91565b9050600c5482826120e4919061480e565b1115612125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211c90614564565b60405180910390fd5b60005b8281101561215857612145338284612140919061480e565b6128fa565b808061215090614a3c565b915050612128565b505050565b6121656123c9565b73ffffffffffffffffffffffffffffffffffffffff166121836116d1565b73ffffffffffffffffffffffffffffffffffffffff16146121d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d090614544565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612249576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612240906143a4565b60405180910390fd5b612252816127c4565b50565b60108054612262906149d9565b80601f016020809104026020016040519081016040528092919081815260200182805461228e906149d9565b80156122db5780601f106122b0576101008083540402835291602001916122db565b820191906000526020600020905b8154815290600101906020018083116122be57829003601f168201915b505050505081565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612356575061235582612d46565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612444836112d5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006124958261235d565b6124d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cb90614444565b60405180910390fd5b60006124df836112d5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061254e57508373ffffffffffffffffffffffffffffffffffffffff1661253684610a01565b73ffffffffffffffffffffffffffffffffffffffff16145b8061255f575061255e8185611e53565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612588826112d5565b73ffffffffffffffffffffffffffffffffffffffff16146125de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d590614584565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561264e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612645906143e4565b60405180910390fd5b612659838383612e28565b6126646000826123d1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126b491906148ef565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461270b919061480e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600f60009054906101000a900460ff16156128f157600115156128ae83610c34565b1515146128f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e790614684565b60405180910390fd5b5b60019050919050565b61293a82826040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250612e38565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a490614404565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612a9e9190614327565b60405180910390a3505050565b612ab6848484612568565b612ac284848484612e93565b612b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af890614384565b60405180910390fd5b50505050565b606060118054612b16906149d9565b80601f0160208091040260200160405190810160405280929190818152602001828054612b42906149d9565b8015612b8f5780601f10612b6457610100808354040283529160200191612b8f565b820191906000526020600020905b815481529060010190602001808311612b7257829003601f168201915b5050505050905090565b60606000821415612be1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d41565b600082905060005b60008214612c13578080612bfc90614a3c565b915050600a82612c0c9190614864565b9150612be9565b60008167ffffffffffffffff811115612c55577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612c875781602001600182028036833780820191505090505b5090505b60008514612d3a57600182612ca091906148ef565b9150600a85612caf9190614a8f565b6030612cbb919061480e565b60f81b818381518110612cf7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d339190614864565b9450612c8b565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612e1157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612e215750612e208261302a565b5b9050919050565b612e33838383613094565b505050565b612e4283836131a8565b612e4f6000848484612e93565b612e8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8590614384565b60405180910390fd5b505050565b6000612eb48473ffffffffffffffffffffffffffffffffffffffff16613376565b1561301d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612edd6123c9565b8786866040518563ffffffff1660e01b8152600401612eff94939291906142b9565b602060405180830381600087803b158015612f1957600080fd5b505af1925050508015612f4a57506040513d601f19601f82011682018060405250810190612f479190613c59565b60015b612fcd573d8060008114612f7a576040519150601f19603f3d011682016040523d82523d6000602084013e612f7f565b606091505b50600081511415612fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fbc90614384565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613022565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61309f838383613389565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156130e2576130dd8161338e565b613121565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146131205761311f83826133d7565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131645761315f81613544565b6131a3565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146131a2576131a18282613687565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320f90614504565b60405180910390fd5b6132218161235d565b15613261576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613258906143c4565b60405180910390fd5b61326d60008383612e28565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132bd919061480e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016133e484611415565b6133ee91906148ef565b90506000600760008481526020019081526020016000205490508181146134d3576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061355891906148ef565b90506000600960008481526020019081526020016000205490506000600883815481106135ae577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106135f6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061366b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061369283611415565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054613712906149d9565b90600052602060002090601f016020900481019282613734576000855561377b565b82601f1061374d57805160ff191683800117855561377b565b8280016001018555821561377b579182015b8281111561377a57825182559160200191906001019061375f565b5b5090506137889190613812565b5090565b828054613798906149d9565b90600052602060002090601f0160209004810192826137ba5760008555613801565b82601f106137d357803560ff1916838001178555613801565b82800160010185558215613801579182015b828111156138005782358255916020019190600101906137e5565b5b50905061380e9190613812565b5090565b5b8082111561382b576000816000905550600101613813565b5090565b600061384261383d84614704565b6146df565b9050808382526020820190508285602086028201111561386157600080fd5b60005b8581101561389157816138778882613917565b845260208401935060208301925050600181019050613864565b5050509392505050565b60006138ae6138a984614730565b6146df565b9050828152602081018484840111156138c657600080fd5b6138d1848285614997565b509392505050565b60006138ec6138e784614761565b6146df565b90508281526020810184848401111561390457600080fd5b61390f848285614997565b509392505050565b6000813590506139268161521a565b92915050565b600082601f83011261393d57600080fd5b813561394d84826020860161382f565b91505092915050565b60008135905061396581615231565b92915050565b60008135905061397a81615248565b92915050565b60008151905061398f81615248565b92915050565b600082601f8301126139a657600080fd5b81356139b684826020860161389b565b91505092915050565b60008083601f8401126139d157600080fd5b8235905067ffffffffffffffff8111156139ea57600080fd5b602083019150836001820283011115613a0257600080fd5b9250929050565b600082601f830112613a1a57600080fd5b8135613a2a8482602086016138d9565b91505092915050565b600081359050613a428161525f565b92915050565b600060208284031215613a5a57600080fd5b6000613a6884828501613917565b91505092915050565b60008060408385031215613a8457600080fd5b6000613a9285828601613917565b9250506020613aa385828601613917565b9150509250929050565b600080600060608486031215613ac257600080fd5b6000613ad086828701613917565b9350506020613ae186828701613917565b9250506040613af286828701613a33565b9150509250925092565b60008060008060808587031215613b1257600080fd5b6000613b2087828801613917565b9450506020613b3187828801613917565b9350506040613b4287828801613a33565b925050606085013567ffffffffffffffff811115613b5f57600080fd5b613b6b87828801613995565b91505092959194509250565b60008060408385031215613b8a57600080fd5b6000613b9885828601613917565b9250506020613ba985828601613956565b9150509250929050565b60008060408385031215613bc657600080fd5b6000613bd485828601613917565b9250506020613be585828601613a33565b9150509250929050565b600060208284031215613c0157600080fd5b600082013567ffffffffffffffff811115613c1b57600080fd5b613c278482850161392c565b91505092915050565b600060208284031215613c4257600080fd5b6000613c508482850161396b565b91505092915050565b600060208284031215613c6b57600080fd5b6000613c7984828501613980565b91505092915050565b60008060208385031215613c9557600080fd5b600083013567ffffffffffffffff811115613caf57600080fd5b613cbb858286016139bf565b92509250509250929050565b600060208284031215613cd957600080fd5b600082013567ffffffffffffffff811115613cf357600080fd5b613cff84828501613a09565b91505092915050565b600060208284031215613d1a57600080fd5b6000613d2884828501613a33565b91505092915050565b6000613d3d8383614219565b60208301905092915050565b613d5281614923565b82525050565b6000613d63826147a2565b613d6d81856147d0565b9350613d7883614792565b8060005b83811015613da9578151613d908882613d31565b9750613d9b836147c3565b925050600181019050613d7c565b5085935050505092915050565b613dbf81614935565b82525050565b6000613dd0826147ad565b613dda81856147e1565b9350613dea8185602086016149a6565b613df381614b7c565b840191505092915050565b6000613e09826147b8565b613e1381856147f2565b9350613e238185602086016149a6565b613e2c81614b7c565b840191505092915050565b6000613e42826147b8565b613e4c8185614803565b9350613e5c8185602086016149a6565b80840191505092915050565b6000613e75602b836147f2565b9150613e8082614b8d565b604082019050919050565b6000613e986032836147f2565b9150613ea382614bdc565b604082019050919050565b6000613ebb6026836147f2565b9150613ec682614c2b565b604082019050919050565b6000613ede601c836147f2565b9150613ee982614c7a565b602082019050919050565b6000613f016024836147f2565b9150613f0c82614ca3565b604082019050919050565b6000613f246019836147f2565b9150613f2f82614cf2565b602082019050919050565b6000613f476019836147f2565b9150613f5282614d1b565b602082019050919050565b6000613f6a602c836147f2565b9150613f7582614d44565b604082019050919050565b6000613f8d601d836147f2565b9150613f9882614d93565b602082019050919050565b6000613fb06010836147f2565b9150613fbb82614dbc565b602082019050919050565b6000613fd36038836147f2565b9150613fde82614de5565b604082019050919050565b6000613ff6602a836147f2565b915061400182614e34565b604082019050919050565b60006140196029836147f2565b915061402482614e83565b604082019050919050565b600061403c6020836147f2565b915061404782614ed2565b602082019050919050565b600061405f602c836147f2565b915061406a82614efb565b604082019050919050565b60006140826020836147f2565b915061408d82614f4a565b602082019050919050565b60006140a56017836147f2565b91506140b082614f73565b602082019050919050565b60006140c86029836147f2565b91506140d382614f9c565b604082019050919050565b60006140eb602f836147f2565b91506140f682614feb565b604082019050919050565b600061410e603d836147f2565b91506141198261503a565b604082019050919050565b60006141316021836147f2565b915061413c82615089565b604082019050919050565b6000614154601d836147f2565b915061415f826150d8565b602082019050919050565b60006141776019836147f2565b915061418282615101565b602082019050919050565b600061419a6031836147f2565b91506141a58261512a565b604082019050919050565b60006141bd602c836147f2565b91506141c882615179565b604082019050919050565b60006141e06016836147f2565b91506141eb826151c8565b602082019050919050565b60006142036010836147f2565b915061420e826151f1565b602082019050919050565b6142228161498d565b82525050565b6142318161498d565b82525050565b6142486142438261498d565b614a85565b82525050565b600061425a8285613e37565b91506142668284613e37565b91508190509392505050565b600061427e8285614237565b60208201915061428e8284614237565b6020820191508190509392505050565b60006020820190506142b36000830184613d49565b92915050565b60006080820190506142ce6000830187613d49565b6142db6020830186613d49565b6142e86040830185614228565b81810360608301526142fa8184613dc5565b905095945050505050565b6000602082019050818103600083015261431f8184613d58565b905092915050565b600060208201905061433c6000830184613db6565b92915050565b6000602082019050818103600083015261435c8184613dfe565b905092915050565b6000602082019050818103600083015261437d81613e68565b9050919050565b6000602082019050818103600083015261439d81613e8b565b9050919050565b600060208201905081810360008301526143bd81613eae565b9050919050565b600060208201905081810360008301526143dd81613ed1565b9050919050565b600060208201905081810360008301526143fd81613ef4565b9050919050565b6000602082019050818103600083015261441d81613f17565b9050919050565b6000602082019050818103600083015261443d81613f3a565b9050919050565b6000602082019050818103600083015261445d81613f5d565b9050919050565b6000602082019050818103600083015261447d81613f80565b9050919050565b6000602082019050818103600083015261449d81613fa3565b9050919050565b600060208201905081810360008301526144bd81613fc6565b9050919050565b600060208201905081810360008301526144dd81613fe9565b9050919050565b600060208201905081810360008301526144fd8161400c565b9050919050565b6000602082019050818103600083015261451d8161402f565b9050919050565b6000602082019050818103600083015261453d81614052565b9050919050565b6000602082019050818103600083015261455d81614075565b9050919050565b6000602082019050818103600083015261457d81614098565b9050919050565b6000602082019050818103600083015261459d816140bb565b9050919050565b600060208201905081810360008301526145bd816140de565b9050919050565b600060208201905081810360008301526145dd81614101565b9050919050565b600060208201905081810360008301526145fd81614124565b9050919050565b6000602082019050818103600083015261461d81614147565b9050919050565b6000602082019050818103600083015261463d8161416a565b9050919050565b6000602082019050818103600083015261465d8161418d565b9050919050565b6000602082019050818103600083015261467d816141b0565b9050919050565b6000602082019050818103600083015261469d816141d3565b9050919050565b600060208201905081810360008301526146bd816141f6565b9050919050565b60006020820190506146d96000830184614228565b92915050565b60006146e96146fa565b90506146f58282614a0b565b919050565b6000604051905090565b600067ffffffffffffffff82111561471f5761471e614b4d565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561474b5761474a614b4d565b5b61475482614b7c565b9050602081019050919050565b600067ffffffffffffffff82111561477c5761477b614b4d565b5b61478582614b7c565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006148198261498d565b91506148248361498d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561485957614858614ac0565b5b828201905092915050565b600061486f8261498d565b915061487a8361498d565b92508261488a57614889614aef565b5b828204905092915050565b60006148a08261498d565b91506148ab8361498d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156148e4576148e3614ac0565b5b828202905092915050565b60006148fa8261498d565b91506149058361498d565b92508282101561491857614917614ac0565b5b828203905092915050565b600061492e8261496d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156149c45780820151818401526020810190506149a9565b838111156149d3576000848401525b50505050565b600060028204905060018216806149f157607f821691505b60208210811415614a0557614a04614b1e565b5b50919050565b614a1482614b7c565b810181811067ffffffffffffffff82111715614a3357614a32614b4d565b5b80604052505050565b6000614a478261498d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614a7a57614a79614ac0565b5b600182019050919050565b6000819050919050565b6000614a9a8261498d565b9150614aa58361498d565b925082614ab557614ab4614aef565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f496e636f6e73697374656e7420616d6f756e742073656e742100000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5374617274696e6720696e64657820697320616c726561647920736574000000600082015250565b7f53616c65206e6f74207374617274656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f7420656e6f75676820546f6b656e73206c6566742e000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f596f752063616e6e6f74206d696e74206d6f7265207468616e204d41585f544f60008201527f4b454e535f5045525f4d494e5420746f6b656e73206174206f6e636521000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4164647265737320697320616c726561647920776869746c6973746564000000600082015250565b7f416464726573732069736e27742077686974656c697374656400000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f557365722069736e27742077686974656c697374656400000000000000000000600082015250565b7f53616c65206e6f7420616c6c6f77656400000000000000000000000000000000600082015250565b61522381614923565b811461522e57600080fd5b50565b61523a81614935565b811461524557600080fd5b50565b61525181614941565b811461525c57600080fd5b50565b6152688161498d565b811461527357600080fd5b5056fea2646970667358221220bcbf580fbb19860e65dc843cecc427ca2adefe7baacdc9ec27394ed1b5fd3f8964736f6c63430008020033697066733a2f2f516d56475356766f4379714d6f6e4465794e734e48423752554a316a326d7a695671787171547237326f4e5256752f

Deployed Bytecode

0x6080604052600436106102465760003560e01c80636c0360eb11610139578063a22cb465116100b6578063e8a3d4851161007a578063e8a3d4851461085b578063e985e9c514610886578063e9866550146108c3578063f19e75d4146108da578063f2fde38b146108f6578063ff1b65561461091f57610246565b8063a22cb46514610778578063b88d4fde146107a1578063c87b56dd146107ca578063cb774d4714610807578063e2ec6ec31461083257610246565b80638da5cb5b116100fd5780638da5cb5b146106b257806391b7f5ed146106dd57806395d89b411461070657806398d5fdca14610731578063a0712d681461075c57610246565b80636c0360eb1461060557806370a0823114610630578063715018a61461066d578063801352ec14610684578063899d7b381461069b57610246565b80632f745c59116101c7578063438b63001161018b578063438b6300146104fa5780634f6ccce71461053757806355f804b3146105745780635c474f9e1461059d5780636352211e146105c857610246565b80632f745c591461042757806332cb6b0c146104645780633377cd661461048f5780633ccfd60b146104ba57806342842e0e146104d157610246565b8063109695231161020e578063109695231461034457806313f44d101461036d57806318160ddd146103aa57806323b872dd146103d557806324953eaa146103fe57610246565b806301ffc9a71461024b578063026bf1361461028857806306fdde03146102b3578063081812fc146102de578063095ea7b31461031b575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613c30565b61094a565b60405161027f9190614327565b60405180910390f35b34801561029457600080fd5b5061029d61095c565b6040516102aa9190614327565b60405180910390f35b3480156102bf57600080fd5b506102c861096f565b6040516102d59190614342565b60405180910390f35b3480156102ea57600080fd5b5061030560048036038101906103009190613d08565b610a01565b604051610312919061429e565b60405180910390f35b34801561032757600080fd5b50610342600480360381019061033d9190613bb3565b610a86565b005b34801561035057600080fd5b5061036b60048036038101906103669190613cc7565b610b9e565b005b34801561037957600080fd5b50610394600480360381019061038f9190613a48565b610c34565b6040516103a19190614327565b60405180910390f35b3480156103b657600080fd5b506103bf610c91565b6040516103cc91906146c4565b60405180910390f35b3480156103e157600080fd5b506103fc60048036038101906103f79190613aad565b610c9e565b005b34801561040a57600080fd5b5061042560048036038101906104209190613bef565b610cfe565b005b34801561043357600080fd5b5061044e60048036038101906104499190613bb3565b610f08565b60405161045b91906146c4565b60405180910390f35b34801561047057600080fd5b50610479610fad565b60405161048691906146c4565b60405180910390f35b34801561049b57600080fd5b506104a4610fb3565b6040516104b191906146c4565b60405180910390f35b3480156104c657600080fd5b506104cf610fb9565b005b3480156104dd57600080fd5b506104f860048036038101906104f39190613aad565b61107b565b005b34801561050657600080fd5b50610521600480360381019061051c9190613a48565b61109b565b60405161052e9190614305565b60405180910390f35b34801561054357600080fd5b5061055e60048036038101906105599190613d08565b611195565b60405161056b91906146c4565b60405180910390f35b34801561058057600080fd5b5061059b60048036038101906105969190613c82565b61122c565b005b3480156105a957600080fd5b506105b26112be565b6040516105bf9190614327565b60405180910390f35b3480156105d457600080fd5b506105ef60048036038101906105ea9190613d08565b6112d5565b6040516105fc919061429e565b60405180910390f35b34801561061157600080fd5b5061061a611387565b6040516106279190614342565b60405180910390f35b34801561063c57600080fd5b5061065760048036038101906106529190613a48565b611415565b60405161066491906146c4565b60405180910390f35b34801561067957600080fd5b506106826114cd565b005b34801561069057600080fd5b50610699611555565b005b3480156106a757600080fd5b506106b06115fd565b005b3480156106be57600080fd5b506106c76116d1565b6040516106d4919061429e565b60405180910390f35b3480156106e957600080fd5b5061070460048036038101906106ff9190613d08565b6116fb565b005b34801561071257600080fd5b5061071b611781565b6040516107289190614342565b60405180910390f35b34801561073d57600080fd5b50610746611813565b60405161075391906146c4565b60405180910390f35b61077660048036038101906107719190613d08565b61181d565b005b34801561078457600080fd5b5061079f600480360381019061079a9190613b77565b611a91565b005b3480156107ad57600080fd5b506107c860048036038101906107c39190613afc565b611aa7565b005b3480156107d657600080fd5b506107f160048036038101906107ec9190613d08565b611b09565b6040516107fe9190614342565b60405180910390f35b34801561081357600080fd5b5061081c611bb0565b60405161082991906146c4565b60405180910390f35b34801561083e57600080fd5b5061085960048036038101906108549190613bef565b611bb6565b005b34801561086757600080fd5b50610870611dc1565b60405161087d9190614342565b60405180910390f35b34801561089257600080fd5b506108ad60048036038101906108a89190613a71565b611e53565b6040516108ba9190614327565b60405180910390f35b3480156108cf57600080fd5b506108d8611ee7565b005b6108f460048036038101906108ef9190613d08565b61204d565b005b34801561090257600080fd5b5061091d60048036038101906109189190613a48565b61215d565b005b34801561092b57600080fd5b50610934612255565b6040516109419190614342565b60405180910390f35b6000610955826122e3565b9050919050565b600f60009054906101000a900460ff1681565b60606000805461097e906149d9565b80601f01602080910402602001604051908101604052809291908181526020018280546109aa906149d9565b80156109f75780601f106109cc576101008083540402835291602001916109f7565b820191906000526020600020905b8154815290600101906020018083116109da57829003601f168201915b5050505050905090565b6000610a0c8261235d565b610a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4290614524565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a91826112d5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af9906145e4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b216123c9565b73ffffffffffffffffffffffffffffffffffffffff161480610b505750610b4f81610b4a6123c9565b611e53565b5b610b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b86906144a4565b60405180910390fd5b610b9983836123d1565b505050565b610ba66123c9565b73ffffffffffffffffffffffffffffffffffffffff16610bc46116d1565b73ffffffffffffffffffffffffffffffffffffffff1614610c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1190614544565b60405180910390fd5b8060109080519060200190610c30929190613706565b5050565b600060011515601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515149050919050565b6000600880549050905090565b610caf610ca96123c9565b8261248a565b610cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce590614644565b60405180910390fd5b610cf9838383612568565b505050565b610d066123c9565b73ffffffffffffffffffffffffffffffffffffffff16610d246116d1565b73ffffffffffffffffffffffffffffffffffffffff1614610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7190614544565b60405180910390fd5b60005b8151811015610f04576001151560126000848481518110610dc7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5090614624565b60405180910390fd5b600060126000848481518110610e98577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610efc90614a3c565b915050610d7d565b5050565b6000610f1383611415565b8210610f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4b90614364565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600c5481565b600d5481565b610fc16123c9565b73ffffffffffffffffffffffffffffffffffffffff16610fdf6116d1565b73ffffffffffffffffffffffffffffffffffffffff1614611035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102c90614544565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061107857600080fd5b50565b61109683838360405180602001604052806000815250611aa7565b505050565b606060006110a883611415565b905060008167ffffffffffffffff8111156110ec577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561111a5781602001602082028036833780820191505090505b50905060005b8281101561118a576111328582610f08565b82828151811061116b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061118290614a3c565b915050611120565b508092505050919050565b600061119f610c91565b82106111e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d790614664565b60405180910390fd5b6008828154811061121a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6112346123c9565b73ffffffffffffffffffffffffffffffffffffffff166112526116d1565b73ffffffffffffffffffffffffffffffffffffffff16146112a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129f90614544565b60405180910390fd5b8181601191906112b992919061378c565b505050565b6000600f60019054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561137e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611375906144e4565b60405180910390fd5b80915050919050565b60118054611394906149d9565b80601f01602080910402602001604051908101604052809291908181526020018280546113c0906149d9565b801561140d5780601f106113e25761010080835404028352916020019161140d565b820191906000526020600020905b8154815290600101906020018083116113f057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147d906144c4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114d56123c9565b73ffffffffffffffffffffffffffffffffffffffff166114f36116d1565b73ffffffffffffffffffffffffffffffffffffffff1614611549576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154090614544565b60405180910390fd5b61155360006127c4565b565b61155d6123c9565b73ffffffffffffffffffffffffffffffffffffffff1661157b6116d1565b73ffffffffffffffffffffffffffffffffffffffff16146115d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c890614544565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6116056123c9565b73ffffffffffffffffffffffffffffffffffffffff166116236116d1565b73ffffffffffffffffffffffffffffffffffffffff1614611679576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167090614544565b60405180910390fd5b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550600f60019054906101000a900460ff1680156116c157506000600e54145b156116cf576116ce611ee7565b5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6117036123c9565b73ffffffffffffffffffffffffffffffffffffffff166117216116d1565b73ffffffffffffffffffffffffffffffffffffffff1614611777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176e90614544565b60405180910390fd5b80600b8190555050565b606060018054611790906149d9565b80601f01602080910402602001604051908101604052809291908181526020018280546117bc906149d9565b80156118095780601f106117de57610100808354040283529160200191611809565b820191906000526020600020905b8154815290600101906020018083116117ec57829003601f168201915b5050505050905090565b6000600b54905090565b600f60019054906101000a900460ff1661186c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186390614484565b60405180910390fd5b336118768161288a565b6118b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ac906146a4565b60405180910390fd5b60006118bf610c91565b9050600d54831115611906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fd906145c4565b60405180910390fd5b600c548382611915919061480e565b1115611956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194d90614564565b60405180910390fd5b34600b54846119659190614895565b11156119a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199d90614424565b60405180910390fd5b60005b838110156119d9576119c63382846119c1919061480e565b6128fa565b80806119d190614a3c565b9150506119a9565b5060011515601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415611a8c576000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b505050565b611aa3611a9c6123c9565b838361293e565b5050565b611ab8611ab26123c9565b8361248a565b611af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aee90614644565b60405180910390fd5b611b0384848484612aab565b50505050565b6060611b148261235d565b611b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4a906145a4565b60405180910390fd5b6000611b5d612b07565b90506000815111611b7d5760405180602001604052806000815250611ba8565b80611b8784612b99565b604051602001611b9892919061424e565b6040516020818303038152906040525b915050919050565b600e5481565b611bbe6123c9565b73ffffffffffffffffffffffffffffffffffffffff16611bdc6116d1565b73ffffffffffffffffffffffffffffffffffffffff1614611c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2990614544565b60405180910390fd5b60005b8151811015611dbd576001151560126000848481518110611c7f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415611d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0990614604565b60405180910390fd5b600160126000848481518110611d51577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611db590614a3c565b915050611c35565b5050565b606060118054611dd0906149d9565b80601f0160208091040260200160405190810160405280929190818152602001828054611dfc906149d9565b8015611e495780601f10611e1e57610100808354040283529160200191611e49565b820191906000526020600020905b815481529060010190602001808311611e2c57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611eef6123c9565b73ffffffffffffffffffffffffffffffffffffffff16611f0d6116d1565b73ffffffffffffffffffffffffffffffffffffffff1614611f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5a90614544565b60405180910390fd5b6000600e5414611fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9f90614464565b60405180910390fd5b60004442604051602001611fbd929190614272565b6040516020818303038152906040528051906020012060001c905060ff81611fe59190614a8f565b6001611ff1919061480e565b90508043101561200057600190505b6000814361200e91906148ef565b9050600c54814060001c6120229190614a8f565b600e819055506000600e541415612049576001600e54612042919061480e565b600e819055505b5050565b6120556123c9565b73ffffffffffffffffffffffffffffffffffffffff166120736116d1565b73ffffffffffffffffffffffffffffffffffffffff16146120c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c090614544565b60405180910390fd5b60006120d3610c91565b9050600c5482826120e4919061480e565b1115612125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211c90614564565b60405180910390fd5b60005b8281101561215857612145338284612140919061480e565b6128fa565b808061215090614a3c565b915050612128565b505050565b6121656123c9565b73ffffffffffffffffffffffffffffffffffffffff166121836116d1565b73ffffffffffffffffffffffffffffffffffffffff16146121d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d090614544565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612249576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612240906143a4565b60405180910390fd5b612252816127c4565b50565b60108054612262906149d9565b80601f016020809104026020016040519081016040528092919081815260200182805461228e906149d9565b80156122db5780601f106122b0576101008083540402835291602001916122db565b820191906000526020600020905b8154815290600101906020018083116122be57829003601f168201915b505050505081565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612356575061235582612d46565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612444836112d5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006124958261235d565b6124d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cb90614444565b60405180910390fd5b60006124df836112d5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061254e57508373ffffffffffffffffffffffffffffffffffffffff1661253684610a01565b73ffffffffffffffffffffffffffffffffffffffff16145b8061255f575061255e8185611e53565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612588826112d5565b73ffffffffffffffffffffffffffffffffffffffff16146125de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d590614584565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561264e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612645906143e4565b60405180910390fd5b612659838383612e28565b6126646000826123d1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126b491906148ef565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461270b919061480e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600f60009054906101000a900460ff16156128f157600115156128ae83610c34565b1515146128f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e790614684565b60405180910390fd5b5b60019050919050565b61293a82826040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250612e38565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a490614404565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612a9e9190614327565b60405180910390a3505050565b612ab6848484612568565b612ac284848484612e93565b612b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af890614384565b60405180910390fd5b50505050565b606060118054612b16906149d9565b80601f0160208091040260200160405190810160405280929190818152602001828054612b42906149d9565b8015612b8f5780601f10612b6457610100808354040283529160200191612b8f565b820191906000526020600020905b815481529060010190602001808311612b7257829003601f168201915b5050505050905090565b60606000821415612be1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d41565b600082905060005b60008214612c13578080612bfc90614a3c565b915050600a82612c0c9190614864565b9150612be9565b60008167ffffffffffffffff811115612c55577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612c875781602001600182028036833780820191505090505b5090505b60008514612d3a57600182612ca091906148ef565b9150600a85612caf9190614a8f565b6030612cbb919061480e565b60f81b818381518110612cf7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d339190614864565b9450612c8b565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612e1157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612e215750612e208261302a565b5b9050919050565b612e33838383613094565b505050565b612e4283836131a8565b612e4f6000848484612e93565b612e8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8590614384565b60405180910390fd5b505050565b6000612eb48473ffffffffffffffffffffffffffffffffffffffff16613376565b1561301d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612edd6123c9565b8786866040518563ffffffff1660e01b8152600401612eff94939291906142b9565b602060405180830381600087803b158015612f1957600080fd5b505af1925050508015612f4a57506040513d601f19601f82011682018060405250810190612f479190613c59565b60015b612fcd573d8060008114612f7a576040519150601f19603f3d011682016040523d82523d6000602084013e612f7f565b606091505b50600081511415612fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fbc90614384565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613022565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61309f838383613389565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156130e2576130dd8161338e565b613121565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146131205761311f83826133d7565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131645761315f81613544565b6131a3565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146131a2576131a18282613687565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320f90614504565b60405180910390fd5b6132218161235d565b15613261576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613258906143c4565b60405180910390fd5b61326d60008383612e28565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132bd919061480e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016133e484611415565b6133ee91906148ef565b90506000600760008481526020019081526020016000205490508181146134d3576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061355891906148ef565b90506000600960008481526020019081526020016000205490506000600883815481106135ae577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106135f6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061366b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061369283611415565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054613712906149d9565b90600052602060002090601f016020900481019282613734576000855561377b565b82601f1061374d57805160ff191683800117855561377b565b8280016001018555821561377b579182015b8281111561377a57825182559160200191906001019061375f565b5b5090506137889190613812565b5090565b828054613798906149d9565b90600052602060002090601f0160209004810192826137ba5760008555613801565b82601f106137d357803560ff1916838001178555613801565b82800160010185558215613801579182015b828111156138005782358255916020019190600101906137e5565b5b50905061380e9190613812565b5090565b5b8082111561382b576000816000905550600101613813565b5090565b600061384261383d84614704565b6146df565b9050808382526020820190508285602086028201111561386157600080fd5b60005b8581101561389157816138778882613917565b845260208401935060208301925050600181019050613864565b5050509392505050565b60006138ae6138a984614730565b6146df565b9050828152602081018484840111156138c657600080fd5b6138d1848285614997565b509392505050565b60006138ec6138e784614761565b6146df565b90508281526020810184848401111561390457600080fd5b61390f848285614997565b509392505050565b6000813590506139268161521a565b92915050565b600082601f83011261393d57600080fd5b813561394d84826020860161382f565b91505092915050565b60008135905061396581615231565b92915050565b60008135905061397a81615248565b92915050565b60008151905061398f81615248565b92915050565b600082601f8301126139a657600080fd5b81356139b684826020860161389b565b91505092915050565b60008083601f8401126139d157600080fd5b8235905067ffffffffffffffff8111156139ea57600080fd5b602083019150836001820283011115613a0257600080fd5b9250929050565b600082601f830112613a1a57600080fd5b8135613a2a8482602086016138d9565b91505092915050565b600081359050613a428161525f565b92915050565b600060208284031215613a5a57600080fd5b6000613a6884828501613917565b91505092915050565b60008060408385031215613a8457600080fd5b6000613a9285828601613917565b9250506020613aa385828601613917565b9150509250929050565b600080600060608486031215613ac257600080fd5b6000613ad086828701613917565b9350506020613ae186828701613917565b9250506040613af286828701613a33565b9150509250925092565b60008060008060808587031215613b1257600080fd5b6000613b2087828801613917565b9450506020613b3187828801613917565b9350506040613b4287828801613a33565b925050606085013567ffffffffffffffff811115613b5f57600080fd5b613b6b87828801613995565b91505092959194509250565b60008060408385031215613b8a57600080fd5b6000613b9885828601613917565b9250506020613ba985828601613956565b9150509250929050565b60008060408385031215613bc657600080fd5b6000613bd485828601613917565b9250506020613be585828601613a33565b9150509250929050565b600060208284031215613c0157600080fd5b600082013567ffffffffffffffff811115613c1b57600080fd5b613c278482850161392c565b91505092915050565b600060208284031215613c4257600080fd5b6000613c508482850161396b565b91505092915050565b600060208284031215613c6b57600080fd5b6000613c7984828501613980565b91505092915050565b60008060208385031215613c9557600080fd5b600083013567ffffffffffffffff811115613caf57600080fd5b613cbb858286016139bf565b92509250509250929050565b600060208284031215613cd957600080fd5b600082013567ffffffffffffffff811115613cf357600080fd5b613cff84828501613a09565b91505092915050565b600060208284031215613d1a57600080fd5b6000613d2884828501613a33565b91505092915050565b6000613d3d8383614219565b60208301905092915050565b613d5281614923565b82525050565b6000613d63826147a2565b613d6d81856147d0565b9350613d7883614792565b8060005b83811015613da9578151613d908882613d31565b9750613d9b836147c3565b925050600181019050613d7c565b5085935050505092915050565b613dbf81614935565b82525050565b6000613dd0826147ad565b613dda81856147e1565b9350613dea8185602086016149a6565b613df381614b7c565b840191505092915050565b6000613e09826147b8565b613e1381856147f2565b9350613e238185602086016149a6565b613e2c81614b7c565b840191505092915050565b6000613e42826147b8565b613e4c8185614803565b9350613e5c8185602086016149a6565b80840191505092915050565b6000613e75602b836147f2565b9150613e8082614b8d565b604082019050919050565b6000613e986032836147f2565b9150613ea382614bdc565b604082019050919050565b6000613ebb6026836147f2565b9150613ec682614c2b565b604082019050919050565b6000613ede601c836147f2565b9150613ee982614c7a565b602082019050919050565b6000613f016024836147f2565b9150613f0c82614ca3565b604082019050919050565b6000613f246019836147f2565b9150613f2f82614cf2565b602082019050919050565b6000613f476019836147f2565b9150613f5282614d1b565b602082019050919050565b6000613f6a602c836147f2565b9150613f7582614d44565b604082019050919050565b6000613f8d601d836147f2565b9150613f9882614d93565b602082019050919050565b6000613fb06010836147f2565b9150613fbb82614dbc565b602082019050919050565b6000613fd36038836147f2565b9150613fde82614de5565b604082019050919050565b6000613ff6602a836147f2565b915061400182614e34565b604082019050919050565b60006140196029836147f2565b915061402482614e83565b604082019050919050565b600061403c6020836147f2565b915061404782614ed2565b602082019050919050565b600061405f602c836147f2565b915061406a82614efb565b604082019050919050565b60006140826020836147f2565b915061408d82614f4a565b602082019050919050565b60006140a56017836147f2565b91506140b082614f73565b602082019050919050565b60006140c86029836147f2565b91506140d382614f9c565b604082019050919050565b60006140eb602f836147f2565b91506140f682614feb565b604082019050919050565b600061410e603d836147f2565b91506141198261503a565b604082019050919050565b60006141316021836147f2565b915061413c82615089565b604082019050919050565b6000614154601d836147f2565b915061415f826150d8565b602082019050919050565b60006141776019836147f2565b915061418282615101565b602082019050919050565b600061419a6031836147f2565b91506141a58261512a565b604082019050919050565b60006141bd602c836147f2565b91506141c882615179565b604082019050919050565b60006141e06016836147f2565b91506141eb826151c8565b602082019050919050565b60006142036010836147f2565b915061420e826151f1565b602082019050919050565b6142228161498d565b82525050565b6142318161498d565b82525050565b6142486142438261498d565b614a85565b82525050565b600061425a8285613e37565b91506142668284613e37565b91508190509392505050565b600061427e8285614237565b60208201915061428e8284614237565b6020820191508190509392505050565b60006020820190506142b36000830184613d49565b92915050565b60006080820190506142ce6000830187613d49565b6142db6020830186613d49565b6142e86040830185614228565b81810360608301526142fa8184613dc5565b905095945050505050565b6000602082019050818103600083015261431f8184613d58565b905092915050565b600060208201905061433c6000830184613db6565b92915050565b6000602082019050818103600083015261435c8184613dfe565b905092915050565b6000602082019050818103600083015261437d81613e68565b9050919050565b6000602082019050818103600083015261439d81613e8b565b9050919050565b600060208201905081810360008301526143bd81613eae565b9050919050565b600060208201905081810360008301526143dd81613ed1565b9050919050565b600060208201905081810360008301526143fd81613ef4565b9050919050565b6000602082019050818103600083015261441d81613f17565b9050919050565b6000602082019050818103600083015261443d81613f3a565b9050919050565b6000602082019050818103600083015261445d81613f5d565b9050919050565b6000602082019050818103600083015261447d81613f80565b9050919050565b6000602082019050818103600083015261449d81613fa3565b9050919050565b600060208201905081810360008301526144bd81613fc6565b9050919050565b600060208201905081810360008301526144dd81613fe9565b9050919050565b600060208201905081810360008301526144fd8161400c565b9050919050565b6000602082019050818103600083015261451d8161402f565b9050919050565b6000602082019050818103600083015261453d81614052565b9050919050565b6000602082019050818103600083015261455d81614075565b9050919050565b6000602082019050818103600083015261457d81614098565b9050919050565b6000602082019050818103600083015261459d816140bb565b9050919050565b600060208201905081810360008301526145bd816140de565b9050919050565b600060208201905081810360008301526145dd81614101565b9050919050565b600060208201905081810360008301526145fd81614124565b9050919050565b6000602082019050818103600083015261461d81614147565b9050919050565b6000602082019050818103600083015261463d8161416a565b9050919050565b6000602082019050818103600083015261465d8161418d565b9050919050565b6000602082019050818103600083015261467d816141b0565b9050919050565b6000602082019050818103600083015261469d816141d3565b9050919050565b600060208201905081810360008301526146bd816141f6565b9050919050565b60006020820190506146d96000830184614228565b92915050565b60006146e96146fa565b90506146f58282614a0b565b919050565b6000604051905090565b600067ffffffffffffffff82111561471f5761471e614b4d565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561474b5761474a614b4d565b5b61475482614b7c565b9050602081019050919050565b600067ffffffffffffffff82111561477c5761477b614b4d565b5b61478582614b7c565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006148198261498d565b91506148248361498d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561485957614858614ac0565b5b828201905092915050565b600061486f8261498d565b915061487a8361498d565b92508261488a57614889614aef565b5b828204905092915050565b60006148a08261498d565b91506148ab8361498d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156148e4576148e3614ac0565b5b828202905092915050565b60006148fa8261498d565b91506149058361498d565b92508282101561491857614917614ac0565b5b828203905092915050565b600061492e8261496d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156149c45780820151818401526020810190506149a9565b838111156149d3576000848401525b50505050565b600060028204905060018216806149f157607f821691505b60208210811415614a0557614a04614b1e565b5b50919050565b614a1482614b7c565b810181811067ffffffffffffffff82111715614a3357614a32614b4d565b5b80604052505050565b6000614a478261498d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614a7a57614a79614ac0565b5b600182019050919050565b6000819050919050565b6000614a9a8261498d565b9150614aa58361498d565b925082614ab557614ab4614aef565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f496e636f6e73697374656e7420616d6f756e742073656e742100000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5374617274696e6720696e64657820697320616c726561647920736574000000600082015250565b7f53616c65206e6f74207374617274656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f7420656e6f75676820546f6b656e73206c6566742e000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f596f752063616e6e6f74206d696e74206d6f7265207468616e204d41585f544f60008201527f4b454e535f5045525f4d494e5420746f6b656e73206174206f6e636521000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4164647265737320697320616c726561647920776869746c6973746564000000600082015250565b7f416464726573732069736e27742077686974656c697374656400000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f557365722069736e27742077686974656c697374656400000000000000000000600082015250565b7f53616c65206e6f7420616c6c6f77656400000000000000000000000000000000600082015250565b61522381614923565b811461522e57600080fd5b50565b61523a81614935565b811461524557600080fd5b50565b61525181614941565b811461525c57600080fd5b50565b6152688161498d565b811461527357600080fd5b5056fea2646970667358221220bcbf580fbb19860e65dc843cecc427ca2adefe7baacdc9ec27394ed1b5fd3f8964736f6c63430008020033

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.