ETH Price: $3,355.60 (-1.79%)
Gas: 6 Gwei

Token

GFT Atari 50th Anniversary (GFT_Atari)
 

Overview

Max Total Supply

10,000 GFT_Atari

Holders

4,214

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
vux.eth
Balance
4 GFT_Atari
0xd5cb4ce53100100dc4e59366b8a807650898bbd5
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The team at Everyrealm has joined forces with Atari to bring to you a one-of-a-kind collection celebrating Atari’s 50th Anniversary - a brand that launched the modern video game industry. Join us on our journey to the Metaverse as a holder with your fellow community members.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
GFTShoppe

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

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

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

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

    // The total tokens minted to an address. Does not matter if tokens are transferred out.
    mapping(address => uint256) public addressMintCount;

    // The addresses allowed to mint in the pre-sale along with how many tokens they are allowed to mint.
    mapping (address => uint256) public whitelist;

    // The redeemed status (true or false) for each token
    mapping (uint256 => bool) public redeemedStatus;

    address private _redeemingContract; // The address of the contract which will be able to set redeemed status. Initial state will be zero.

    string public constant PROVENANCE = "351ec019eac55af38f073eab488f50b4"; // MD5-hashed IPFS hash for provenance

    string public baseTokenURI; // Can be combined with the tokenId to create the metadata URI
    uint256 public maxMintCount = 12; // The maximum number of tokens an address can mint (excluding whitelist mints)
    bool public publicSaleActive = false; // Non-admin users can only mint new tokens when this flag is set to true
    bool public whitelistSaleActive = false; // If set to true, whitelisted users will be allowed to mint
    uint256 public constant MINT_PRICE = 0.1 ether; // Public mint price
    uint256 public constant WHITELIST_MINT_PRICE = 0.09 ether; // Mint price for whitelisted addresses only
    uint256 public constant MAX_TOTAL_SUPPLY = 10000; // The maximum total supply of tokens

    uint256 private constant MAX_TOKEN_ITERATIONS = 40; // Used to prevent out-of-gas errors when looping
    string private redeemedBaseTokenURI; // The metadata base URI for redeemed tokens. Will initially be zero-length.

    event SetBaseURI(address _from);
    event SetRedeemedBaseURI(address _from);
    event Withdraw(address _from, address _to, uint amount);
    event SetMaxMintCount(address _from, uint256 count);
    event TogglePublicSale(address _from, bool isActive);
    event ToggleWhitelistSale(address _from, bool isActive);

    constructor(string memory _baseUri) ERC721("GFT Atari 50th Anniversary", "GFT_Atari") {
        baseTokenURI = _baseUri;
    }

    // Overrides the tokenURI function so that an alternative redeemed base URI can be returned
    function tokenURI(uint256 _tokenId) public view override returns (string memory) {

        string memory baseURI = baseTokenURI;
        if (redeemedStatus[_tokenId]) {
            baseURI = redeemedBaseTokenURI;
        }

        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, _tokenId.toString())) : "";
    } 

    // Allows the contract owner to set a new base URI string
    function setBaseURI(string calldata baseURI) external onlyOwner {
        baseTokenURI = baseURI;
        emit SetBaseURI(msg.sender);
    }

    // Allows the contract owner to set a new base URI string for redeemed tokens
    function setRedeemedBaseURI(string calldata redeemedURI) external onlyOwner {
        redeemedBaseTokenURI = redeemedURI;
        emit SetRedeemedBaseURI(msg.sender);
    }

    // Adds a number of addresses to the whitelist along with the number of tokens each address is allowed to mint
    function addToWhitelist(address[] calldata addresses, uint8 numAllowedToMint) external onlyOwner {
        require(addresses.length <= 100, "Please only add up to 100 addresses at a time"); // Check to prevent OOG errors
        for (uint256 i = 0; i < addresses.length; i++) {
            whitelist[addresses[i]] = numAllowedToMint;
        }
    }

    // Public mint function
    function createItem(uint256 amount) external payable {
        uint256 supply = totalSupply();
        uint256 mintCount = addressMintCount[msg.sender];
        require(publicSaleActive, "Public sale is not yet active");
        require(amount > 0, "Mint amount can't be zero");
        require(supply + amount <= MAX_TOTAL_SUPPLY, "Max mint amount is reached");
        require(
            mintCount + amount <= maxMintCount,
            "Exceed the Max Amount to mint."
        );
        require(amount * MINT_PRICE == msg.value, "Price must be 0.1 eth for each NFT");
			
        for (uint256 i = 0; i < amount; i++) {
            _safeMint(msg.sender , supply + i);
        }
        addressMintCount[msg.sender] = mintCount + amount;
    }

    // Only accessible by the contract owner. This function is used to mint tokens for the team.
    function createTeamItem(uint256 amount) external onlyOwner {
        uint256 supply = totalSupply();
        require(amount > 0, "Mint amount can't be zero");
        require(amount <= MAX_TOKEN_ITERATIONS, "You cannot mint this many in one transaction."); // Used to avoid OOG errors.
        require(supply + amount <= MAX_TOTAL_SUPPLY, "Max supply is reached");
        
        for (uint256 i = 0; i < amount; i++) {
            _safeMint(msg.sender , supply + i);
        }
    }

    // Minting function for addresses on the whitelist only
    function createWhitelistItem(uint256 amount) external payable {
        uint256 supply = totalSupply();
        uint256 whitelistAllowance = whitelist[msg.sender];
        require(whitelistSaleActive, "Whitelist sale is not active");
        require(amount <= whitelistAllowance, "Exceeded max available to purchase");
        require(amount > 0, "Mint amount can't be zero");
        require(amount <= MAX_TOKEN_ITERATIONS, "You cannot mint this many in one transaction."); // Used to avoid OOG errors.
        require(supply + amount <= MAX_TOTAL_SUPPLY, "Max supply is reached");
        require(amount * WHITELIST_MINT_PRICE == msg.value, "Price must be 0.09 eth for each NFT");
        
        for (uint256 i = 0; i < amount; i++) {
            _safeMint(msg.sender , supply + i);
        }

        whitelist[msg.sender] = whitelistAllowance - amount;
    }

    // Withdraw the value of the contract to the specified address
    function withdrawTo(address recipient) external onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "There is no balance to transfer");
        payable(recipient).transfer(balance);
        emit Withdraw(msg.sender, recipient, balance);
    }

    // Used to get the list of token IDs owned by a user (address). Will not work for wallets with over 40 tokens
    function walletOfUser(address user) external view returns(uint256[] memory) {
        uint256 tokenCount = 0;
        uint256[] memory tokensId = new uint256[](0);
        tokenCount = balanceOf(user);
        
        if (tokenCount > MAX_TOKEN_ITERATIONS) {
            tokenCount = MAX_TOKEN_ITERATIONS; // limits the returned token count to avoid OOG errors
        }

        if (tokenCount > 0) {
            tokensId = new uint256[](tokenCount);
            for(uint256 i = 0; i < tokenCount; i++){
                tokensId[i] = tokenOfOwnerByIndex(user, i);
            }
        }
        return tokensId;
    }

    // An owner-only function which toggles the public sale on/off
    function togglePublicSale() external onlyOwner {
        publicSaleActive = !publicSaleActive;
        emit TogglePublicSale(msg.sender, publicSaleActive);
    }

    // An owner-only function which toggles the whitelist sale on/off
    function toggleWhitelistSale() external onlyOwner {
        whitelistSaleActive = !whitelistSaleActive;
        emit ToggleWhitelistSale(msg.sender, whitelistSaleActive);
    }

    // Allows the owner to update the max mint count, up to a limit of 40 (to avoid OOG errors)
    function setMaxMintCount(uint256 count) external onlyOwner {
        require(count <= MAX_TOKEN_ITERATIONS, "Count must be less than or equal to 40");
        maxMintCount = count;
        emit SetMaxMintCount(msg.sender, count);
    }

    // Function called by second minting contract which sets the redeemed status
    function setRedeemed(uint256 tokenID) external {
        require(_redeemingContract == msg.sender, "Can only be called by authorised contract");
        redeemedStatus[tokenID] = true;
    }

    // Function to change the allowed redeeming contract address
    function setRedeemingContract(address contractAddress) external onlyOwner {
        _redeemingContract = contractAddress;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 3 of 13 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 4 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 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 5 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @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 13 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 7 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 8 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 9 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 10 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 13 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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":[{"internalType":"string","name":"_baseUri","type":"string"}],"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":false,"internalType":"address","name":"_from","type":"address"}],"name":"SetBaseURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"uint256","name":"count","type":"uint256"}],"name":"SetMaxMintCount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_from","type":"address"}],"name":"SetRedeemedBaseURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"bool","name":"isActive","type":"bool"}],"name":"TogglePublicSale","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"bool","name":"isActive","type":"bool"}],"name":"ToggleWhitelistSale","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"MAX_TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint8","name":"numAllowedToMint","type":"uint8"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"createItem","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"createTeamItem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"createWhitelistItem","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"redeemedStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"setMaxMintCount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"setRedeemed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"redeemedURI","type":"string"}],"name":"setRedeemedBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"}],"name":"setRedeemingContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhitelistSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"walletOfUser","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"withdrawTo","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600c6010556000601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055503480156200004c57600080fd5b5060405162005aa538038062005aa583398181016040528101906200007291906200034e565b6040518060400160405280601a81526020017f474654204174617269203530746820416e6e69766572736172790000000000008152506040518060400160405280600981526020017f4746545f417461726900000000000000000000000000000000000000000000008152508160009080519060200190620000f692919062000220565b5080600190805190602001906200010f92919062000220565b50505062000132620001266200015260201b60201c565b6200015a60201b60201c565b80600f90805190602001906200014a92919062000220565b505062000523565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022e9062000434565b90600052602060002090601f0160209004810192826200025257600085556200029e565b82601f106200026d57805160ff19168380011785556200029e565b828001600101855582156200029e579182015b828111156200029d57825182559160200191906001019062000280565b5b509050620002ad9190620002b1565b5090565b5b80821115620002cc576000816000905550600101620002b2565b5090565b6000620002e7620002e184620003c8565b6200039f565b90508281526020810184848401111562000306576200030562000503565b5b62000313848285620003fe565b509392505050565b600082601f830112620003335762000332620004fe565b5b815162000345848260208601620002d0565b91505092915050565b6000602082840312156200036757620003666200050d565b5b600082015167ffffffffffffffff81111562000388576200038762000508565b5b62000396848285016200031b565b91505092915050565b6000620003ab620003be565b9050620003b982826200046a565b919050565b6000604051905090565b600067ffffffffffffffff821115620003e657620003e5620004cf565b5b620003f18262000512565b9050602081019050919050565b60005b838110156200041e57808201518184015260208101905062000401565b838111156200042e576000848401525b50505050565b600060028204905060018216806200044d57607f821691505b60208210811415620004645762000463620004a0565b5b50919050565b620004758262000512565b810181811067ffffffffffffffff82111715620004975762000496620004cf565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b61557280620005336000396000f3fe60806040526004361061025c5760003560e01c806370a0823111610144578063b88d4fde116100b6578063d547cfb71161007a578063d547cfb71461090f578063d7a5d5d31461093a578063e222c7f914610956578063e985e9c51461096d578063f17f54a5146109aa578063f2fde38b146109d35761025c565b8063b88d4fde1461082a578063bc8893b414610853578063c002d23d1461087e578063c87b56dd146108a9578063cd7a1950146108e65761025c565b8063995068741161010857806399506874146107175780639b19251a14610740578063a22cb4651461077d578063aca9938d146107a6578063b0ed7bf3146107d1578063b20060d5146107ed5761025c565b806370a0823114610644578063715018a61461068157806372b0d90c146106985780638da5cb5b146106c157806395d89b41146106ec5761025c565b806333039d3d116101dd57806351251320116101a1578063512513201461054a57806355f804b31461057357806356a1f5741461059c57806359eda1b5146105c55780636352211e146105dc5780636373a6b1146106195761025c565b806333039d3d146104515780633ad7f56c1461047c57806342842e0e146104a75780634e9ae3ea146104d05780634f6ccce71461050d5761025c565b80631ba4f67d116102245780631ba4f67d1461035a57806323b872dd1461039757806328f6fea7146103c05780632f745c59146103e957806332c60eef146104265761025c565b806301ffc9a71461026157806306fdde031461029e578063081812fc146102c9578063095ea7b31461030657806318160ddd1461032f575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190613c36565b6109fc565b60405161029591906143d2565b60405180910390f35b3480156102aa57600080fd5b506102b3610a76565b6040516102c091906143ed565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb9190613cdd565b610b08565b6040516102fd91906142c0565b60405180910390f35b34801561031257600080fd5b5061032d60048036038101906103289190613b96565b610b8d565b005b34801561033b57600080fd5b50610344610ca5565b60405161035191906147ef565b60405180910390f35b34801561036657600080fd5b50610381600480360381019061037c9190613a13565b610cb2565b60405161038e91906147ef565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b99190613a80565b610cca565b005b3480156103cc57600080fd5b506103e760048036038101906103e29190613a13565b610d2a565b005b3480156103f557600080fd5b50610410600480360381019061040b9190613b96565b610dea565b60405161041d91906147ef565b60405180910390f35b34801561043257600080fd5b5061043b610e8f565b60405161044891906147ef565b60405180910390f35b34801561045d57600080fd5b50610466610e95565b60405161047391906147ef565b60405180910390f35b34801561048857600080fd5b50610491610e9b565b60405161049e91906143d2565b60405180910390f35b3480156104b357600080fd5b506104ce60048036038101906104c99190613a80565b610eae565b005b3480156104dc57600080fd5b506104f760048036038101906104f29190613cdd565b610ece565b60405161050491906143d2565b60405180910390f35b34801561051957600080fd5b50610534600480360381019061052f9190613cdd565b610eee565b60405161054191906147ef565b60405180910390f35b34801561055657600080fd5b50610571600480360381019061056c9190613bd6565b610f5f565b005b34801561057f57600080fd5b5061059a60048036038101906105959190613c90565b6110b7565b005b3480156105a857600080fd5b506105c360048036038101906105be9190613c90565b611180565b005b3480156105d157600080fd5b506105da611249565b005b3480156105e857600080fd5b5061060360048036038101906105fe9190613cdd565b611339565b60405161061091906142c0565b60405180910390f35b34801561062557600080fd5b5061062e6113eb565b60405161063b91906143ed565b60405180910390f35b34801561065057600080fd5b5061066b60048036038101906106669190613a13565b611424565b60405161067891906147ef565b60405180910390f35b34801561068d57600080fd5b506106966114dc565b005b3480156106a457600080fd5b506106bf60048036038101906106ba9190613a13565b611564565b005b3480156106cd57600080fd5b506106d66116ae565b6040516106e391906142c0565b60405180910390f35b3480156106f857600080fd5b506107016116d8565b60405161070e91906143ed565b60405180910390f35b34801561072357600080fd5b5061073e60048036038101906107399190613cdd565b61176a565b005b34801561074c57600080fd5b5061076760048036038101906107629190613a13565b611901565b60405161077491906147ef565b60405180910390f35b34801561078957600080fd5b506107a4600480360381019061079f9190613b56565b611919565b005b3480156107b257600080fd5b506107bb61192f565b6040516107c891906147ef565b60405180910390f35b6107eb60048036038101906107e69190613cdd565b61193b565b005b3480156107f957600080fd5b50610814600480360381019061080f9190613a13565b611bd1565b60405161082191906143b0565b60405180910390f35b34801561083657600080fd5b50610851600480360381019061084c9190613ad3565b611ce1565b005b34801561085f57600080fd5b50610868611d43565b60405161087591906143d2565b60405180910390f35b34801561088a57600080fd5b50610893611d56565b6040516108a091906147ef565b60405180910390f35b3480156108b557600080fd5b506108d060048036038101906108cb9190613cdd565b611d62565b6040516108dd91906143ed565b60405180910390f35b3480156108f257600080fd5b5061090d60048036038101906109089190613cdd565b611ef8565b005b34801561091b57600080fd5b50610924611fb7565b60405161093191906143ed565b60405180910390f35b610954600480360381019061094f9190613cdd565b612045565b005b34801561096257600080fd5b5061096b6122a4565b005b34801561097957600080fd5b50610994600480360381019061098f9190613a40565b612394565b6040516109a191906143d2565b60405180910390f35b3480156109b657600080fd5b506109d160048036038101906109cc9190613cdd565b612428565b005b3480156109df57600080fd5b506109fa60048036038101906109f59190613a13565b61252b565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a6f5750610a6e82612623565b5b9050919050565b606060008054610a8590614ab4565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab190614ab4565b8015610afe5780601f10610ad357610100808354040283529160200191610afe565b820191906000526020600020905b815481529060010190602001808311610ae157829003601f168201915b5050505050905090565b6000610b1382612705565b610b52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b49906145ef565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b9882611339565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c00906146cf565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c28612771565b73ffffffffffffffffffffffffffffffffffffffff161480610c575750610c5681610c51612771565b612394565b5b610c96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8d9061452f565b60405180910390fd5b610ca08383612779565b505050565b6000600880549050905090565b600b6020528060005260406000206000915090505481565b610cdb610cd5612771565b82612832565b610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d119061472f565b60405180910390fd5b610d25838383612910565b505050565b610d32612771565b73ffffffffffffffffffffffffffffffffffffffff16610d506116ae565b73ffffffffffffffffffffffffffffffffffffffff1614610da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9d9061462f565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610df583611424565b8210610e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2d9061444f565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60105481565b61271081565b601160019054906101000a900460ff1681565b610ec983838360405180602001604052806000815250611ce1565b505050565b600d6020528060005260406000206000915054906101000a900460ff1681565b6000610ef8610ca5565b8210610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f309061478f565b60405180910390fd5b60088281548110610f4d57610f4c614c4d565b5b90600052602060002001549050919050565b610f67612771565b73ffffffffffffffffffffffffffffffffffffffff16610f856116ae565b73ffffffffffffffffffffffffffffffffffffffff1614610fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd29061462f565b60405180910390fd5b6064838390501115611022576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110199061454f565b60405180910390fd5b60005b838390508110156110b1578160ff16600c600086868581811061104b5761104a614c4d565b5b90506020020160208101906110609190613a13565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806110a990614b17565b915050611025565b50505050565b6110bf612771565b73ffffffffffffffffffffffffffffffffffffffff166110dd6116ae565b73ffffffffffffffffffffffffffffffffffffffff1614611133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112a9061462f565b60405180910390fd5b8181600f91906111449291906137d6565b507f9bfdd2b649e4e6b3a8a2d15283914c1356714c1eb38ccfbd28339e399c7d8e0f3360405161117491906142c0565b60405180910390a15050565b611188612771565b73ffffffffffffffffffffffffffffffffffffffff166111a66116ae565b73ffffffffffffffffffffffffffffffffffffffff16146111fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f39061462f565b60405180910390fd5b81816012919061120d9291906137d6565b507f8c280ca5b21940d6d526f4adb73e257db93cf29d82cd5bbd2b24307423a9953e3360405161123d91906142c0565b60405180910390a15050565b611251612771565b73ffffffffffffffffffffffffffffffffffffffff1661126f6116ae565b73ffffffffffffffffffffffffffffffffffffffff16146112c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bc9061462f565b60405180910390fd5b601160019054906101000a900460ff1615601160016101000a81548160ff0219169083151502179055507fe7da1b0d009fc26396f0660133ca9f0f87c3bd3f2f9b3db7f900bccd3ae5e74333601160019054906101000a900460ff1660405161132f92919061435e565b60405180910390a1565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d99061458f565b60405180910390fd5b80915050919050565b6040518060400160405280602081526020017f333531656330313965616335356166333866303733656162343838663530623481525081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148c9061456f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114e4612771565b73ffffffffffffffffffffffffffffffffffffffff166115026116ae565b73ffffffffffffffffffffffffffffffffffffffff1614611558576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154f9061462f565b60405180910390fd5b6115626000612b6c565b565b61156c612771565b73ffffffffffffffffffffffffffffffffffffffff1661158a6116ae565b73ffffffffffffffffffffffffffffffffffffffff16146115e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d79061462f565b60405180910390fd5b600047905060008111611628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161f9061460f565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561166e573d6000803e3d6000fd5b507f9b1bfa7fa9ee420a16e124f794c35ac9f90472acc99140eb2f6447c714cad8eb3383836040516116a2939291906142db565b60405180910390a15050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546116e790614ab4565b80601f016020809104026020016040519081016040528092919081815260200182805461171390614ab4565b80156117605780601f1061173557610100808354040283529160200191611760565b820191906000526020600020905b81548152906001019060200180831161174357829003601f168201915b5050505050905090565b611772612771565b73ffffffffffffffffffffffffffffffffffffffff166117906116ae565b73ffffffffffffffffffffffffffffffffffffffff16146117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd9061462f565b60405180910390fd5b60006117f0610ca5565b905060008211611835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182c906146af565b60405180910390fd5b6028821115611879576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118709061464f565b60405180910390fd5b612710828261188891906148dc565b11156118c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c09061442f565b60405180910390fd5b60005b828110156118fc576118e93382846118e491906148dc565b612c32565b80806118f490614b17565b9150506118cc565b505050565b600c6020528060005260406000206000915090505481565b61192b611924612771565b8383612c50565b5050565b67013fbe85edc9000081565b6000611945610ca5565b90506000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050601160019054906101000a900460ff166119da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d1906147cf565b60405180910390fd5b80831115611a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a14906146ef565b60405180910390fd5b60008311611a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a57906146af565b60405180910390fd5b6028831115611aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9b9061464f565b60405180910390fd5b6127108383611ab391906148dc565b1115611af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aeb9061442f565b60405180910390fd5b3467013fbe85edc9000084611b099190614963565b14611b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b409061468f565b60405180910390fd5b60005b83811015611b7c57611b69338285611b6491906148dc565b612c32565b8080611b7490614b17565b915050611b4c565b508281611b8991906149bd565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b60606000808067ffffffffffffffff811115611bf057611bef614c7c565b5b604051908082528060200260200182016040528015611c1e5781602001602082028036833780820191505090505b509050611c2a84611424565b91506028821115611c3a57602891505b6000821115611cd7578167ffffffffffffffff811115611c5d57611c5c614c7c565b5b604051908082528060200260200182016040528015611c8b5781602001602082028036833780820191505090505b50905060005b82811015611cd557611ca38582610dea565b828281518110611cb657611cb5614c4d565b5b6020026020010181815250508080611ccd90614b17565b915050611c91565b505b8092505050919050565b611cf2611cec612771565b83612832565b611d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d289061472f565b60405180910390fd5b611d3d84848484612dbd565b50505050565b601160009054906101000a900460ff1681565b67016345785d8a000081565b60606000600f8054611d7390614ab4565b80601f0160208091040260200160405190810160405280929190818152602001828054611d9f90614ab4565b8015611dec5780601f10611dc157610100808354040283529160200191611dec565b820191906000526020600020905b815481529060010190602001808311611dcf57829003601f168201915b50505050509050600d600084815260200190815260200160002060009054906101000a900460ff1615611ea75760128054611e2690614ab4565b80601f0160208091040260200160405190810160405280929190818152602001828054611e5290614ab4565b8015611e9f5780601f10611e7457610100808354040283529160200191611e9f565b820191906000526020600020905b815481529060010190602001808311611e8257829003601f168201915b505050505090505b6000815111611ec55760405180602001604052806000815250611ef0565b80611ecf84612e19565b604051602001611ee092919061429c565b6040516020818303038152906040525b915050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7f906145af565b60405180910390fd5b6001600d600083815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600f8054611fc490614ab4565b80601f0160208091040260200160405190810160405280929190818152602001828054611ff090614ab4565b801561203d5780601f106120125761010080835404028352916020019161203d565b820191906000526020600020905b81548152906001019060200180831161202057829003601f168201915b505050505081565b600061204f610ca5565b90506000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050601160009054906101000a900460ff166120e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120db9061474f565b60405180910390fd5b60008311612127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211e906146af565b60405180910390fd5b612710838361213691906148dc565b1115612177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216e906147af565b60405180910390fd5b601054838261218691906148dc565b11156121c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121be9061470f565b60405180910390fd5b3467016345785d8a0000846121dc9190614963565b1461221c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122139061476f565b60405180910390fd5b60005b8381101561224f5761223c33828561223791906148dc565b612c32565b808061224790614b17565b91505061221f565b50828161225c91906148dc565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b6122ac612771565b73ffffffffffffffffffffffffffffffffffffffff166122ca6116ae565b73ffffffffffffffffffffffffffffffffffffffff1614612320576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123179061462f565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff0219169083151502179055507f3fccb8b6be98ef992ba7fe1fb1eb4540c97e7b9f3c65632bb53b5f4e3757067533601160009054906101000a900460ff1660405161238a92919061435e565b60405180910390a1565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612430612771565b73ffffffffffffffffffffffffffffffffffffffff1661244e6116ae565b73ffffffffffffffffffffffffffffffffffffffff16146124a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249b9061462f565b60405180910390fd5b60288111156124e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124df9061440f565b60405180910390fd5b806010819055507fb996b29bfa938dca8aa3cac75dd2e36bd410cb2593e51da4f916289959b20e1b3382604051612520929190614387565b60405180910390a150565b612533612771565b73ffffffffffffffffffffffffffffffffffffffff166125516116ae565b73ffffffffffffffffffffffffffffffffffffffff16146125a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259e9061462f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260e9061448f565b60405180910390fd5b61262081612b6c565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806126ee57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806126fe57506126fd82612f7a565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166127ec83611339565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061283d82612705565b61287c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128739061450f565b60405180910390fd5b600061288783611339565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128f657508373ffffffffffffffffffffffffffffffffffffffff166128de84610b08565b73ffffffffffffffffffffffffffffffffffffffff16145b8061290757506129068185612394565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661293082611339565b73ffffffffffffffffffffffffffffffffffffffff1614612986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297d9061466f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ed906144cf565b60405180910390fd5b612a01838383612fe4565b612a0c600082612779565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a5c91906149bd565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ab391906148dc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c4c8282604051806020016040528060008152506130f8565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb6906144ef565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612db091906143d2565b60405180910390a3505050565b612dc8848484612910565b612dd484848484613153565b612e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0a9061446f565b60405180910390fd5b50505050565b60606000821415612e61576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f75565b600082905060005b60008214612e93578080612e7c90614b17565b915050600a82612e8c9190614932565b9150612e69565b60008167ffffffffffffffff811115612eaf57612eae614c7c565b5b6040519080825280601f01601f191660200182016040528015612ee15781602001600182028036833780820191505090505b5090505b60008514612f6e57600182612efa91906149bd565b9150600a85612f099190614b60565b6030612f1591906148dc565b60f81b818381518110612f2b57612f2a614c4d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f679190614932565b9450612ee5565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612fef8383836132ea565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156130325761302d816132ef565b613071565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146130705761306f8382613338565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130b4576130af816134a5565b6130f3565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146130f2576130f18282613576565b5b5b505050565b61310283836135f5565b61310f6000848484613153565b61314e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131459061446f565b60405180910390fd5b505050565b60006131748473ffffffffffffffffffffffffffffffffffffffff166137c3565b156132dd578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261319d612771565b8786866040518563ffffffff1660e01b81526004016131bf9493929190614312565b602060405180830381600087803b1580156131d957600080fd5b505af192505050801561320a57506040513d601f19601f820116820180604052508101906132079190613c63565b60015b61328d573d806000811461323a576040519150601f19603f3d011682016040523d82523d6000602084013e61323f565b606091505b50600081511415613285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327c9061446f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506132e2565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161334584611424565b61334f91906149bd565b9050600060076000848152602001908152602001600020549050818114613434576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506134b991906149bd565b90506000600960008481526020019081526020016000205490506000600883815481106134e9576134e8614c4d565b5b90600052602060002001549050806008838154811061350b5761350a614c4d565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061355a57613559614c1e565b5b6001900381819060005260206000200160009055905550505050565b600061358183611424565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161365c906145cf565b60405180910390fd5b61366e81612705565b156136ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136a5906144af565b60405180910390fd5b6136ba60008383612fe4565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461370a91906148dc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546137e290614ab4565b90600052602060002090601f016020900481019282613804576000855561384b565b82601f1061381d57803560ff191683800117855561384b565b8280016001018555821561384b579182015b8281111561384a57823582559160200191906001019061382f565b5b509050613858919061385c565b5090565b5b8082111561387557600081600090555060010161385d565b5090565b600061388c6138878461482f565b61480a565b9050828152602081018484840111156138a8576138a7614cba565b5b6138b3848285614a72565b509392505050565b6000813590506138ca816154c9565b92915050565b60008083601f8401126138e6576138e5614cb0565b5b8235905067ffffffffffffffff81111561390357613902614cab565b5b60208301915083602082028301111561391f5761391e614cb5565b5b9250929050565b600081359050613935816154e0565b92915050565b60008135905061394a816154f7565b92915050565b60008151905061395f816154f7565b92915050565b600082601f83011261397a57613979614cb0565b5b813561398a848260208601613879565b91505092915050565b60008083601f8401126139a9576139a8614cb0565b5b8235905067ffffffffffffffff8111156139c6576139c5614cab565b5b6020830191508360018202830111156139e2576139e1614cb5565b5b9250929050565b6000813590506139f88161550e565b92915050565b600081359050613a0d81615525565b92915050565b600060208284031215613a2957613a28614cc4565b5b6000613a37848285016138bb565b91505092915050565b60008060408385031215613a5757613a56614cc4565b5b6000613a65858286016138bb565b9250506020613a76858286016138bb565b9150509250929050565b600080600060608486031215613a9957613a98614cc4565b5b6000613aa7868287016138bb565b9350506020613ab8868287016138bb565b9250506040613ac9868287016139e9565b9150509250925092565b60008060008060808587031215613aed57613aec614cc4565b5b6000613afb878288016138bb565b9450506020613b0c878288016138bb565b9350506040613b1d878288016139e9565b925050606085013567ffffffffffffffff811115613b3e57613b3d614cbf565b5b613b4a87828801613965565b91505092959194509250565b60008060408385031215613b6d57613b6c614cc4565b5b6000613b7b858286016138bb565b9250506020613b8c85828601613926565b9150509250929050565b60008060408385031215613bad57613bac614cc4565b5b6000613bbb858286016138bb565b9250506020613bcc858286016139e9565b9150509250929050565b600080600060408486031215613bef57613bee614cc4565b5b600084013567ffffffffffffffff811115613c0d57613c0c614cbf565b5b613c19868287016138d0565b93509350506020613c2c868287016139fe565b9150509250925092565b600060208284031215613c4c57613c4b614cc4565b5b6000613c5a8482850161393b565b91505092915050565b600060208284031215613c7957613c78614cc4565b5b6000613c8784828501613950565b91505092915050565b60008060208385031215613ca757613ca6614cc4565b5b600083013567ffffffffffffffff811115613cc557613cc4614cbf565b5b613cd185828601613993565b92509250509250929050565b600060208284031215613cf357613cf2614cc4565b5b6000613d01848285016139e9565b91505092915050565b6000613d16838361427e565b60208301905092915050565b613d2b816149f1565b82525050565b6000613d3c82614870565b613d46818561489e565b9350613d5183614860565b8060005b83811015613d82578151613d698882613d0a565b9750613d7483614891565b925050600181019050613d55565b5085935050505092915050565b613d9881614a03565b82525050565b6000613da98261487b565b613db381856148af565b9350613dc3818560208601614a81565b613dcc81614cc9565b840191505092915050565b6000613de282614886565b613dec81856148c0565b9350613dfc818560208601614a81565b613e0581614cc9565b840191505092915050565b6000613e1b82614886565b613e2581856148d1565b9350613e35818560208601614a81565b80840191505092915050565b6000613e4e6026836148c0565b9150613e5982614cda565b604082019050919050565b6000613e716015836148c0565b9150613e7c82614d29565b602082019050919050565b6000613e94602b836148c0565b9150613e9f82614d52565b604082019050919050565b6000613eb76032836148c0565b9150613ec282614da1565b604082019050919050565b6000613eda6026836148c0565b9150613ee582614df0565b604082019050919050565b6000613efd601c836148c0565b9150613f0882614e3f565b602082019050919050565b6000613f206024836148c0565b9150613f2b82614e68565b604082019050919050565b6000613f436019836148c0565b9150613f4e82614eb7565b602082019050919050565b6000613f66602c836148c0565b9150613f7182614ee0565b604082019050919050565b6000613f896038836148c0565b9150613f9482614f2f565b604082019050919050565b6000613fac602d836148c0565b9150613fb782614f7e565b604082019050919050565b6000613fcf602a836148c0565b9150613fda82614fcd565b604082019050919050565b6000613ff26029836148c0565b9150613ffd8261501c565b604082019050919050565b60006140156029836148c0565b91506140208261506b565b604082019050919050565b60006140386020836148c0565b9150614043826150ba565b602082019050919050565b600061405b602c836148c0565b9150614066826150e3565b604082019050919050565b600061407e601f836148c0565b915061408982615132565b602082019050919050565b60006140a16020836148c0565b91506140ac8261515b565b602082019050919050565b60006140c4602d836148c0565b91506140cf82615184565b604082019050919050565b60006140e76029836148c0565b91506140f2826151d3565b604082019050919050565b600061410a6023836148c0565b915061411582615222565b604082019050919050565b600061412d6019836148c0565b915061413882615271565b602082019050919050565b60006141506021836148c0565b915061415b8261529a565b604082019050919050565b60006141736022836148c0565b915061417e826152e9565b604082019050919050565b6000614196601e836148c0565b91506141a182615338565b602082019050919050565b60006141b96031836148c0565b91506141c482615361565b604082019050919050565b60006141dc601d836148c0565b91506141e7826153b0565b602082019050919050565b60006141ff6022836148c0565b915061420a826153d9565b604082019050919050565b6000614222602c836148c0565b915061422d82615428565b604082019050919050565b6000614245601a836148c0565b915061425082615477565b602082019050919050565b6000614268601c836148c0565b9150614273826154a0565b602082019050919050565b61428781614a5b565b82525050565b61429681614a5b565b82525050565b60006142a88285613e10565b91506142b48284613e10565b91508190509392505050565b60006020820190506142d56000830184613d22565b92915050565b60006060820190506142f06000830186613d22565b6142fd6020830185613d22565b61430a604083018461428d565b949350505050565b60006080820190506143276000830187613d22565b6143346020830186613d22565b614341604083018561428d565b81810360608301526143538184613d9e565b905095945050505050565b60006040820190506143736000830185613d22565b6143806020830184613d8f565b9392505050565b600060408201905061439c6000830185613d22565b6143a9602083018461428d565b9392505050565b600060208201905081810360008301526143ca8184613d31565b905092915050565b60006020820190506143e76000830184613d8f565b92915050565b600060208201905081810360008301526144078184613dd7565b905092915050565b6000602082019050818103600083015261442881613e41565b9050919050565b6000602082019050818103600083015261444881613e64565b9050919050565b6000602082019050818103600083015261446881613e87565b9050919050565b6000602082019050818103600083015261448881613eaa565b9050919050565b600060208201905081810360008301526144a881613ecd565b9050919050565b600060208201905081810360008301526144c881613ef0565b9050919050565b600060208201905081810360008301526144e881613f13565b9050919050565b6000602082019050818103600083015261450881613f36565b9050919050565b6000602082019050818103600083015261452881613f59565b9050919050565b6000602082019050818103600083015261454881613f7c565b9050919050565b6000602082019050818103600083015261456881613f9f565b9050919050565b6000602082019050818103600083015261458881613fc2565b9050919050565b600060208201905081810360008301526145a881613fe5565b9050919050565b600060208201905081810360008301526145c881614008565b9050919050565b600060208201905081810360008301526145e88161402b565b9050919050565b600060208201905081810360008301526146088161404e565b9050919050565b6000602082019050818103600083015261462881614071565b9050919050565b6000602082019050818103600083015261464881614094565b9050919050565b60006020820190508181036000830152614668816140b7565b9050919050565b60006020820190508181036000830152614688816140da565b9050919050565b600060208201905081810360008301526146a8816140fd565b9050919050565b600060208201905081810360008301526146c881614120565b9050919050565b600060208201905081810360008301526146e881614143565b9050919050565b6000602082019050818103600083015261470881614166565b9050919050565b6000602082019050818103600083015261472881614189565b9050919050565b60006020820190508181036000830152614748816141ac565b9050919050565b60006020820190508181036000830152614768816141cf565b9050919050565b60006020820190508181036000830152614788816141f2565b9050919050565b600060208201905081810360008301526147a881614215565b9050919050565b600060208201905081810360008301526147c881614238565b9050919050565b600060208201905081810360008301526147e88161425b565b9050919050565b6000602082019050614804600083018461428d565b92915050565b6000614814614825565b90506148208282614ae6565b919050565b6000604051905090565b600067ffffffffffffffff82111561484a57614849614c7c565b5b61485382614cc9565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006148e782614a5b565b91506148f283614a5b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561492757614926614b91565b5b828201905092915050565b600061493d82614a5b565b915061494883614a5b565b92508261495857614957614bc0565b5b828204905092915050565b600061496e82614a5b565b915061497983614a5b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149b2576149b1614b91565b5b828202905092915050565b60006149c882614a5b565b91506149d383614a5b565b9250828210156149e6576149e5614b91565b5b828203905092915050565b60006149fc82614a3b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614a9f578082015181840152602081019050614a84565b83811115614aae576000848401525b50505050565b60006002820490506001821680614acc57607f821691505b60208210811415614ae057614adf614bef565b5b50919050565b614aef82614cc9565b810181811067ffffffffffffffff82111715614b0e57614b0d614c7c565b5b80604052505050565b6000614b2282614a5b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b5557614b54614b91565b5b600182019050919050565b6000614b6b82614a5b565b9150614b7683614a5b565b925082614b8657614b85614bc0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f436f756e74206d757374206265206c657373207468616e206f7220657175616c60008201527f20746f2034300000000000000000000000000000000000000000000000000000602082015250565b7f4d617820737570706c7920697320726561636865640000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f506c65617365206f6e6c792061646420757020746f203130302061646472657360008201527f73657320617420612074696d6500000000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c792062652063616c6c656420627920617574686f726973656460008201527f20636f6e74726163740000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5468657265206973206e6f2062616c616e636520746f207472616e7366657200600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f596f752063616e6e6f74206d696e742074686973206d616e7920696e206f6e6560008201527f207472616e73616374696f6e2e00000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f5072696365206d75737420626520302e30392065746820666f7220656163682060008201527f4e46540000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e7420616d6f756e742063616e2774206265207a65726f00000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d617820617661696c61626c6520746f2070757263686160008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45786365656420746865204d617820416d6f756e7420746f206d696e742e0000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f742079657420616374697665000000600082015250565b7f5072696365206d75737420626520302e312065746820666f722065616368204e60008201527f4654000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4d6178206d696e7420616d6f756e742069732072656163686564000000000000600082015250565b7f57686974656c6973742073616c65206973206e6f742061637469766500000000600082015250565b6154d2816149f1565b81146154dd57600080fd5b50565b6154e981614a03565b81146154f457600080fd5b50565b61550081614a0f565b811461550b57600080fd5b50565b61551781614a5b565b811461552257600080fd5b50565b61552e81614a65565b811461553957600080fd5b5056fea2646970667358221220acf2dce85c08e6a644145efe96631a7b111f5614f1f57d56d4d3ef26e6f9f7dc64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d57385572657750786e71675041764b714b7074634b7a5a47514a70616d343339445773375264345037334a692f00000000000000000000

Deployed Bytecode

0x60806040526004361061025c5760003560e01c806370a0823111610144578063b88d4fde116100b6578063d547cfb71161007a578063d547cfb71461090f578063d7a5d5d31461093a578063e222c7f914610956578063e985e9c51461096d578063f17f54a5146109aa578063f2fde38b146109d35761025c565b8063b88d4fde1461082a578063bc8893b414610853578063c002d23d1461087e578063c87b56dd146108a9578063cd7a1950146108e65761025c565b8063995068741161010857806399506874146107175780639b19251a14610740578063a22cb4651461077d578063aca9938d146107a6578063b0ed7bf3146107d1578063b20060d5146107ed5761025c565b806370a0823114610644578063715018a61461068157806372b0d90c146106985780638da5cb5b146106c157806395d89b41146106ec5761025c565b806333039d3d116101dd57806351251320116101a1578063512513201461054a57806355f804b31461057357806356a1f5741461059c57806359eda1b5146105c55780636352211e146105dc5780636373a6b1146106195761025c565b806333039d3d146104515780633ad7f56c1461047c57806342842e0e146104a75780634e9ae3ea146104d05780634f6ccce71461050d5761025c565b80631ba4f67d116102245780631ba4f67d1461035a57806323b872dd1461039757806328f6fea7146103c05780632f745c59146103e957806332c60eef146104265761025c565b806301ffc9a71461026157806306fdde031461029e578063081812fc146102c9578063095ea7b31461030657806318160ddd1461032f575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190613c36565b6109fc565b60405161029591906143d2565b60405180910390f35b3480156102aa57600080fd5b506102b3610a76565b6040516102c091906143ed565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb9190613cdd565b610b08565b6040516102fd91906142c0565b60405180910390f35b34801561031257600080fd5b5061032d60048036038101906103289190613b96565b610b8d565b005b34801561033b57600080fd5b50610344610ca5565b60405161035191906147ef565b60405180910390f35b34801561036657600080fd5b50610381600480360381019061037c9190613a13565b610cb2565b60405161038e91906147ef565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b99190613a80565b610cca565b005b3480156103cc57600080fd5b506103e760048036038101906103e29190613a13565b610d2a565b005b3480156103f557600080fd5b50610410600480360381019061040b9190613b96565b610dea565b60405161041d91906147ef565b60405180910390f35b34801561043257600080fd5b5061043b610e8f565b60405161044891906147ef565b60405180910390f35b34801561045d57600080fd5b50610466610e95565b60405161047391906147ef565b60405180910390f35b34801561048857600080fd5b50610491610e9b565b60405161049e91906143d2565b60405180910390f35b3480156104b357600080fd5b506104ce60048036038101906104c99190613a80565b610eae565b005b3480156104dc57600080fd5b506104f760048036038101906104f29190613cdd565b610ece565b60405161050491906143d2565b60405180910390f35b34801561051957600080fd5b50610534600480360381019061052f9190613cdd565b610eee565b60405161054191906147ef565b60405180910390f35b34801561055657600080fd5b50610571600480360381019061056c9190613bd6565b610f5f565b005b34801561057f57600080fd5b5061059a60048036038101906105959190613c90565b6110b7565b005b3480156105a857600080fd5b506105c360048036038101906105be9190613c90565b611180565b005b3480156105d157600080fd5b506105da611249565b005b3480156105e857600080fd5b5061060360048036038101906105fe9190613cdd565b611339565b60405161061091906142c0565b60405180910390f35b34801561062557600080fd5b5061062e6113eb565b60405161063b91906143ed565b60405180910390f35b34801561065057600080fd5b5061066b60048036038101906106669190613a13565b611424565b60405161067891906147ef565b60405180910390f35b34801561068d57600080fd5b506106966114dc565b005b3480156106a457600080fd5b506106bf60048036038101906106ba9190613a13565b611564565b005b3480156106cd57600080fd5b506106d66116ae565b6040516106e391906142c0565b60405180910390f35b3480156106f857600080fd5b506107016116d8565b60405161070e91906143ed565b60405180910390f35b34801561072357600080fd5b5061073e60048036038101906107399190613cdd565b61176a565b005b34801561074c57600080fd5b5061076760048036038101906107629190613a13565b611901565b60405161077491906147ef565b60405180910390f35b34801561078957600080fd5b506107a4600480360381019061079f9190613b56565b611919565b005b3480156107b257600080fd5b506107bb61192f565b6040516107c891906147ef565b60405180910390f35b6107eb60048036038101906107e69190613cdd565b61193b565b005b3480156107f957600080fd5b50610814600480360381019061080f9190613a13565b611bd1565b60405161082191906143b0565b60405180910390f35b34801561083657600080fd5b50610851600480360381019061084c9190613ad3565b611ce1565b005b34801561085f57600080fd5b50610868611d43565b60405161087591906143d2565b60405180910390f35b34801561088a57600080fd5b50610893611d56565b6040516108a091906147ef565b60405180910390f35b3480156108b557600080fd5b506108d060048036038101906108cb9190613cdd565b611d62565b6040516108dd91906143ed565b60405180910390f35b3480156108f257600080fd5b5061090d60048036038101906109089190613cdd565b611ef8565b005b34801561091b57600080fd5b50610924611fb7565b60405161093191906143ed565b60405180910390f35b610954600480360381019061094f9190613cdd565b612045565b005b34801561096257600080fd5b5061096b6122a4565b005b34801561097957600080fd5b50610994600480360381019061098f9190613a40565b612394565b6040516109a191906143d2565b60405180910390f35b3480156109b657600080fd5b506109d160048036038101906109cc9190613cdd565b612428565b005b3480156109df57600080fd5b506109fa60048036038101906109f59190613a13565b61252b565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a6f5750610a6e82612623565b5b9050919050565b606060008054610a8590614ab4565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab190614ab4565b8015610afe5780601f10610ad357610100808354040283529160200191610afe565b820191906000526020600020905b815481529060010190602001808311610ae157829003601f168201915b5050505050905090565b6000610b1382612705565b610b52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b49906145ef565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b9882611339565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c00906146cf565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c28612771565b73ffffffffffffffffffffffffffffffffffffffff161480610c575750610c5681610c51612771565b612394565b5b610c96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8d9061452f565b60405180910390fd5b610ca08383612779565b505050565b6000600880549050905090565b600b6020528060005260406000206000915090505481565b610cdb610cd5612771565b82612832565b610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d119061472f565b60405180910390fd5b610d25838383612910565b505050565b610d32612771565b73ffffffffffffffffffffffffffffffffffffffff16610d506116ae565b73ffffffffffffffffffffffffffffffffffffffff1614610da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9d9061462f565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610df583611424565b8210610e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2d9061444f565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60105481565b61271081565b601160019054906101000a900460ff1681565b610ec983838360405180602001604052806000815250611ce1565b505050565b600d6020528060005260406000206000915054906101000a900460ff1681565b6000610ef8610ca5565b8210610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f309061478f565b60405180910390fd5b60088281548110610f4d57610f4c614c4d565b5b90600052602060002001549050919050565b610f67612771565b73ffffffffffffffffffffffffffffffffffffffff16610f856116ae565b73ffffffffffffffffffffffffffffffffffffffff1614610fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd29061462f565b60405180910390fd5b6064838390501115611022576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110199061454f565b60405180910390fd5b60005b838390508110156110b1578160ff16600c600086868581811061104b5761104a614c4d565b5b90506020020160208101906110609190613a13565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806110a990614b17565b915050611025565b50505050565b6110bf612771565b73ffffffffffffffffffffffffffffffffffffffff166110dd6116ae565b73ffffffffffffffffffffffffffffffffffffffff1614611133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112a9061462f565b60405180910390fd5b8181600f91906111449291906137d6565b507f9bfdd2b649e4e6b3a8a2d15283914c1356714c1eb38ccfbd28339e399c7d8e0f3360405161117491906142c0565b60405180910390a15050565b611188612771565b73ffffffffffffffffffffffffffffffffffffffff166111a66116ae565b73ffffffffffffffffffffffffffffffffffffffff16146111fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f39061462f565b60405180910390fd5b81816012919061120d9291906137d6565b507f8c280ca5b21940d6d526f4adb73e257db93cf29d82cd5bbd2b24307423a9953e3360405161123d91906142c0565b60405180910390a15050565b611251612771565b73ffffffffffffffffffffffffffffffffffffffff1661126f6116ae565b73ffffffffffffffffffffffffffffffffffffffff16146112c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bc9061462f565b60405180910390fd5b601160019054906101000a900460ff1615601160016101000a81548160ff0219169083151502179055507fe7da1b0d009fc26396f0660133ca9f0f87c3bd3f2f9b3db7f900bccd3ae5e74333601160019054906101000a900460ff1660405161132f92919061435e565b60405180910390a1565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d99061458f565b60405180910390fd5b80915050919050565b6040518060400160405280602081526020017f333531656330313965616335356166333866303733656162343838663530623481525081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148c9061456f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114e4612771565b73ffffffffffffffffffffffffffffffffffffffff166115026116ae565b73ffffffffffffffffffffffffffffffffffffffff1614611558576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154f9061462f565b60405180910390fd5b6115626000612b6c565b565b61156c612771565b73ffffffffffffffffffffffffffffffffffffffff1661158a6116ae565b73ffffffffffffffffffffffffffffffffffffffff16146115e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d79061462f565b60405180910390fd5b600047905060008111611628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161f9061460f565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561166e573d6000803e3d6000fd5b507f9b1bfa7fa9ee420a16e124f794c35ac9f90472acc99140eb2f6447c714cad8eb3383836040516116a2939291906142db565b60405180910390a15050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546116e790614ab4565b80601f016020809104026020016040519081016040528092919081815260200182805461171390614ab4565b80156117605780601f1061173557610100808354040283529160200191611760565b820191906000526020600020905b81548152906001019060200180831161174357829003601f168201915b5050505050905090565b611772612771565b73ffffffffffffffffffffffffffffffffffffffff166117906116ae565b73ffffffffffffffffffffffffffffffffffffffff16146117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd9061462f565b60405180910390fd5b60006117f0610ca5565b905060008211611835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182c906146af565b60405180910390fd5b6028821115611879576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118709061464f565b60405180910390fd5b612710828261188891906148dc565b11156118c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c09061442f565b60405180910390fd5b60005b828110156118fc576118e93382846118e491906148dc565b612c32565b80806118f490614b17565b9150506118cc565b505050565b600c6020528060005260406000206000915090505481565b61192b611924612771565b8383612c50565b5050565b67013fbe85edc9000081565b6000611945610ca5565b90506000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050601160019054906101000a900460ff166119da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d1906147cf565b60405180910390fd5b80831115611a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a14906146ef565b60405180910390fd5b60008311611a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a57906146af565b60405180910390fd5b6028831115611aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9b9061464f565b60405180910390fd5b6127108383611ab391906148dc565b1115611af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aeb9061442f565b60405180910390fd5b3467013fbe85edc9000084611b099190614963565b14611b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b409061468f565b60405180910390fd5b60005b83811015611b7c57611b69338285611b6491906148dc565b612c32565b8080611b7490614b17565b915050611b4c565b508281611b8991906149bd565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b60606000808067ffffffffffffffff811115611bf057611bef614c7c565b5b604051908082528060200260200182016040528015611c1e5781602001602082028036833780820191505090505b509050611c2a84611424565b91506028821115611c3a57602891505b6000821115611cd7578167ffffffffffffffff811115611c5d57611c5c614c7c565b5b604051908082528060200260200182016040528015611c8b5781602001602082028036833780820191505090505b50905060005b82811015611cd557611ca38582610dea565b828281518110611cb657611cb5614c4d565b5b6020026020010181815250508080611ccd90614b17565b915050611c91565b505b8092505050919050565b611cf2611cec612771565b83612832565b611d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d289061472f565b60405180910390fd5b611d3d84848484612dbd565b50505050565b601160009054906101000a900460ff1681565b67016345785d8a000081565b60606000600f8054611d7390614ab4565b80601f0160208091040260200160405190810160405280929190818152602001828054611d9f90614ab4565b8015611dec5780601f10611dc157610100808354040283529160200191611dec565b820191906000526020600020905b815481529060010190602001808311611dcf57829003601f168201915b50505050509050600d600084815260200190815260200160002060009054906101000a900460ff1615611ea75760128054611e2690614ab4565b80601f0160208091040260200160405190810160405280929190818152602001828054611e5290614ab4565b8015611e9f5780601f10611e7457610100808354040283529160200191611e9f565b820191906000526020600020905b815481529060010190602001808311611e8257829003601f168201915b505050505090505b6000815111611ec55760405180602001604052806000815250611ef0565b80611ecf84612e19565b604051602001611ee092919061429c565b6040516020818303038152906040525b915050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7f906145af565b60405180910390fd5b6001600d600083815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600f8054611fc490614ab4565b80601f0160208091040260200160405190810160405280929190818152602001828054611ff090614ab4565b801561203d5780601f106120125761010080835404028352916020019161203d565b820191906000526020600020905b81548152906001019060200180831161202057829003601f168201915b505050505081565b600061204f610ca5565b90506000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050601160009054906101000a900460ff166120e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120db9061474f565b60405180910390fd5b60008311612127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211e906146af565b60405180910390fd5b612710838361213691906148dc565b1115612177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216e906147af565b60405180910390fd5b601054838261218691906148dc565b11156121c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121be9061470f565b60405180910390fd5b3467016345785d8a0000846121dc9190614963565b1461221c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122139061476f565b60405180910390fd5b60005b8381101561224f5761223c33828561223791906148dc565b612c32565b808061224790614b17565b91505061221f565b50828161225c91906148dc565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b6122ac612771565b73ffffffffffffffffffffffffffffffffffffffff166122ca6116ae565b73ffffffffffffffffffffffffffffffffffffffff1614612320576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123179061462f565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff0219169083151502179055507f3fccb8b6be98ef992ba7fe1fb1eb4540c97e7b9f3c65632bb53b5f4e3757067533601160009054906101000a900460ff1660405161238a92919061435e565b60405180910390a1565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612430612771565b73ffffffffffffffffffffffffffffffffffffffff1661244e6116ae565b73ffffffffffffffffffffffffffffffffffffffff16146124a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249b9061462f565b60405180910390fd5b60288111156124e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124df9061440f565b60405180910390fd5b806010819055507fb996b29bfa938dca8aa3cac75dd2e36bd410cb2593e51da4f916289959b20e1b3382604051612520929190614387565b60405180910390a150565b612533612771565b73ffffffffffffffffffffffffffffffffffffffff166125516116ae565b73ffffffffffffffffffffffffffffffffffffffff16146125a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259e9061462f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260e9061448f565b60405180910390fd5b61262081612b6c565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806126ee57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806126fe57506126fd82612f7a565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166127ec83611339565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061283d82612705565b61287c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128739061450f565b60405180910390fd5b600061288783611339565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128f657508373ffffffffffffffffffffffffffffffffffffffff166128de84610b08565b73ffffffffffffffffffffffffffffffffffffffff16145b8061290757506129068185612394565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661293082611339565b73ffffffffffffffffffffffffffffffffffffffff1614612986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297d9061466f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ed906144cf565b60405180910390fd5b612a01838383612fe4565b612a0c600082612779565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a5c91906149bd565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ab391906148dc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c4c8282604051806020016040528060008152506130f8565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb6906144ef565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612db091906143d2565b60405180910390a3505050565b612dc8848484612910565b612dd484848484613153565b612e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0a9061446f565b60405180910390fd5b50505050565b60606000821415612e61576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f75565b600082905060005b60008214612e93578080612e7c90614b17565b915050600a82612e8c9190614932565b9150612e69565b60008167ffffffffffffffff811115612eaf57612eae614c7c565b5b6040519080825280601f01601f191660200182016040528015612ee15781602001600182028036833780820191505090505b5090505b60008514612f6e57600182612efa91906149bd565b9150600a85612f099190614b60565b6030612f1591906148dc565b60f81b818381518110612f2b57612f2a614c4d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f679190614932565b9450612ee5565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612fef8383836132ea565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156130325761302d816132ef565b613071565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146130705761306f8382613338565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130b4576130af816134a5565b6130f3565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146130f2576130f18282613576565b5b5b505050565b61310283836135f5565b61310f6000848484613153565b61314e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131459061446f565b60405180910390fd5b505050565b60006131748473ffffffffffffffffffffffffffffffffffffffff166137c3565b156132dd578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261319d612771565b8786866040518563ffffffff1660e01b81526004016131bf9493929190614312565b602060405180830381600087803b1580156131d957600080fd5b505af192505050801561320a57506040513d601f19601f820116820180604052508101906132079190613c63565b60015b61328d573d806000811461323a576040519150601f19603f3d011682016040523d82523d6000602084013e61323f565b606091505b50600081511415613285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327c9061446f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506132e2565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161334584611424565b61334f91906149bd565b9050600060076000848152602001908152602001600020549050818114613434576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506134b991906149bd565b90506000600960008481526020019081526020016000205490506000600883815481106134e9576134e8614c4d565b5b90600052602060002001549050806008838154811061350b5761350a614c4d565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061355a57613559614c1e565b5b6001900381819060005260206000200160009055905550505050565b600061358183611424565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161365c906145cf565b60405180910390fd5b61366e81612705565b156136ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136a5906144af565b60405180910390fd5b6136ba60008383612fe4565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461370a91906148dc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546137e290614ab4565b90600052602060002090601f016020900481019282613804576000855561384b565b82601f1061381d57803560ff191683800117855561384b565b8280016001018555821561384b579182015b8281111561384a57823582559160200191906001019061382f565b5b509050613858919061385c565b5090565b5b8082111561387557600081600090555060010161385d565b5090565b600061388c6138878461482f565b61480a565b9050828152602081018484840111156138a8576138a7614cba565b5b6138b3848285614a72565b509392505050565b6000813590506138ca816154c9565b92915050565b60008083601f8401126138e6576138e5614cb0565b5b8235905067ffffffffffffffff81111561390357613902614cab565b5b60208301915083602082028301111561391f5761391e614cb5565b5b9250929050565b600081359050613935816154e0565b92915050565b60008135905061394a816154f7565b92915050565b60008151905061395f816154f7565b92915050565b600082601f83011261397a57613979614cb0565b5b813561398a848260208601613879565b91505092915050565b60008083601f8401126139a9576139a8614cb0565b5b8235905067ffffffffffffffff8111156139c6576139c5614cab565b5b6020830191508360018202830111156139e2576139e1614cb5565b5b9250929050565b6000813590506139f88161550e565b92915050565b600081359050613a0d81615525565b92915050565b600060208284031215613a2957613a28614cc4565b5b6000613a37848285016138bb565b91505092915050565b60008060408385031215613a5757613a56614cc4565b5b6000613a65858286016138bb565b9250506020613a76858286016138bb565b9150509250929050565b600080600060608486031215613a9957613a98614cc4565b5b6000613aa7868287016138bb565b9350506020613ab8868287016138bb565b9250506040613ac9868287016139e9565b9150509250925092565b60008060008060808587031215613aed57613aec614cc4565b5b6000613afb878288016138bb565b9450506020613b0c878288016138bb565b9350506040613b1d878288016139e9565b925050606085013567ffffffffffffffff811115613b3e57613b3d614cbf565b5b613b4a87828801613965565b91505092959194509250565b60008060408385031215613b6d57613b6c614cc4565b5b6000613b7b858286016138bb565b9250506020613b8c85828601613926565b9150509250929050565b60008060408385031215613bad57613bac614cc4565b5b6000613bbb858286016138bb565b9250506020613bcc858286016139e9565b9150509250929050565b600080600060408486031215613bef57613bee614cc4565b5b600084013567ffffffffffffffff811115613c0d57613c0c614cbf565b5b613c19868287016138d0565b93509350506020613c2c868287016139fe565b9150509250925092565b600060208284031215613c4c57613c4b614cc4565b5b6000613c5a8482850161393b565b91505092915050565b600060208284031215613c7957613c78614cc4565b5b6000613c8784828501613950565b91505092915050565b60008060208385031215613ca757613ca6614cc4565b5b600083013567ffffffffffffffff811115613cc557613cc4614cbf565b5b613cd185828601613993565b92509250509250929050565b600060208284031215613cf357613cf2614cc4565b5b6000613d01848285016139e9565b91505092915050565b6000613d16838361427e565b60208301905092915050565b613d2b816149f1565b82525050565b6000613d3c82614870565b613d46818561489e565b9350613d5183614860565b8060005b83811015613d82578151613d698882613d0a565b9750613d7483614891565b925050600181019050613d55565b5085935050505092915050565b613d9881614a03565b82525050565b6000613da98261487b565b613db381856148af565b9350613dc3818560208601614a81565b613dcc81614cc9565b840191505092915050565b6000613de282614886565b613dec81856148c0565b9350613dfc818560208601614a81565b613e0581614cc9565b840191505092915050565b6000613e1b82614886565b613e2581856148d1565b9350613e35818560208601614a81565b80840191505092915050565b6000613e4e6026836148c0565b9150613e5982614cda565b604082019050919050565b6000613e716015836148c0565b9150613e7c82614d29565b602082019050919050565b6000613e94602b836148c0565b9150613e9f82614d52565b604082019050919050565b6000613eb76032836148c0565b9150613ec282614da1565b604082019050919050565b6000613eda6026836148c0565b9150613ee582614df0565b604082019050919050565b6000613efd601c836148c0565b9150613f0882614e3f565b602082019050919050565b6000613f206024836148c0565b9150613f2b82614e68565b604082019050919050565b6000613f436019836148c0565b9150613f4e82614eb7565b602082019050919050565b6000613f66602c836148c0565b9150613f7182614ee0565b604082019050919050565b6000613f896038836148c0565b9150613f9482614f2f565b604082019050919050565b6000613fac602d836148c0565b9150613fb782614f7e565b604082019050919050565b6000613fcf602a836148c0565b9150613fda82614fcd565b604082019050919050565b6000613ff26029836148c0565b9150613ffd8261501c565b604082019050919050565b60006140156029836148c0565b91506140208261506b565b604082019050919050565b60006140386020836148c0565b9150614043826150ba565b602082019050919050565b600061405b602c836148c0565b9150614066826150e3565b604082019050919050565b600061407e601f836148c0565b915061408982615132565b602082019050919050565b60006140a16020836148c0565b91506140ac8261515b565b602082019050919050565b60006140c4602d836148c0565b91506140cf82615184565b604082019050919050565b60006140e76029836148c0565b91506140f2826151d3565b604082019050919050565b600061410a6023836148c0565b915061411582615222565b604082019050919050565b600061412d6019836148c0565b915061413882615271565b602082019050919050565b60006141506021836148c0565b915061415b8261529a565b604082019050919050565b60006141736022836148c0565b915061417e826152e9565b604082019050919050565b6000614196601e836148c0565b91506141a182615338565b602082019050919050565b60006141b96031836148c0565b91506141c482615361565b604082019050919050565b60006141dc601d836148c0565b91506141e7826153b0565b602082019050919050565b60006141ff6022836148c0565b915061420a826153d9565b604082019050919050565b6000614222602c836148c0565b915061422d82615428565b604082019050919050565b6000614245601a836148c0565b915061425082615477565b602082019050919050565b6000614268601c836148c0565b9150614273826154a0565b602082019050919050565b61428781614a5b565b82525050565b61429681614a5b565b82525050565b60006142a88285613e10565b91506142b48284613e10565b91508190509392505050565b60006020820190506142d56000830184613d22565b92915050565b60006060820190506142f06000830186613d22565b6142fd6020830185613d22565b61430a604083018461428d565b949350505050565b60006080820190506143276000830187613d22565b6143346020830186613d22565b614341604083018561428d565b81810360608301526143538184613d9e565b905095945050505050565b60006040820190506143736000830185613d22565b6143806020830184613d8f565b9392505050565b600060408201905061439c6000830185613d22565b6143a9602083018461428d565b9392505050565b600060208201905081810360008301526143ca8184613d31565b905092915050565b60006020820190506143e76000830184613d8f565b92915050565b600060208201905081810360008301526144078184613dd7565b905092915050565b6000602082019050818103600083015261442881613e41565b9050919050565b6000602082019050818103600083015261444881613e64565b9050919050565b6000602082019050818103600083015261446881613e87565b9050919050565b6000602082019050818103600083015261448881613eaa565b9050919050565b600060208201905081810360008301526144a881613ecd565b9050919050565b600060208201905081810360008301526144c881613ef0565b9050919050565b600060208201905081810360008301526144e881613f13565b9050919050565b6000602082019050818103600083015261450881613f36565b9050919050565b6000602082019050818103600083015261452881613f59565b9050919050565b6000602082019050818103600083015261454881613f7c565b9050919050565b6000602082019050818103600083015261456881613f9f565b9050919050565b6000602082019050818103600083015261458881613fc2565b9050919050565b600060208201905081810360008301526145a881613fe5565b9050919050565b600060208201905081810360008301526145c881614008565b9050919050565b600060208201905081810360008301526145e88161402b565b9050919050565b600060208201905081810360008301526146088161404e565b9050919050565b6000602082019050818103600083015261462881614071565b9050919050565b6000602082019050818103600083015261464881614094565b9050919050565b60006020820190508181036000830152614668816140b7565b9050919050565b60006020820190508181036000830152614688816140da565b9050919050565b600060208201905081810360008301526146a8816140fd565b9050919050565b600060208201905081810360008301526146c881614120565b9050919050565b600060208201905081810360008301526146e881614143565b9050919050565b6000602082019050818103600083015261470881614166565b9050919050565b6000602082019050818103600083015261472881614189565b9050919050565b60006020820190508181036000830152614748816141ac565b9050919050565b60006020820190508181036000830152614768816141cf565b9050919050565b60006020820190508181036000830152614788816141f2565b9050919050565b600060208201905081810360008301526147a881614215565b9050919050565b600060208201905081810360008301526147c881614238565b9050919050565b600060208201905081810360008301526147e88161425b565b9050919050565b6000602082019050614804600083018461428d565b92915050565b6000614814614825565b90506148208282614ae6565b919050565b6000604051905090565b600067ffffffffffffffff82111561484a57614849614c7c565b5b61485382614cc9565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006148e782614a5b565b91506148f283614a5b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561492757614926614b91565b5b828201905092915050565b600061493d82614a5b565b915061494883614a5b565b92508261495857614957614bc0565b5b828204905092915050565b600061496e82614a5b565b915061497983614a5b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149b2576149b1614b91565b5b828202905092915050565b60006149c882614a5b565b91506149d383614a5b565b9250828210156149e6576149e5614b91565b5b828203905092915050565b60006149fc82614a3b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614a9f578082015181840152602081019050614a84565b83811115614aae576000848401525b50505050565b60006002820490506001821680614acc57607f821691505b60208210811415614ae057614adf614bef565b5b50919050565b614aef82614cc9565b810181811067ffffffffffffffff82111715614b0e57614b0d614c7c565b5b80604052505050565b6000614b2282614a5b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b5557614b54614b91565b5b600182019050919050565b6000614b6b82614a5b565b9150614b7683614a5b565b925082614b8657614b85614bc0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f436f756e74206d757374206265206c657373207468616e206f7220657175616c60008201527f20746f2034300000000000000000000000000000000000000000000000000000602082015250565b7f4d617820737570706c7920697320726561636865640000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f506c65617365206f6e6c792061646420757020746f203130302061646472657360008201527f73657320617420612074696d6500000000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c792062652063616c6c656420627920617574686f726973656460008201527f20636f6e74726163740000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5468657265206973206e6f2062616c616e636520746f207472616e7366657200600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f596f752063616e6e6f74206d696e742074686973206d616e7920696e206f6e6560008201527f207472616e73616374696f6e2e00000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f5072696365206d75737420626520302e30392065746820666f7220656163682060008201527f4e46540000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e7420616d6f756e742063616e2774206265207a65726f00000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d617820617661696c61626c6520746f2070757263686160008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45786365656420746865204d617820416d6f756e7420746f206d696e742e0000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f742079657420616374697665000000600082015250565b7f5072696365206d75737420626520302e312065746820666f722065616368204e60008201527f4654000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4d6178206d696e7420616d6f756e742069732072656163686564000000000000600082015250565b7f57686974656c6973742073616c65206973206e6f742061637469766500000000600082015250565b6154d2816149f1565b81146154dd57600080fd5b50565b6154e981614a03565b81146154f457600080fd5b50565b61550081614a0f565b811461550b57600080fd5b50565b61551781614a5b565b811461552257600080fd5b50565b61552e81614a65565b811461553957600080fd5b5056fea2646970667358221220acf2dce85c08e6a644145efe96631a7b111f5614f1f57d56d4d3ef26e6f9f7dc64736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d57385572657750786e71675041764b714b7074634b7a5a47514a70616d343339445773375264345037334a692f00000000000000000000

-----Decoded View---------------
Arg [0] : _baseUri (string): ipfs://QmW8UrewPxnqgPAvKqKptcKzZGQJpam439DWs7Rd4P73Ji/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d57385572657750786e71675041764b714b7074634b7a5a
Arg [3] : 47514a70616d343339445773375264345037334a692f00000000000000000000


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.