ETH Price: $3,385.87 (-1.43%)
Gas: 2 Gwei

Token

Fang Gang (FNG)
 

Overview

Max Total Supply

8,888 FNG

Holders

4,169

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
3 FNG
0xe15af41bc008cd0e66a2bf0eb49830623ff49a71
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Fang Gang is a collection of 8888 randomly assembled Fangsters - twisted lunatics that come out at night to throw parties, hang around in dark alleys and have fun on the streets of New Fang City.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FangGang

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

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

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

contract FangGang is ERC721Enumerable, Ownable {  
    using Address for address;
    
    // Starting and stopping sale and presale
    bool public saleActive = false;
    bool public presaleActive = false;

    // Reserved for the team, customs, giveaways, collabs and so on.
    uint256 public reserved = 60;

    // Price of each token
    uint256 public price = 0.04 ether;

    // Maximum limit of tokens that can ever exist
    uint256 constant MAX_SUPPLY = 8888;

    // The base link that leads to the image / video of the token
    string public baseTokenURI;

    // Team addresses for withdrawals
    address public a1;
    address public a2;
    address public a3;
    address public a4;
    address public a5;

    // List of addresses that have a number of reserved tokens for presale
    mapping (address => uint256) public presaleReserved;

    constructor (string memory newBaseURI) ERC721 ("Fang Gang", "FNG") {
        setBaseURI(newBaseURI);
    }

    // Override so the openzeppelin tokenURI() method will use this method to create the full tokenURI instead
    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }

    // See which address owns which tokens
    function tokensOfOwner(address addr) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(addr);
        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(addr, i);
        }
        return tokensId;
    }

    // Exclusive presale minting
    function mintPresale(uint256 _amount) public payable {
        uint256 supply = totalSupply();
        uint256 reservedAmt = presaleReserved[msg.sender];
        require( presaleActive,                  "Presale isn't active" );
        require( reservedAmt > 0,                "No tokens reserved for your address" );
        require( _amount <= reservedAmt,         "Can't mint more than reserved" );
        require( supply + _amount <= MAX_SUPPLY, "Can't mint more than max supply" );
        require( msg.value == price * _amount,   "Wrong amount of ETH sent" );
        presaleReserved[msg.sender] = reservedAmt - _amount;
        for(uint256 i; i < _amount; i++){
            _safeMint( msg.sender, supply + i );
        }
    }

    // Standard mint function
    function mintToken(uint256 _amount) public payable {
        uint256 supply = totalSupply();
        require( saleActive,                     "Sale isn't active" );
        require( _amount > 0 && _amount < 11,    "Can only mint between 1 and 10 tokens at once" );
        require( supply + _amount <= MAX_SUPPLY, "Can't mint more than max supply" );
        require( msg.value == price * _amount,   "Wrong amount of ETH sent" );
        for(uint256 i; i < _amount; i++){
            _safeMint( msg.sender, supply + i );
        }
    }

    // Admin minting function to reserve tokens for the team, collabs, customs and giveaways
    function mintReserved(uint256 _amount) public onlyOwner {
        // Limited to a publicly set amount
        require( _amount <= reserved, "Can't reserve more than set amount" );
        reserved -= _amount;
        uint256 supply = totalSupply();
        for(uint256 i; i < _amount; i++){
            _safeMint( msg.sender, supply + i );
        }
    }
    
    // Edit reserved presale spots
    function editPresaleReserved(address[] memory _a, uint256[] memory _amount) public onlyOwner {
        for(uint256 i; i < _a.length; i++){
            presaleReserved[_a[i]] = _amount[i];
        }
    }

    // Start and stop presale
    function setPresaleActive(bool val) public onlyOwner {
        presaleActive = val;
    }

    // Start and stop sale
    function setSaleActive(bool val) public onlyOwner {
        saleActive = val;
    }

    // Set new baseURI
    function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
    }

    // Set a different price in case ETH changes drastically
    function setPrice(uint256 newPrice) public onlyOwner {
        price = newPrice;
    }

    // Set team addresses
    function setAddresses(address[] memory _a) public onlyOwner {
        a1 = _a[0];
        a2 = _a[1];
        a3 = _a[2];
        a4 = _a[3];
        a5 = _a[4];
    }

    // Withdraw funds from contract for the team
    function withdrawTeam(uint256 amount) public payable onlyOwner {
        uint256 percent = amount / 100;
        // 21% Split evenly among the team
        require(payable(a1).send(percent * 21));
        require(payable(a2).send(percent * 21));
        require(payable(a3).send(percent * 21));
        require(payable(a4).send(percent * 21));
        // 16% to the community wallet
        // Half of that will go to charity
        // The other half to invest back into community projects
        require(payable(a5).send(percent * 16));
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).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 5 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"newBaseURI","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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"a1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"a2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"a3","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"a4","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"a5","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"address[]","name":"_a","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"editPresaleReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleReserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserved","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_a","type":"address[]"}],"name":"setAddresses","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":"bool","name":"val","type":"bool"}],"name":"setPresaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawTeam","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526000600a60146101000a81548160ff0219169083151502179055506000600a60156101000a81548160ff021916908315150217905550603c600b55668e1bc9bf040000600c553480156200005757600080fd5b50604051620059133803806200591383398181016040528101906200007d91906200041a565b6040518060400160405280600981526020017f46616e672047616e6700000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f464e470000000000000000000000000000000000000000000000000000000000815250816000908051906020019062000101929190620002f8565b5080600190805190602001906200011a929190620002f8565b5050506200013d620001316200015560201b60201c565b6200015d60201b60201c565b6200014e816200022360201b60201c565b5062000652565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002336200015560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000259620002ce60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002b2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002a99062000486565b60405180910390fd5b80600d9080519060200190620002ca929190620002f8565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b82805462000306906200054e565b90600052602060002090601f0160209004810192826200032a576000855562000376565b82601f106200034557805160ff191683800117855562000376565b8280016001018555821562000376579182015b828111156200037557825182559160200191906001019062000358565b5b50905062000385919062000389565b5090565b5b80821115620003a45760008160009055506001016200038a565b5090565b6000620003bf620003b984620004d1565b620004a8565b905082815260208101848484011115620003d857600080fd5b620003e584828562000518565b509392505050565b600082601f830112620003ff57600080fd5b815162000411848260208601620003a8565b91505092915050565b6000602082840312156200042d57600080fd5b600082015167ffffffffffffffff8111156200044857600080fd5b6200045684828501620003ed565b91505092915050565b60006200046e60208362000507565b91506200047b8262000629565b602082019050919050565b60006020820190508181036000830152620004a1816200045f565b9050919050565b6000620004b4620004c7565b9050620004c2828262000584565b919050565b6000604051905090565b600067ffffffffffffffff821115620004ef57620004ee620005e9565b5b620004fa8262000618565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620005385780820151818401526020810190506200051b565b8381111562000548576000848401525b50505050565b600060028204905060018216806200056757607f821691505b602082108114156200057e576200057d620005ba565b5b50919050565b6200058f8262000618565b810181811067ffffffffffffffff82111715620005b157620005b0620005e9565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6152b180620006626000396000f3fe6080604052600436106102465760003560e01c8063841718a611610139578063b88d4fde116100b6578063e985e9c51161007a578063e985e9c514610893578063f2fde38b146108d0578063f74ea418146108f9578063f759867a14610924578063fd2b049214610940578063fe60d12c1461095c57610246565b8063b88d4fde146107bd578063b9571721146107e6578063c634d0321461080f578063c87b56dd1461082b578063d547cfb71461086857610246565b806395d89b41116100fd57806395d89b41146106ea578063969e9d0c146107155780639a5d140b14610740578063a035b1fe14610769578063a22cb4651461079457610246565b8063841718a6146106055780638462151c1461062e5780638da5cb5b1461066b57806391b7f5ed146106965780639426eef8146106bf57610246565b806342842e0e116101c75780636352211e1161018b5780636352211e1461052057806368428a1b1461055d5780636b2fd8651461058857806370a08231146105b1578063715018a6146105ee57610246565b806342842e0e1461043b5780634f6ccce71461046457806353135ca0146104a157806355f804b3146104cc578063615db6e1146104f557610246565b806318160ddd1161020e57806318160ddd1461034457806323b872dd1461036f5780632f745c591461039857806339c36fa0146103d55780633f8121a21461041257610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f0578063119552a114610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613cbb565b610987565b60405161027f9190614307565b60405180910390f35b34801561029457600080fd5b5061029d610a01565b6040516102aa9190614322565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613d4e565b610a93565b6040516102e7919061427e565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613ba9565b610b18565b005b34801561032557600080fd5b5061032e610c30565b60405161033b919061427e565b60405180910390f35b34801561035057600080fd5b50610359610c56565b6040516103669190614684565b60405180910390f35b34801561037b57600080fd5b5061039660048036038101906103919190613aa3565b610c63565b005b3480156103a457600080fd5b506103bf60048036038101906103ba9190613ba9565b610cc3565b6040516103cc9190614684565b60405180910390f35b3480156103e157600080fd5b506103fc60048036038101906103f79190613a3e565b610d68565b6040516104099190614684565b60405180910390f35b34801561041e57600080fd5b5061043960048036038101906104349190613c92565b610d80565b005b34801561044757600080fd5b50610462600480360381019061045d9190613aa3565b610e19565b005b34801561047057600080fd5b5061048b60048036038101906104869190613d4e565b610e39565b6040516104989190614684565b60405180910390f35b3480156104ad57600080fd5b506104b6610ed0565b6040516104c39190614307565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee9190613d0d565b610ee3565b005b34801561050157600080fd5b5061050a610f79565b604051610517919061427e565b60405180910390f35b34801561052c57600080fd5b5061054760048036038101906105429190613d4e565b610f9f565b604051610554919061427e565b60405180910390f35b34801561056957600080fd5b50610572611051565b60405161057f9190614307565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190613c26565b611064565b005b3480156105bd57600080fd5b506105d860048036038101906105d39190613a3e565b6111c8565b6040516105e59190614684565b60405180910390f35b3480156105fa57600080fd5b50610603611280565b005b34801561061157600080fd5b5061062c60048036038101906106279190613c92565b611308565b005b34801561063a57600080fd5b5061065560048036038101906106509190613a3e565b6113a1565b60405161066291906142e5565b60405180910390f35b34801561067757600080fd5b5061068061149b565b60405161068d919061427e565b60405180910390f35b3480156106a257600080fd5b506106bd60048036038101906106b89190613d4e565b6114c5565b005b3480156106cb57600080fd5b506106d461154b565b6040516106e1919061427e565b60405180910390f35b3480156106f657600080fd5b506106ff611571565b60405161070c9190614322565b60405180910390f35b34801561072157600080fd5b5061072a611603565b604051610737919061427e565b60405180910390f35b34801561074c57600080fd5b5061076760048036038101906107629190613d4e565b611629565b005b34801561077557600080fd5b5061077e611747565b60405161078b9190614684565b60405180910390f35b3480156107a057600080fd5b506107bb60048036038101906107b69190613b6d565b61174d565b005b3480156107c957600080fd5b506107e460048036038101906107df9190613af2565b6118ce565b005b3480156107f257600080fd5b5061080d60048036038101906108089190613be5565b611930565b005b61082960048036038101906108249190613d4e565b611c39565b005b34801561083757600080fd5b50610852600480360381019061084d9190613d4e565b611dba565b60405161085f9190614322565b60405180910390f35b34801561087457600080fd5b5061087d611e61565b60405161088a9190614322565b60405180910390f35b34801561089f57600080fd5b506108ba60048036038101906108b59190613a67565b611eef565b6040516108c79190614307565b60405180910390f35b3480156108dc57600080fd5b506108f760048036038101906108f29190613a3e565b611f83565b005b34801561090557600080fd5b5061090e61207b565b60405161091b919061427e565b60405180910390f35b61093e60048036038101906109399190613d4e565b6120a1565b005b61095a60048036038101906109559190613d4e565b6122ed565b005b34801561096857600080fd5b5061097161259a565b60405161097e9190614684565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109fa57506109f9826125a0565b5b9050919050565b606060008054610a10906149c5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3c906149c5565b8015610a895780601f10610a5e57610100808354040283529160200191610a89565b820191906000526020600020905b815481529060010190602001808311610a6c57829003601f168201915b5050505050905090565b6000610a9e82612682565b610add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad490614544565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b2382610f9f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8b90614604565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bb36126ee565b73ffffffffffffffffffffffffffffffffffffffff161480610be25750610be181610bdc6126ee565b611eef565b5b610c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c18906144a4565b60405180910390fd5b610c2b83836126f6565b505050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600880549050905090565b610c74610c6e6126ee565b826127af565b610cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caa90614624565b60405180910390fd5b610cbe83838361288d565b505050565b6000610cce836111c8565b8210610d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0690614384565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60136020528060005260406000206000915090505481565b610d886126ee565b73ffffffffffffffffffffffffffffffffffffffff16610da661149b565b73ffffffffffffffffffffffffffffffffffffffff1614610dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df390614584565b60405180910390fd5b80600a60156101000a81548160ff02191690831515021790555050565b610e34838383604051806020016040528060008152506118ce565b505050565b6000610e43610c56565b8210610e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7b90614644565b60405180910390fd5b60088281548110610ebe577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b600a60159054906101000a900460ff1681565b610eeb6126ee565b73ffffffffffffffffffffffffffffffffffffffff16610f0961149b565b73ffffffffffffffffffffffffffffffffffffffff1614610f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5690614584565b60405180910390fd5b80600d9080519060200190610f75929190613736565b5050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103f906144e4565b60405180910390fd5b80915050919050565b600a60149054906101000a900460ff1681565b61106c6126ee565b73ffffffffffffffffffffffffffffffffffffffff1661108a61149b565b73ffffffffffffffffffffffffffffffffffffffff16146110e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d790614584565b60405180910390fd5b60005b82518110156111c357818181518110611125577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516013600085848151811061116a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806111bb90614a28565b9150506110e3565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611239576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611230906144c4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112886126ee565b73ffffffffffffffffffffffffffffffffffffffff166112a661149b565b73ffffffffffffffffffffffffffffffffffffffff16146112fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f390614584565b60405180910390fd5b6113066000612ae9565b565b6113106126ee565b73ffffffffffffffffffffffffffffffffffffffff1661132e61149b565b73ffffffffffffffffffffffffffffffffffffffff1614611384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137b90614584565b60405180910390fd5b80600a60146101000a81548160ff02191690831515021790555050565b606060006113ae836111c8565b905060008167ffffffffffffffff8111156113f2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156114205781602001602082028036833780820191505090505b50905060005b82811015611490576114388582610cc3565b828281518110611471577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061148890614a28565b915050611426565b508092505050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114cd6126ee565b73ffffffffffffffffffffffffffffffffffffffff166114eb61149b565b73ffffffffffffffffffffffffffffffffffffffff1614611541576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153890614584565b60405180910390fd5b80600c8190555050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060018054611580906149c5565b80601f01602080910402602001604051908101604052809291908181526020018280546115ac906149c5565b80156115f95780601f106115ce576101008083540402835291602001916115f9565b820191906000526020600020905b8154815290600101906020018083116115dc57829003601f168201915b5050505050905090565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6116316126ee565b73ffffffffffffffffffffffffffffffffffffffff1661164f61149b565b73ffffffffffffffffffffffffffffffffffffffff16146116a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169c90614584565b60405180910390fd5b600b548111156116ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e190614524565b60405180910390fd5b80600b60008282546116fc91906148db565b92505081905550600061170d610c56565b905060005b828110156117425761172f33828461172a91906147fa565b612baf565b808061173a90614a28565b915050611712565b505050565b600c5481565b6117556126ee565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ba90614444565b60405180910390fd5b80600560006117d06126ee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661187d6126ee565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118c29190614307565b60405180910390a35050565b6118df6118d96126ee565b836127af565b61191e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191590614624565b60405180910390fd5b61192a84848484612bcd565b50505050565b6119386126ee565b73ffffffffffffffffffffffffffffffffffffffff1661195661149b565b73ffffffffffffffffffffffffffffffffffffffff16146119ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a390614584565b60405180910390fd5b806000815181106119e6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600181518110611a68577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600281518110611aea577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600381518110611b6c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600481518110611bee577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611c43610c56565b9050600a60149054906101000a900460ff16611c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8b906145e4565b60405180910390fd5b600082118015611ca45750600b82105b611ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cda90614364565b60405180910390fd5b6122b88282611cf291906147fa565b1115611d33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2a90614404565b60405180910390fd5b81600c54611d419190614881565b3414611d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7990614664565b60405180910390fd5b60005b82811015611db557611da2338284611d9d91906147fa565b612baf565b8080611dad90614a28565b915050611d85565b505050565b6060611dc582612682565b611e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfb906145c4565b60405180910390fd5b6000611e0e612c29565b90506000815111611e2e5760405180602001604052806000815250611e59565b80611e3884612cbb565b604051602001611e4992919061425a565b6040516020818303038152906040525b915050919050565b600d8054611e6e906149c5565b80601f0160208091040260200160405190810160405280929190818152602001828054611e9a906149c5565b8015611ee75780601f10611ebc57610100808354040283529160200191611ee7565b820191906000526020600020905b815481529060010190602001808311611eca57829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f8b6126ee565b73ffffffffffffffffffffffffffffffffffffffff16611fa961149b565b73ffffffffffffffffffffffffffffffffffffffff1614611fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff690614584565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561206f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612066906143c4565b60405180910390fd5b61207881612ae9565b50565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006120ab610c56565b90506000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600a60159054906101000a900460ff16612140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213790614564565b60405180910390fd5b60008111612183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217a90614484565b60405180910390fd5b808311156121c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bd90614344565b60405180910390fd5b6122b883836121d591906147fa565b1115612216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220d90614404565b60405180910390fd5b82600c546122249190614881565b3414612265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225c90614664565b60405180910390fd5b828161227191906148db565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b838110156122e7576122d43382856122cf91906147fa565b612baf565b80806122df90614a28565b9150506122b7565b50505050565b6122f56126ee565b73ffffffffffffffffffffffffffffffffffffffff1661231361149b565b73ffffffffffffffffffffffffffffffffffffffff1614612369576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236090614584565b60405180910390fd5b60006064826123789190614850565b9050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6015836123c39190614881565b9081150290604051600060405180830381858888f193505050506123e657600080fd5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60158361242f9190614881565b9081150290604051600060405180830381858888f1935050505061245257600080fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60158361249b9190614881565b9081150290604051600060405180830381858888f193505050506124be57600080fd5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6015836125079190614881565b9081150290604051600060405180830381858888f1935050505061252a57600080fd5b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6010836125739190614881565b9081150290604051600060405180830381858888f1935050505061259657600080fd5b5050565b600b5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061266b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061267b575061267a82612e68565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661276983610f9f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006127ba82612682565b6127f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f090614464565b60405180910390fd5b600061280483610f9f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061287357508373ffffffffffffffffffffffffffffffffffffffff1661285b84610a93565b73ffffffffffffffffffffffffffffffffffffffff16145b8061288457506128838185611eef565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166128ad82610f9f565b73ffffffffffffffffffffffffffffffffffffffff1614612903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fa906145a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296a90614424565b60405180910390fd5b61297e838383612ed2565b6129896000826126f6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129d991906148db565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a3091906147fa565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612bc9828260405180602001604052806000815250612fe6565b5050565b612bd884848461288d565b612be484848484613041565b612c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1a906143a4565b60405180910390fd5b50505050565b6060600d8054612c38906149c5565b80601f0160208091040260200160405190810160405280929190818152602001828054612c64906149c5565b8015612cb15780601f10612c8657610100808354040283529160200191612cb1565b820191906000526020600020905b815481529060010190602001808311612c9457829003601f168201915b5050505050905090565b60606000821415612d03576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e63565b600082905060005b60008214612d35578080612d1e90614a28565b915050600a82612d2e9190614850565b9150612d0b565b60008167ffffffffffffffff811115612d77577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612da95781602001600182028036833780820191505090505b5090505b60008514612e5c57600182612dc291906148db565b9150600a85612dd19190614a71565b6030612ddd91906147fa565b60f81b818381518110612e19577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e559190614850565b9450612dad565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612edd8383836131d8565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f2057612f1b816131dd565b612f5f565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612f5e57612f5d8382613226565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fa257612f9d81613393565b612fe1565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612fe057612fdf82826134d6565b5b5b505050565b612ff08383613555565b612ffd6000848484613041565b61303c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613033906143a4565b60405180910390fd5b505050565b60006130628473ffffffffffffffffffffffffffffffffffffffff16613723565b156131cb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261308b6126ee565b8786866040518563ffffffff1660e01b81526004016130ad9493929190614299565b602060405180830381600087803b1580156130c757600080fd5b505af19250505080156130f857506040513d601f19601f820116820180604052508101906130f59190613ce4565b60015b61317b573d8060008114613128576040519150601f19603f3d011682016040523d82523d6000602084013e61312d565b606091505b50600081511415613173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316a906143a4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506131d0565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613233846111c8565b61323d91906148db565b9050600060076000848152602001908152602001600020549050818114613322576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506133a791906148db565b90506000600960008481526020019081526020016000205490506000600883815481106133fd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613445577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806134ba577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006134e1836111c8565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135bc90614504565b60405180910390fd5b6135ce81612682565b1561360e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613605906143e4565b60405180910390fd5b61361a60008383612ed2565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461366a91906147fa565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613742906149c5565b90600052602060002090601f01602090048101928261376457600085556137ab565b82601f1061377d57805160ff19168380011785556137ab565b828001600101855582156137ab579182015b828111156137aa57825182559160200191906001019061378f565b5b5090506137b891906137bc565b5090565b5b808211156137d55760008160009055506001016137bd565b5090565b60006137ec6137e7846146c4565b61469f565b9050808382526020820190508285602086028201111561380b57600080fd5b60005b8581101561383b5781613821888261392d565b84526020840193506020830192505060018101905061380e565b5050509392505050565b6000613858613853846146f0565b61469f565b9050808382526020820190508285602086028201111561387757600080fd5b60005b858110156138a7578161388d8882613a29565b84526020840193506020830192505060018101905061387a565b5050509392505050565b60006138c46138bf8461471c565b61469f565b9050828152602081018484840111156138dc57600080fd5b6138e7848285614983565b509392505050565b60006139026138fd8461474d565b61469f565b90508281526020810184848401111561391a57600080fd5b613925848285614983565b509392505050565b60008135905061393c8161521f565b92915050565b600082601f83011261395357600080fd5b81356139638482602086016137d9565b91505092915050565b600082601f83011261397d57600080fd5b813561398d848260208601613845565b91505092915050565b6000813590506139a581615236565b92915050565b6000813590506139ba8161524d565b92915050565b6000815190506139cf8161524d565b92915050565b600082601f8301126139e657600080fd5b81356139f68482602086016138b1565b91505092915050565b600082601f830112613a1057600080fd5b8135613a208482602086016138ef565b91505092915050565b600081359050613a3881615264565b92915050565b600060208284031215613a5057600080fd5b6000613a5e8482850161392d565b91505092915050565b60008060408385031215613a7a57600080fd5b6000613a888582860161392d565b9250506020613a998582860161392d565b9150509250929050565b600080600060608486031215613ab857600080fd5b6000613ac68682870161392d565b9350506020613ad78682870161392d565b9250506040613ae886828701613a29565b9150509250925092565b60008060008060808587031215613b0857600080fd5b6000613b168782880161392d565b9450506020613b278782880161392d565b9350506040613b3887828801613a29565b925050606085013567ffffffffffffffff811115613b5557600080fd5b613b61878288016139d5565b91505092959194509250565b60008060408385031215613b8057600080fd5b6000613b8e8582860161392d565b9250506020613b9f85828601613996565b9150509250929050565b60008060408385031215613bbc57600080fd5b6000613bca8582860161392d565b9250506020613bdb85828601613a29565b9150509250929050565b600060208284031215613bf757600080fd5b600082013567ffffffffffffffff811115613c1157600080fd5b613c1d84828501613942565b91505092915050565b60008060408385031215613c3957600080fd5b600083013567ffffffffffffffff811115613c5357600080fd5b613c5f85828601613942565b925050602083013567ffffffffffffffff811115613c7c57600080fd5b613c888582860161396c565b9150509250929050565b600060208284031215613ca457600080fd5b6000613cb284828501613996565b91505092915050565b600060208284031215613ccd57600080fd5b6000613cdb848285016139ab565b91505092915050565b600060208284031215613cf657600080fd5b6000613d04848285016139c0565b91505092915050565b600060208284031215613d1f57600080fd5b600082013567ffffffffffffffff811115613d3957600080fd5b613d45848285016139ff565b91505092915050565b600060208284031215613d6057600080fd5b6000613d6e84828501613a29565b91505092915050565b6000613d83838361423c565b60208301905092915050565b613d988161490f565b82525050565b6000613da98261478e565b613db381856147bc565b9350613dbe8361477e565b8060005b83811015613def578151613dd68882613d77565b9750613de1836147af565b925050600181019050613dc2565b5085935050505092915050565b613e0581614921565b82525050565b6000613e1682614799565b613e2081856147cd565b9350613e30818560208601614992565b613e3981614b5e565b840191505092915050565b6000613e4f826147a4565b613e5981856147de565b9350613e69818560208601614992565b613e7281614b5e565b840191505092915050565b6000613e88826147a4565b613e9281856147ef565b9350613ea2818560208601614992565b80840191505092915050565b6000613ebb601d836147de565b9150613ec682614b6f565b602082019050919050565b6000613ede602d836147de565b9150613ee982614b98565b604082019050919050565b6000613f01602b836147de565b9150613f0c82614be7565b604082019050919050565b6000613f246032836147de565b9150613f2f82614c36565b604082019050919050565b6000613f476026836147de565b9150613f5282614c85565b604082019050919050565b6000613f6a601c836147de565b9150613f7582614cd4565b602082019050919050565b6000613f8d601f836147de565b9150613f9882614cfd565b602082019050919050565b6000613fb06024836147de565b9150613fbb82614d26565b604082019050919050565b6000613fd36019836147de565b9150613fde82614d75565b602082019050919050565b6000613ff6602c836147de565b915061400182614d9e565b604082019050919050565b60006140196023836147de565b915061402482614ded565b604082019050919050565b600061403c6038836147de565b915061404782614e3c565b604082019050919050565b600061405f602a836147de565b915061406a82614e8b565b604082019050919050565b60006140826029836147de565b915061408d82614eda565b604082019050919050565b60006140a56020836147de565b91506140b082614f29565b602082019050919050565b60006140c86022836147de565b91506140d382614f52565b604082019050919050565b60006140eb602c836147de565b91506140f682614fa1565b604082019050919050565b600061410e6014836147de565b915061411982614ff0565b602082019050919050565b60006141316020836147de565b915061413c82615019565b602082019050919050565b60006141546029836147de565b915061415f82615042565b604082019050919050565b6000614177602f836147de565b915061418282615091565b604082019050919050565b600061419a6011836147de565b91506141a5826150e0565b602082019050919050565b60006141bd6021836147de565b91506141c882615109565b604082019050919050565b60006141e06031836147de565b91506141eb82615158565b604082019050919050565b6000614203602c836147de565b915061420e826151a7565b604082019050919050565b60006142266018836147de565b9150614231826151f6565b602082019050919050565b61424581614979565b82525050565b61425481614979565b82525050565b60006142668285613e7d565b91506142728284613e7d565b91508190509392505050565b60006020820190506142936000830184613d8f565b92915050565b60006080820190506142ae6000830187613d8f565b6142bb6020830186613d8f565b6142c8604083018561424b565b81810360608301526142da8184613e0b565b905095945050505050565b600060208201905081810360008301526142ff8184613d9e565b905092915050565b600060208201905061431c6000830184613dfc565b92915050565b6000602082019050818103600083015261433c8184613e44565b905092915050565b6000602082019050818103600083015261435d81613eae565b9050919050565b6000602082019050818103600083015261437d81613ed1565b9050919050565b6000602082019050818103600083015261439d81613ef4565b9050919050565b600060208201905081810360008301526143bd81613f17565b9050919050565b600060208201905081810360008301526143dd81613f3a565b9050919050565b600060208201905081810360008301526143fd81613f5d565b9050919050565b6000602082019050818103600083015261441d81613f80565b9050919050565b6000602082019050818103600083015261443d81613fa3565b9050919050565b6000602082019050818103600083015261445d81613fc6565b9050919050565b6000602082019050818103600083015261447d81613fe9565b9050919050565b6000602082019050818103600083015261449d8161400c565b9050919050565b600060208201905081810360008301526144bd8161402f565b9050919050565b600060208201905081810360008301526144dd81614052565b9050919050565b600060208201905081810360008301526144fd81614075565b9050919050565b6000602082019050818103600083015261451d81614098565b9050919050565b6000602082019050818103600083015261453d816140bb565b9050919050565b6000602082019050818103600083015261455d816140de565b9050919050565b6000602082019050818103600083015261457d81614101565b9050919050565b6000602082019050818103600083015261459d81614124565b9050919050565b600060208201905081810360008301526145bd81614147565b9050919050565b600060208201905081810360008301526145dd8161416a565b9050919050565b600060208201905081810360008301526145fd8161418d565b9050919050565b6000602082019050818103600083015261461d816141b0565b9050919050565b6000602082019050818103600083015261463d816141d3565b9050919050565b6000602082019050818103600083015261465d816141f6565b9050919050565b6000602082019050818103600083015261467d81614219565b9050919050565b6000602082019050614699600083018461424b565b92915050565b60006146a96146ba565b90506146b582826149f7565b919050565b6000604051905090565b600067ffffffffffffffff8211156146df576146de614b2f565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561470b5761470a614b2f565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561473757614736614b2f565b5b61474082614b5e565b9050602081019050919050565b600067ffffffffffffffff82111561476857614767614b2f565b5b61477182614b5e565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061480582614979565b915061481083614979565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561484557614844614aa2565b5b828201905092915050565b600061485b82614979565b915061486683614979565b92508261487657614875614ad1565b5b828204905092915050565b600061488c82614979565b915061489783614979565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156148d0576148cf614aa2565b5b828202905092915050565b60006148e682614979565b91506148f183614979565b92508282101561490457614903614aa2565b5b828203905092915050565b600061491a82614959565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156149b0578082015181840152602081019050614995565b838111156149bf576000848401525b50505050565b600060028204905060018216806149dd57607f821691505b602082108114156149f1576149f0614b00565b5b50919050565b614a0082614b5e565b810181811067ffffffffffffffff82111715614a1f57614a1e614b2f565b5b80604052505050565b6000614a3382614979565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614a6657614a65614aa2565b5b600182019050919050565b6000614a7c82614979565b9150614a8783614979565b925082614a9757614a96614ad1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f43616e2774206d696e74206d6f7265207468616e207265736572766564000000600082015250565b7f43616e206f6e6c79206d696e74206265747765656e203120616e64203130207460008201527f6f6b656e73206174206f6e636500000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f43616e2774206d696e74206d6f7265207468616e206d617820737570706c7900600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e6f20746f6b656e7320726573657276656420666f7220796f7572206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f43616e27742072657365727665206d6f7265207468616e2073657420616d6f7560008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f50726573616c652069736e277420616374697665000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f53616c652069736e277420616374697665000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f57726f6e6720616d6f756e74206f66204554482073656e740000000000000000600082015250565b6152288161490f565b811461523357600080fd5b50565b61523f81614921565b811461524a57600080fd5b50565b6152568161492d565b811461526157600080fd5b50565b61526d81614979565b811461527857600080fd5b5056fea26469706673582212202249cae3bd57feb566f32b8254719767874314cbfff9d6ff5502124529e8bcc864736f6c634300080400330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003568747470733a2f2f66616e6767616e672e73332e75732d656173742d322e616d617a6f6e6177732e636f6d2f6d657461646174612f0000000000000000000000

Deployed Bytecode

0x6080604052600436106102465760003560e01c8063841718a611610139578063b88d4fde116100b6578063e985e9c51161007a578063e985e9c514610893578063f2fde38b146108d0578063f74ea418146108f9578063f759867a14610924578063fd2b049214610940578063fe60d12c1461095c57610246565b8063b88d4fde146107bd578063b9571721146107e6578063c634d0321461080f578063c87b56dd1461082b578063d547cfb71461086857610246565b806395d89b41116100fd57806395d89b41146106ea578063969e9d0c146107155780639a5d140b14610740578063a035b1fe14610769578063a22cb4651461079457610246565b8063841718a6146106055780638462151c1461062e5780638da5cb5b1461066b57806391b7f5ed146106965780639426eef8146106bf57610246565b806342842e0e116101c75780636352211e1161018b5780636352211e1461052057806368428a1b1461055d5780636b2fd8651461058857806370a08231146105b1578063715018a6146105ee57610246565b806342842e0e1461043b5780634f6ccce71461046457806353135ca0146104a157806355f804b3146104cc578063615db6e1146104f557610246565b806318160ddd1161020e57806318160ddd1461034457806323b872dd1461036f5780632f745c591461039857806339c36fa0146103d55780633f8121a21461041257610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f0578063119552a114610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613cbb565b610987565b60405161027f9190614307565b60405180910390f35b34801561029457600080fd5b5061029d610a01565b6040516102aa9190614322565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613d4e565b610a93565b6040516102e7919061427e565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613ba9565b610b18565b005b34801561032557600080fd5b5061032e610c30565b60405161033b919061427e565b60405180910390f35b34801561035057600080fd5b50610359610c56565b6040516103669190614684565b60405180910390f35b34801561037b57600080fd5b5061039660048036038101906103919190613aa3565b610c63565b005b3480156103a457600080fd5b506103bf60048036038101906103ba9190613ba9565b610cc3565b6040516103cc9190614684565b60405180910390f35b3480156103e157600080fd5b506103fc60048036038101906103f79190613a3e565b610d68565b6040516104099190614684565b60405180910390f35b34801561041e57600080fd5b5061043960048036038101906104349190613c92565b610d80565b005b34801561044757600080fd5b50610462600480360381019061045d9190613aa3565b610e19565b005b34801561047057600080fd5b5061048b60048036038101906104869190613d4e565b610e39565b6040516104989190614684565b60405180910390f35b3480156104ad57600080fd5b506104b6610ed0565b6040516104c39190614307565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee9190613d0d565b610ee3565b005b34801561050157600080fd5b5061050a610f79565b604051610517919061427e565b60405180910390f35b34801561052c57600080fd5b5061054760048036038101906105429190613d4e565b610f9f565b604051610554919061427e565b60405180910390f35b34801561056957600080fd5b50610572611051565b60405161057f9190614307565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190613c26565b611064565b005b3480156105bd57600080fd5b506105d860048036038101906105d39190613a3e565b6111c8565b6040516105e59190614684565b60405180910390f35b3480156105fa57600080fd5b50610603611280565b005b34801561061157600080fd5b5061062c60048036038101906106279190613c92565b611308565b005b34801561063a57600080fd5b5061065560048036038101906106509190613a3e565b6113a1565b60405161066291906142e5565b60405180910390f35b34801561067757600080fd5b5061068061149b565b60405161068d919061427e565b60405180910390f35b3480156106a257600080fd5b506106bd60048036038101906106b89190613d4e565b6114c5565b005b3480156106cb57600080fd5b506106d461154b565b6040516106e1919061427e565b60405180910390f35b3480156106f657600080fd5b506106ff611571565b60405161070c9190614322565b60405180910390f35b34801561072157600080fd5b5061072a611603565b604051610737919061427e565b60405180910390f35b34801561074c57600080fd5b5061076760048036038101906107629190613d4e565b611629565b005b34801561077557600080fd5b5061077e611747565b60405161078b9190614684565b60405180910390f35b3480156107a057600080fd5b506107bb60048036038101906107b69190613b6d565b61174d565b005b3480156107c957600080fd5b506107e460048036038101906107df9190613af2565b6118ce565b005b3480156107f257600080fd5b5061080d60048036038101906108089190613be5565b611930565b005b61082960048036038101906108249190613d4e565b611c39565b005b34801561083757600080fd5b50610852600480360381019061084d9190613d4e565b611dba565b60405161085f9190614322565b60405180910390f35b34801561087457600080fd5b5061087d611e61565b60405161088a9190614322565b60405180910390f35b34801561089f57600080fd5b506108ba60048036038101906108b59190613a67565b611eef565b6040516108c79190614307565b60405180910390f35b3480156108dc57600080fd5b506108f760048036038101906108f29190613a3e565b611f83565b005b34801561090557600080fd5b5061090e61207b565b60405161091b919061427e565b60405180910390f35b61093e60048036038101906109399190613d4e565b6120a1565b005b61095a60048036038101906109559190613d4e565b6122ed565b005b34801561096857600080fd5b5061097161259a565b60405161097e9190614684565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109fa57506109f9826125a0565b5b9050919050565b606060008054610a10906149c5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3c906149c5565b8015610a895780601f10610a5e57610100808354040283529160200191610a89565b820191906000526020600020905b815481529060010190602001808311610a6c57829003601f168201915b5050505050905090565b6000610a9e82612682565b610add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad490614544565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b2382610f9f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8b90614604565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bb36126ee565b73ffffffffffffffffffffffffffffffffffffffff161480610be25750610be181610bdc6126ee565b611eef565b5b610c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c18906144a4565b60405180910390fd5b610c2b83836126f6565b505050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600880549050905090565b610c74610c6e6126ee565b826127af565b610cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caa90614624565b60405180910390fd5b610cbe83838361288d565b505050565b6000610cce836111c8565b8210610d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0690614384565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60136020528060005260406000206000915090505481565b610d886126ee565b73ffffffffffffffffffffffffffffffffffffffff16610da661149b565b73ffffffffffffffffffffffffffffffffffffffff1614610dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df390614584565b60405180910390fd5b80600a60156101000a81548160ff02191690831515021790555050565b610e34838383604051806020016040528060008152506118ce565b505050565b6000610e43610c56565b8210610e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7b90614644565b60405180910390fd5b60088281548110610ebe577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b600a60159054906101000a900460ff1681565b610eeb6126ee565b73ffffffffffffffffffffffffffffffffffffffff16610f0961149b565b73ffffffffffffffffffffffffffffffffffffffff1614610f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5690614584565b60405180910390fd5b80600d9080519060200190610f75929190613736565b5050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103f906144e4565b60405180910390fd5b80915050919050565b600a60149054906101000a900460ff1681565b61106c6126ee565b73ffffffffffffffffffffffffffffffffffffffff1661108a61149b565b73ffffffffffffffffffffffffffffffffffffffff16146110e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d790614584565b60405180910390fd5b60005b82518110156111c357818181518110611125577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516013600085848151811061116a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806111bb90614a28565b9150506110e3565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611239576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611230906144c4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112886126ee565b73ffffffffffffffffffffffffffffffffffffffff166112a661149b565b73ffffffffffffffffffffffffffffffffffffffff16146112fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f390614584565b60405180910390fd5b6113066000612ae9565b565b6113106126ee565b73ffffffffffffffffffffffffffffffffffffffff1661132e61149b565b73ffffffffffffffffffffffffffffffffffffffff1614611384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137b90614584565b60405180910390fd5b80600a60146101000a81548160ff02191690831515021790555050565b606060006113ae836111c8565b905060008167ffffffffffffffff8111156113f2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156114205781602001602082028036833780820191505090505b50905060005b82811015611490576114388582610cc3565b828281518110611471577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061148890614a28565b915050611426565b508092505050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114cd6126ee565b73ffffffffffffffffffffffffffffffffffffffff166114eb61149b565b73ffffffffffffffffffffffffffffffffffffffff1614611541576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153890614584565b60405180910390fd5b80600c8190555050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060018054611580906149c5565b80601f01602080910402602001604051908101604052809291908181526020018280546115ac906149c5565b80156115f95780601f106115ce576101008083540402835291602001916115f9565b820191906000526020600020905b8154815290600101906020018083116115dc57829003601f168201915b5050505050905090565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6116316126ee565b73ffffffffffffffffffffffffffffffffffffffff1661164f61149b565b73ffffffffffffffffffffffffffffffffffffffff16146116a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169c90614584565b60405180910390fd5b600b548111156116ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e190614524565b60405180910390fd5b80600b60008282546116fc91906148db565b92505081905550600061170d610c56565b905060005b828110156117425761172f33828461172a91906147fa565b612baf565b808061173a90614a28565b915050611712565b505050565b600c5481565b6117556126ee565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ba90614444565b60405180910390fd5b80600560006117d06126ee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661187d6126ee565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118c29190614307565b60405180910390a35050565b6118df6118d96126ee565b836127af565b61191e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191590614624565b60405180910390fd5b61192a84848484612bcd565b50505050565b6119386126ee565b73ffffffffffffffffffffffffffffffffffffffff1661195661149b565b73ffffffffffffffffffffffffffffffffffffffff16146119ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a390614584565b60405180910390fd5b806000815181106119e6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600181518110611a68577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600281518110611aea577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600381518110611b6c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600481518110611bee577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611c43610c56565b9050600a60149054906101000a900460ff16611c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8b906145e4565b60405180910390fd5b600082118015611ca45750600b82105b611ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cda90614364565b60405180910390fd5b6122b88282611cf291906147fa565b1115611d33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2a90614404565b60405180910390fd5b81600c54611d419190614881565b3414611d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7990614664565b60405180910390fd5b60005b82811015611db557611da2338284611d9d91906147fa565b612baf565b8080611dad90614a28565b915050611d85565b505050565b6060611dc582612682565b611e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfb906145c4565b60405180910390fd5b6000611e0e612c29565b90506000815111611e2e5760405180602001604052806000815250611e59565b80611e3884612cbb565b604051602001611e4992919061425a565b6040516020818303038152906040525b915050919050565b600d8054611e6e906149c5565b80601f0160208091040260200160405190810160405280929190818152602001828054611e9a906149c5565b8015611ee75780601f10611ebc57610100808354040283529160200191611ee7565b820191906000526020600020905b815481529060010190602001808311611eca57829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f8b6126ee565b73ffffffffffffffffffffffffffffffffffffffff16611fa961149b565b73ffffffffffffffffffffffffffffffffffffffff1614611fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff690614584565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561206f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612066906143c4565b60405180910390fd5b61207881612ae9565b50565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006120ab610c56565b90506000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600a60159054906101000a900460ff16612140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213790614564565b60405180910390fd5b60008111612183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217a90614484565b60405180910390fd5b808311156121c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bd90614344565b60405180910390fd5b6122b883836121d591906147fa565b1115612216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220d90614404565b60405180910390fd5b82600c546122249190614881565b3414612265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225c90614664565b60405180910390fd5b828161227191906148db565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b838110156122e7576122d43382856122cf91906147fa565b612baf565b80806122df90614a28565b9150506122b7565b50505050565b6122f56126ee565b73ffffffffffffffffffffffffffffffffffffffff1661231361149b565b73ffffffffffffffffffffffffffffffffffffffff1614612369576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236090614584565b60405180910390fd5b60006064826123789190614850565b9050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6015836123c39190614881565b9081150290604051600060405180830381858888f193505050506123e657600080fd5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60158361242f9190614881565b9081150290604051600060405180830381858888f1935050505061245257600080fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60158361249b9190614881565b9081150290604051600060405180830381858888f193505050506124be57600080fd5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6015836125079190614881565b9081150290604051600060405180830381858888f1935050505061252a57600080fd5b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6010836125739190614881565b9081150290604051600060405180830381858888f1935050505061259657600080fd5b5050565b600b5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061266b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061267b575061267a82612e68565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661276983610f9f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006127ba82612682565b6127f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f090614464565b60405180910390fd5b600061280483610f9f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061287357508373ffffffffffffffffffffffffffffffffffffffff1661285b84610a93565b73ffffffffffffffffffffffffffffffffffffffff16145b8061288457506128838185611eef565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166128ad82610f9f565b73ffffffffffffffffffffffffffffffffffffffff1614612903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fa906145a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296a90614424565b60405180910390fd5b61297e838383612ed2565b6129896000826126f6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129d991906148db565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a3091906147fa565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612bc9828260405180602001604052806000815250612fe6565b5050565b612bd884848461288d565b612be484848484613041565b612c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1a906143a4565b60405180910390fd5b50505050565b6060600d8054612c38906149c5565b80601f0160208091040260200160405190810160405280929190818152602001828054612c64906149c5565b8015612cb15780601f10612c8657610100808354040283529160200191612cb1565b820191906000526020600020905b815481529060010190602001808311612c9457829003601f168201915b5050505050905090565b60606000821415612d03576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e63565b600082905060005b60008214612d35578080612d1e90614a28565b915050600a82612d2e9190614850565b9150612d0b565b60008167ffffffffffffffff811115612d77577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612da95781602001600182028036833780820191505090505b5090505b60008514612e5c57600182612dc291906148db565b9150600a85612dd19190614a71565b6030612ddd91906147fa565b60f81b818381518110612e19577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e559190614850565b9450612dad565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612edd8383836131d8565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f2057612f1b816131dd565b612f5f565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612f5e57612f5d8382613226565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fa257612f9d81613393565b612fe1565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612fe057612fdf82826134d6565b5b5b505050565b612ff08383613555565b612ffd6000848484613041565b61303c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613033906143a4565b60405180910390fd5b505050565b60006130628473ffffffffffffffffffffffffffffffffffffffff16613723565b156131cb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261308b6126ee565b8786866040518563ffffffff1660e01b81526004016130ad9493929190614299565b602060405180830381600087803b1580156130c757600080fd5b505af19250505080156130f857506040513d601f19601f820116820180604052508101906130f59190613ce4565b60015b61317b573d8060008114613128576040519150601f19603f3d011682016040523d82523d6000602084013e61312d565b606091505b50600081511415613173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316a906143a4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506131d0565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613233846111c8565b61323d91906148db565b9050600060076000848152602001908152602001600020549050818114613322576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506133a791906148db565b90506000600960008481526020019081526020016000205490506000600883815481106133fd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613445577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806134ba577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006134e1836111c8565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135bc90614504565b60405180910390fd5b6135ce81612682565b1561360e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613605906143e4565b60405180910390fd5b61361a60008383612ed2565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461366a91906147fa565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613742906149c5565b90600052602060002090601f01602090048101928261376457600085556137ab565b82601f1061377d57805160ff19168380011785556137ab565b828001600101855582156137ab579182015b828111156137aa57825182559160200191906001019061378f565b5b5090506137b891906137bc565b5090565b5b808211156137d55760008160009055506001016137bd565b5090565b60006137ec6137e7846146c4565b61469f565b9050808382526020820190508285602086028201111561380b57600080fd5b60005b8581101561383b5781613821888261392d565b84526020840193506020830192505060018101905061380e565b5050509392505050565b6000613858613853846146f0565b61469f565b9050808382526020820190508285602086028201111561387757600080fd5b60005b858110156138a7578161388d8882613a29565b84526020840193506020830192505060018101905061387a565b5050509392505050565b60006138c46138bf8461471c565b61469f565b9050828152602081018484840111156138dc57600080fd5b6138e7848285614983565b509392505050565b60006139026138fd8461474d565b61469f565b90508281526020810184848401111561391a57600080fd5b613925848285614983565b509392505050565b60008135905061393c8161521f565b92915050565b600082601f83011261395357600080fd5b81356139638482602086016137d9565b91505092915050565b600082601f83011261397d57600080fd5b813561398d848260208601613845565b91505092915050565b6000813590506139a581615236565b92915050565b6000813590506139ba8161524d565b92915050565b6000815190506139cf8161524d565b92915050565b600082601f8301126139e657600080fd5b81356139f68482602086016138b1565b91505092915050565b600082601f830112613a1057600080fd5b8135613a208482602086016138ef565b91505092915050565b600081359050613a3881615264565b92915050565b600060208284031215613a5057600080fd5b6000613a5e8482850161392d565b91505092915050565b60008060408385031215613a7a57600080fd5b6000613a888582860161392d565b9250506020613a998582860161392d565b9150509250929050565b600080600060608486031215613ab857600080fd5b6000613ac68682870161392d565b9350506020613ad78682870161392d565b9250506040613ae886828701613a29565b9150509250925092565b60008060008060808587031215613b0857600080fd5b6000613b168782880161392d565b9450506020613b278782880161392d565b9350506040613b3887828801613a29565b925050606085013567ffffffffffffffff811115613b5557600080fd5b613b61878288016139d5565b91505092959194509250565b60008060408385031215613b8057600080fd5b6000613b8e8582860161392d565b9250506020613b9f85828601613996565b9150509250929050565b60008060408385031215613bbc57600080fd5b6000613bca8582860161392d565b9250506020613bdb85828601613a29565b9150509250929050565b600060208284031215613bf757600080fd5b600082013567ffffffffffffffff811115613c1157600080fd5b613c1d84828501613942565b91505092915050565b60008060408385031215613c3957600080fd5b600083013567ffffffffffffffff811115613c5357600080fd5b613c5f85828601613942565b925050602083013567ffffffffffffffff811115613c7c57600080fd5b613c888582860161396c565b9150509250929050565b600060208284031215613ca457600080fd5b6000613cb284828501613996565b91505092915050565b600060208284031215613ccd57600080fd5b6000613cdb848285016139ab565b91505092915050565b600060208284031215613cf657600080fd5b6000613d04848285016139c0565b91505092915050565b600060208284031215613d1f57600080fd5b600082013567ffffffffffffffff811115613d3957600080fd5b613d45848285016139ff565b91505092915050565b600060208284031215613d6057600080fd5b6000613d6e84828501613a29565b91505092915050565b6000613d83838361423c565b60208301905092915050565b613d988161490f565b82525050565b6000613da98261478e565b613db381856147bc565b9350613dbe8361477e565b8060005b83811015613def578151613dd68882613d77565b9750613de1836147af565b925050600181019050613dc2565b5085935050505092915050565b613e0581614921565b82525050565b6000613e1682614799565b613e2081856147cd565b9350613e30818560208601614992565b613e3981614b5e565b840191505092915050565b6000613e4f826147a4565b613e5981856147de565b9350613e69818560208601614992565b613e7281614b5e565b840191505092915050565b6000613e88826147a4565b613e9281856147ef565b9350613ea2818560208601614992565b80840191505092915050565b6000613ebb601d836147de565b9150613ec682614b6f565b602082019050919050565b6000613ede602d836147de565b9150613ee982614b98565b604082019050919050565b6000613f01602b836147de565b9150613f0c82614be7565b604082019050919050565b6000613f246032836147de565b9150613f2f82614c36565b604082019050919050565b6000613f476026836147de565b9150613f5282614c85565b604082019050919050565b6000613f6a601c836147de565b9150613f7582614cd4565b602082019050919050565b6000613f8d601f836147de565b9150613f9882614cfd565b602082019050919050565b6000613fb06024836147de565b9150613fbb82614d26565b604082019050919050565b6000613fd36019836147de565b9150613fde82614d75565b602082019050919050565b6000613ff6602c836147de565b915061400182614d9e565b604082019050919050565b60006140196023836147de565b915061402482614ded565b604082019050919050565b600061403c6038836147de565b915061404782614e3c565b604082019050919050565b600061405f602a836147de565b915061406a82614e8b565b604082019050919050565b60006140826029836147de565b915061408d82614eda565b604082019050919050565b60006140a56020836147de565b91506140b082614f29565b602082019050919050565b60006140c86022836147de565b91506140d382614f52565b604082019050919050565b60006140eb602c836147de565b91506140f682614fa1565b604082019050919050565b600061410e6014836147de565b915061411982614ff0565b602082019050919050565b60006141316020836147de565b915061413c82615019565b602082019050919050565b60006141546029836147de565b915061415f82615042565b604082019050919050565b6000614177602f836147de565b915061418282615091565b604082019050919050565b600061419a6011836147de565b91506141a5826150e0565b602082019050919050565b60006141bd6021836147de565b91506141c882615109565b604082019050919050565b60006141e06031836147de565b91506141eb82615158565b604082019050919050565b6000614203602c836147de565b915061420e826151a7565b604082019050919050565b60006142266018836147de565b9150614231826151f6565b602082019050919050565b61424581614979565b82525050565b61425481614979565b82525050565b60006142668285613e7d565b91506142728284613e7d565b91508190509392505050565b60006020820190506142936000830184613d8f565b92915050565b60006080820190506142ae6000830187613d8f565b6142bb6020830186613d8f565b6142c8604083018561424b565b81810360608301526142da8184613e0b565b905095945050505050565b600060208201905081810360008301526142ff8184613d9e565b905092915050565b600060208201905061431c6000830184613dfc565b92915050565b6000602082019050818103600083015261433c8184613e44565b905092915050565b6000602082019050818103600083015261435d81613eae565b9050919050565b6000602082019050818103600083015261437d81613ed1565b9050919050565b6000602082019050818103600083015261439d81613ef4565b9050919050565b600060208201905081810360008301526143bd81613f17565b9050919050565b600060208201905081810360008301526143dd81613f3a565b9050919050565b600060208201905081810360008301526143fd81613f5d565b9050919050565b6000602082019050818103600083015261441d81613f80565b9050919050565b6000602082019050818103600083015261443d81613fa3565b9050919050565b6000602082019050818103600083015261445d81613fc6565b9050919050565b6000602082019050818103600083015261447d81613fe9565b9050919050565b6000602082019050818103600083015261449d8161400c565b9050919050565b600060208201905081810360008301526144bd8161402f565b9050919050565b600060208201905081810360008301526144dd81614052565b9050919050565b600060208201905081810360008301526144fd81614075565b9050919050565b6000602082019050818103600083015261451d81614098565b9050919050565b6000602082019050818103600083015261453d816140bb565b9050919050565b6000602082019050818103600083015261455d816140de565b9050919050565b6000602082019050818103600083015261457d81614101565b9050919050565b6000602082019050818103600083015261459d81614124565b9050919050565b600060208201905081810360008301526145bd81614147565b9050919050565b600060208201905081810360008301526145dd8161416a565b9050919050565b600060208201905081810360008301526145fd8161418d565b9050919050565b6000602082019050818103600083015261461d816141b0565b9050919050565b6000602082019050818103600083015261463d816141d3565b9050919050565b6000602082019050818103600083015261465d816141f6565b9050919050565b6000602082019050818103600083015261467d81614219565b9050919050565b6000602082019050614699600083018461424b565b92915050565b60006146a96146ba565b90506146b582826149f7565b919050565b6000604051905090565b600067ffffffffffffffff8211156146df576146de614b2f565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561470b5761470a614b2f565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561473757614736614b2f565b5b61474082614b5e565b9050602081019050919050565b600067ffffffffffffffff82111561476857614767614b2f565b5b61477182614b5e565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061480582614979565b915061481083614979565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561484557614844614aa2565b5b828201905092915050565b600061485b82614979565b915061486683614979565b92508261487657614875614ad1565b5b828204905092915050565b600061488c82614979565b915061489783614979565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156148d0576148cf614aa2565b5b828202905092915050565b60006148e682614979565b91506148f183614979565b92508282101561490457614903614aa2565b5b828203905092915050565b600061491a82614959565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156149b0578082015181840152602081019050614995565b838111156149bf576000848401525b50505050565b600060028204905060018216806149dd57607f821691505b602082108114156149f1576149f0614b00565b5b50919050565b614a0082614b5e565b810181811067ffffffffffffffff82111715614a1f57614a1e614b2f565b5b80604052505050565b6000614a3382614979565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614a6657614a65614aa2565b5b600182019050919050565b6000614a7c82614979565b9150614a8783614979565b925082614a9757614a96614ad1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f43616e2774206d696e74206d6f7265207468616e207265736572766564000000600082015250565b7f43616e206f6e6c79206d696e74206265747765656e203120616e64203130207460008201527f6f6b656e73206174206f6e636500000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f43616e2774206d696e74206d6f7265207468616e206d617820737570706c7900600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e6f20746f6b656e7320726573657276656420666f7220796f7572206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f43616e27742072657365727665206d6f7265207468616e2073657420616d6f7560008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f50726573616c652069736e277420616374697665000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f53616c652069736e277420616374697665000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f57726f6e6720616d6f756e74206f66204554482073656e740000000000000000600082015250565b6152288161490f565b811461523357600080fd5b50565b61523f81614921565b811461524a57600080fd5b50565b6152568161492d565b811461526157600080fd5b50565b61526d81614979565b811461527857600080fd5b5056fea26469706673582212202249cae3bd57feb566f32b8254719767874314cbfff9d6ff5502124529e8bcc864736f6c63430008040033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003568747470733a2f2f66616e6767616e672e73332e75732d656173742d322e616d617a6f6e6177732e636f6d2f6d657461646174612f0000000000000000000000

-----Decoded View---------------
Arg [0] : newBaseURI (string): https://fanggang.s3.us-east-2.amazonaws.com/metadata/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [2] : 68747470733a2f2f66616e6767616e672e73332e75732d656173742d322e616d
Arg [3] : 617a6f6e6177732e636f6d2f6d657461646174612f0000000000000000000000


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.