ETH Price: $3,277.61 (+0.38%)
Gas: 16 Gwei

Token

Larva Cats (LCATS)
 

Overview

Max Total Supply

1,111 LCATS

Holders

140

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 LCATS
0x87ea267a77e762db84f2347958fbaa7b79a0d09e
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
LarvaCats

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : LarvaCats.sol
// SPDX-License-Identifier: UNLICENSED

/*

                                            
 __                       _____     _       
|  |   ___ ___ _ _ ___   |     |___| |_ ___ 
|  |__| .'|  _| | | .'|  |   --| .'|  _|_ -|
|_____|__,|_|  \_/|__,|  |_____|__,|_| |___|
                                            

*/

pragma solidity ^0.8.7;

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



contract LarvaCats is ERC721,Ownable {

    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdTracker;

    
    uint public maxInTx = 10;

    bool public saleEnabled;
    uint256 public price;
    string public metadataBaseURL;

    uint256 public constant FREE_SUPPLY = 1111;
    uint256 public constant PAID_SUPPLY = 3333;
    uint256 public constant MAX_SUPPLY = FREE_SUPPLY + PAID_SUPPLY;


    constructor () 
    ERC721("Larva Cats", "LCATS") {    
        saleEnabled = false;
        price = 0.015 ether;
    }

    function setBaseURI(string memory baseURL) public onlyOwner {
        metadataBaseURL = baseURL;
    }

    function setMaxInTx(uint num) public onlyOwner {
        maxInTx = num;
    }

    function toggleSaleStatus() public onlyOwner {
        saleEnabled = !(saleEnabled);
    }

    function setPrice(uint256 _price) public onlyOwner {
        price = _price;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return metadataBaseURL;
    }

    function withdraw() public onlyOwner {
        uint256 _balance = address(this).balance;
        address payable _sender = payable(_msgSender());
        _sender.transfer(_balance);
    }

    function mintToAddress(address to) private onlyOwner {
        uint256 currentSupply = _tokenIdTracker.current();
        require((currentSupply + 1) <= MAX_SUPPLY, "Exceed max supply");
        _safeMint(to, currentSupply + 1);
        _tokenIdTracker.increment();
    }

    function reserve(uint num) public onlyOwner {
        uint256 i;
        for (i=0; i<num; i++)
            mintToAddress(msg.sender);
            
    }

    function totalSupply() public view virtual returns (uint256) {
        return _tokenIdTracker.current();
    }

    function mint(uint256 numOfTokens) public payable {
        require(saleEnabled, "Sale must be active.");
        require(_tokenIdTracker.current() + numOfTokens <= MAX_SUPPLY, "Exceed max supply"); 
        require(numOfTokens <= maxInTx, "Can't claim more than 10.");
        require((price * numOfTokens) <= msg.value, "Insufficient funds to claim.");
        

        for(uint256 i=0; i< numOfTokens; i++) {
            _safeMint(msg.sender, _tokenIdTracker.current() + 1);
            _tokenIdTracker.increment();
        }
        

    }

    function freeMint(uint256 numOfTokens) public payable {
        require(saleEnabled, "Sale must be active.");
        require(_tokenIdTracker.current() + numOfTokens <= FREE_SUPPLY, "Exceed max supply"); 
        require(numOfTokens <= maxInTx, "Can't claim more than 10.");
        

        for(uint256 i=0; i< numOfTokens; i++) {
            _safeMint(msg.sender, _tokenIdTracker.current() + 1);
            _tokenIdTracker.increment();
        }
        

    }

}

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 of 12 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAID_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numOfTokens","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxInTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadataBaseURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURL","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"setMaxInTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600a6008553480156200001657600080fd5b506040518060400160405280600a81526020017f4c617276612043617473000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4c4341545300000000000000000000000000000000000000000000000000000081525081600090805190602001906200009b929190620001d4565b508060019080519060200190620000b4929190620001d4565b505050620000d7620000cb6200010660201b60201c565b6200010e60201b60201c565b6000600960006101000a81548160ff02191690831515021790555066354a6ba7a18000600a81905550620002e9565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001e29062000284565b90600052602060002090601f01602090048101928262000206576000855562000252565b82601f106200022157805160ff191683800117855562000252565b8280016001018555821562000252579182015b828111156200025157825182559160200191906001019062000234565b5b50905062000261919062000265565b5090565b5b808211156200028057600081600090555060010162000266565b5090565b600060028204905060018216806200029d57607f821691505b60208210811415620002b457620002b3620002ba565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613b9a80620002f96000396000f3fe6080604052600436106101e35760003560e01c806371b9b64611610102578063a0712d6811610095578063d16f412611610064578063d16f41261461068a578063e985e9c5146106b5578063f2fde38b146106f2578063fe878b1d1461071b576101e3565b8063a0712d68146105df578063a22cb465146105fb578063b88d4fde14610624578063c87b56dd1461064d576101e3565b806391b7f5ed116100d157806391b7f5ed1461053557806395d89b411461055e5780639858cf1914610589578063a035b1fe146105b4576101e3565b806371b9b6461461049a5780637c928fe9146104c5578063819b25ba146104e15780638da5cb5b1461050a576101e3565b806332cb6b0c1161017a5780635d5e5580116101495780635d5e5580146103e05780636352211e1461040957806370a0823114610446578063715018a614610483576101e3565b806332cb6b0c1461034c5780633ccfd60b1461037757806342842e0e1461038e57806355f804b3146103b7576101e3565b8063095ea7b3116101b6578063095ea7b3146102a457806310da2eb9146102cd57806318160ddd146102f857806323b872dd14610323576101e3565b806301ffc9a7146101e8578063049c5c491461022557806306fdde031461023c578063081812fc14610267575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a91906129cb565b610746565b60405161021c9190612eb2565b60405180910390f35b34801561023157600080fd5b5061023a610828565b005b34801561024857600080fd5b506102516108d0565b60405161025e9190612ecd565b60405180910390f35b34801561027357600080fd5b5061028e60048036038101906102899190612a6e565b610962565b60405161029b9190612e4b565b60405180910390f35b3480156102b057600080fd5b506102cb60048036038101906102c6919061298b565b6109e7565b005b3480156102d957600080fd5b506102e2610aff565b6040516102ef9190612ecd565b60405180910390f35b34801561030457600080fd5b5061030d610b8d565b60405161031a919061316f565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190612875565b610b9e565b005b34801561035857600080fd5b50610361610bfe565b60405161036e919061316f565b60405180910390f35b34801561038357600080fd5b5061038c610c11565b005b34801561039a57600080fd5b506103b560048036038101906103b09190612875565b610ce9565b005b3480156103c357600080fd5b506103de60048036038101906103d99190612a25565b610d09565b005b3480156103ec57600080fd5b5061040760048036038101906104029190612a6e565b610d9f565b005b34801561041557600080fd5b50610430600480360381019061042b9190612a6e565b610e25565b60405161043d9190612e4b565b60405180910390f35b34801561045257600080fd5b5061046d60048036038101906104689190612808565b610ed7565b60405161047a919061316f565b60405180910390f35b34801561048f57600080fd5b50610498610f8f565b005b3480156104a657600080fd5b506104af611017565b6040516104bc9190612eb2565b60405180910390f35b6104df60048036038101906104da9190612a6e565b61102a565b005b3480156104ed57600080fd5b5061050860048036038101906105039190612a6e565b611162565b005b34801561051657600080fd5b5061051f611209565b60405161052c9190612e4b565b60405180910390f35b34801561054157600080fd5b5061055c60048036038101906105579190612a6e565b611233565b005b34801561056a57600080fd5b506105736112b9565b6040516105809190612ecd565b60405180910390f35b34801561059557600080fd5b5061059e61134b565b6040516105ab919061316f565b60405180910390f35b3480156105c057600080fd5b506105c9611351565b6040516105d6919061316f565b60405180910390f35b6105f960048036038101906105f49190612a6e565b611357565b005b34801561060757600080fd5b50610622600480360381019061061d919061294b565b6114ec565b005b34801561063057600080fd5b5061064b600480360381019061064691906128c8565b611502565b005b34801561065957600080fd5b50610674600480360381019061066f9190612a6e565b611564565b6040516106819190612ecd565b60405180910390f35b34801561069657600080fd5b5061069f61160b565b6040516106ac919061316f565b60405180910390f35b3480156106c157600080fd5b506106dc60048036038101906106d79190612835565b611611565b6040516106e99190612eb2565b60405180910390f35b3480156106fe57600080fd5b5061071960048036038101906107149190612808565b6116a5565b005b34801561072757600080fd5b5061073061179d565b60405161073d919061316f565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061081157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108215750610820826117a3565b5b9050919050565b61083061180d565b73ffffffffffffffffffffffffffffffffffffffff1661084e611209565b73ffffffffffffffffffffffffffffffffffffffff16146108a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089b9061308f565b60405180910390fd5b600960009054906101000a900460ff1615600960006101000a81548160ff021916908315150217905550565b6060600080546108df9061341f565b80601f016020809104026020016040519081016040528092919081815260200182805461090b9061341f565b80156109585780601f1061092d57610100808354040283529160200191610958565b820191906000526020600020905b81548152906001019060200180831161093b57829003601f168201915b5050505050905090565b600061096d82611815565b6109ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a39061306f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109f282610e25565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5a906130ef565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a8261180d565b73ffffffffffffffffffffffffffffffffffffffff161480610ab15750610ab081610aab61180d565b611611565b5b610af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae790612faf565b60405180910390fd5b610afa8383611881565b505050565b600b8054610b0c9061341f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b389061341f565b8015610b855780601f10610b5a57610100808354040283529160200191610b85565b820191906000526020600020905b815481529060010190602001808311610b6857829003601f168201915b505050505081565b6000610b99600761193a565b905090565b610baf610ba961180d565b82611948565b610bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be59061314f565b60405180910390fd5b610bf9838383611a26565b505050565b610d05610457610c0e9190613254565b81565b610c1961180d565b73ffffffffffffffffffffffffffffffffffffffff16610c37611209565b73ffffffffffffffffffffffffffffffffffffffff1614610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c849061308f565b60405180910390fd5b60004790506000610c9c61180d565b90508073ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015610ce4573d6000803e3d6000fd5b505050565b610d0483838360405180602001604052806000815250611502565b505050565b610d1161180d565b73ffffffffffffffffffffffffffffffffffffffff16610d2f611209565b73ffffffffffffffffffffffffffffffffffffffff1614610d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7c9061308f565b60405180910390fd5b80600b9080519060200190610d9b92919061261c565b5050565b610da761180d565b73ffffffffffffffffffffffffffffffffffffffff16610dc5611209565b73ffffffffffffffffffffffffffffffffffffffff1614610e1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e129061308f565b60405180910390fd5b8060088190555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ece576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec590612fef565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3f90612fcf565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f9761180d565b73ffffffffffffffffffffffffffffffffffffffff16610fb5611209565b73ffffffffffffffffffffffffffffffffffffffff161461100b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110029061308f565b60405180910390fd5b6110156000611c82565b565b600960009054906101000a900460ff1681565b600960009054906101000a900460ff16611079576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110709061310f565b60405180910390fd5b61045781611087600761193a565b6110919190613254565b11156110d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c99061304f565b60405180910390fd5b600854811115611117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110e9061300f565b60405180910390fd5b60005b8181101561115e57611141336001611132600761193a565b61113c9190613254565b611d48565b61114b6007611d66565b808061115690613482565b91505061111a565b5050565b61116a61180d565b73ffffffffffffffffffffffffffffffffffffffff16611188611209565b73ffffffffffffffffffffffffffffffffffffffff16146111de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d59061308f565b60405180910390fd5b60005b81811015611205576111f233611d7c565b80806111fd90613482565b9150506111e1565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61123b61180d565b73ffffffffffffffffffffffffffffffffffffffff16611259611209565b73ffffffffffffffffffffffffffffffffffffffff16146112af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a69061308f565b60405180910390fd5b80600a8190555050565b6060600180546112c89061341f565b80601f01602080910402602001604051908101604052809291908181526020018280546112f49061341f565b80156113415780601f1061131657610100808354040283529160200191611341565b820191906000526020600020905b81548152906001019060200180831161132457829003601f168201915b5050505050905090565b61045781565b600a5481565b600960009054906101000a900460ff166113a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139d9061310f565b60405180910390fd5b610d056104576113b69190613254565b816113c1600761193a565b6113cb9190613254565b111561140c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114039061304f565b60405180910390fd5b600854811115611451576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114489061300f565b60405180910390fd5b3481600a5461146091906132db565b11156114a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114989061312f565b60405180910390fd5b60005b818110156114e8576114cb3360016114bc600761193a565b6114c69190613254565b611d48565b6114d56007611d66565b80806114e090613482565b9150506114a4565b5050565b6114fe6114f761180d565b8383611e88565b5050565b61151361150d61180d565b83611948565b611552576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115499061314f565b60405180910390fd5b61155e84848484611ff5565b50505050565b606061156f82611815565b6115ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a5906130cf565b60405180910390fd5b60006115b8612051565b905060008151116115d85760405180602001604052806000815250611603565b806115e2846120e3565b6040516020016115f3929190612e27565b6040516020818303038152906040525b915050919050565b60085481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116ad61180d565b73ffffffffffffffffffffffffffffffffffffffff166116cb611209565b73ffffffffffffffffffffffffffffffffffffffff1614611721576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117189061308f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611791576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178890612f0f565b60405180910390fd5b61179a81611c82565b50565b610d0581565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166118f483610e25565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600061195382611815565b611992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198990612f8f565b60405180910390fd5b600061199d83610e25565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a0c57508373ffffffffffffffffffffffffffffffffffffffff166119f484610962565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a1d5750611a1c8185611611565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a4682610e25565b73ffffffffffffffffffffffffffffffffffffffff1614611a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a93906130af565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0390612f4f565b60405180910390fd5b611b17838383612244565b611b22600082611881565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b729190613335565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bc99190613254565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611d62828260405180602001604052806000815250612249565b5050565b6001816000016000828254019250508190555050565b611d8461180d565b73ffffffffffffffffffffffffffffffffffffffff16611da2611209565b73ffffffffffffffffffffffffffffffffffffffff1614611df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611def9061308f565b60405180910390fd5b6000611e04600761193a565b9050610d05610457611e169190613254565b600182611e239190613254565b1115611e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5b9061304f565b60405180910390fd5b611e7a82600183611e759190613254565b611d48565b611e846007611d66565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eee90612f6f565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fe89190612eb2565b60405180910390a3505050565b612000848484611a26565b61200c848484846122a4565b61204b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204290612eef565b60405180910390fd5b50505050565b6060600b80546120609061341f565b80601f016020809104026020016040519081016040528092919081815260200182805461208c9061341f565b80156120d95780601f106120ae576101008083540402835291602001916120d9565b820191906000526020600020905b8154815290600101906020018083116120bc57829003601f168201915b5050505050905090565b6060600082141561212b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061223f565b600082905060005b6000821461215d57808061214690613482565b915050600a8261215691906132aa565b9150612133565b60008167ffffffffffffffff811115612179576121786135b8565b5b6040519080825280601f01601f1916602001820160405280156121ab5781602001600182028036833780820191505090505b5090505b60008514612238576001826121c49190613335565b9150600a856121d391906134cb565b60306121df9190613254565b60f81b8183815181106121f5576121f4613589565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561223191906132aa565b94506121af565b8093505050505b919050565b505050565b612253838361243b565b61226060008484846122a4565b61229f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229690612eef565b60405180910390fd5b505050565b60006122c58473ffffffffffffffffffffffffffffffffffffffff16612609565b1561242e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122ee61180d565b8786866040518563ffffffff1660e01b81526004016123109493929190612e66565b602060405180830381600087803b15801561232a57600080fd5b505af192505050801561235b57506040513d601f19601f8201168201806040525081019061235891906129f8565b60015b6123de573d806000811461238b576040519150601f19603f3d011682016040523d82523d6000602084013e612390565b606091505b506000815114156123d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cd90612eef565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612433565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a29061302f565b60405180910390fd5b6124b481611815565b156124f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124eb90612f2f565b60405180910390fd5b61250060008383612244565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125509190613254565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546126289061341f565b90600052602060002090601f01602090048101928261264a5760008555612691565b82601f1061266357805160ff1916838001178555612691565b82800160010185558215612691579182015b82811115612690578251825591602001919060010190612675565b5b50905061269e91906126a2565b5090565b5b808211156126bb5760008160009055506001016126a3565b5090565b60006126d26126cd846131af565b61318a565b9050828152602081018484840111156126ee576126ed6135ec565b5b6126f98482856133dd565b509392505050565b600061271461270f846131e0565b61318a565b9050828152602081018484840111156127305761272f6135ec565b5b61273b8482856133dd565b509392505050565b60008135905061275281613b08565b92915050565b60008135905061276781613b1f565b92915050565b60008135905061277c81613b36565b92915050565b60008151905061279181613b36565b92915050565b600082601f8301126127ac576127ab6135e7565b5b81356127bc8482602086016126bf565b91505092915050565b600082601f8301126127da576127d96135e7565b5b81356127ea848260208601612701565b91505092915050565b60008135905061280281613b4d565b92915050565b60006020828403121561281e5761281d6135f6565b5b600061282c84828501612743565b91505092915050565b6000806040838503121561284c5761284b6135f6565b5b600061285a85828601612743565b925050602061286b85828601612743565b9150509250929050565b60008060006060848603121561288e5761288d6135f6565b5b600061289c86828701612743565b93505060206128ad86828701612743565b92505060406128be868287016127f3565b9150509250925092565b600080600080608085870312156128e2576128e16135f6565b5b60006128f087828801612743565b945050602061290187828801612743565b9350506040612912878288016127f3565b925050606085013567ffffffffffffffff811115612933576129326135f1565b5b61293f87828801612797565b91505092959194509250565b60008060408385031215612962576129616135f6565b5b600061297085828601612743565b925050602061298185828601612758565b9150509250929050565b600080604083850312156129a2576129a16135f6565b5b60006129b085828601612743565b92505060206129c1858286016127f3565b9150509250929050565b6000602082840312156129e1576129e06135f6565b5b60006129ef8482850161276d565b91505092915050565b600060208284031215612a0e57612a0d6135f6565b5b6000612a1c84828501612782565b91505092915050565b600060208284031215612a3b57612a3a6135f6565b5b600082013567ffffffffffffffff811115612a5957612a586135f1565b5b612a65848285016127c5565b91505092915050565b600060208284031215612a8457612a836135f6565b5b6000612a92848285016127f3565b91505092915050565b612aa481613369565b82525050565b612ab38161337b565b82525050565b6000612ac482613211565b612ace8185613227565b9350612ade8185602086016133ec565b612ae7816135fb565b840191505092915050565b6000612afd8261321c565b612b078185613238565b9350612b178185602086016133ec565b612b20816135fb565b840191505092915050565b6000612b368261321c565b612b408185613249565b9350612b508185602086016133ec565b80840191505092915050565b6000612b69603283613238565b9150612b748261360c565b604082019050919050565b6000612b8c602683613238565b9150612b978261365b565b604082019050919050565b6000612baf601c83613238565b9150612bba826136aa565b602082019050919050565b6000612bd2602483613238565b9150612bdd826136d3565b604082019050919050565b6000612bf5601983613238565b9150612c0082613722565b602082019050919050565b6000612c18602c83613238565b9150612c238261374b565b604082019050919050565b6000612c3b603883613238565b9150612c468261379a565b604082019050919050565b6000612c5e602a83613238565b9150612c69826137e9565b604082019050919050565b6000612c81602983613238565b9150612c8c82613838565b604082019050919050565b6000612ca4601983613238565b9150612caf82613887565b602082019050919050565b6000612cc7602083613238565b9150612cd2826138b0565b602082019050919050565b6000612cea601183613238565b9150612cf5826138d9565b602082019050919050565b6000612d0d602c83613238565b9150612d1882613902565b604082019050919050565b6000612d30602083613238565b9150612d3b82613951565b602082019050919050565b6000612d53602983613238565b9150612d5e8261397a565b604082019050919050565b6000612d76602f83613238565b9150612d81826139c9565b604082019050919050565b6000612d99602183613238565b9150612da482613a18565b604082019050919050565b6000612dbc601483613238565b9150612dc782613a67565b602082019050919050565b6000612ddf601c83613238565b9150612dea82613a90565b602082019050919050565b6000612e02603183613238565b9150612e0d82613ab9565b604082019050919050565b612e21816133d3565b82525050565b6000612e338285612b2b565b9150612e3f8284612b2b565b91508190509392505050565b6000602082019050612e606000830184612a9b565b92915050565b6000608082019050612e7b6000830187612a9b565b612e886020830186612a9b565b612e956040830185612e18565b8181036060830152612ea78184612ab9565b905095945050505050565b6000602082019050612ec76000830184612aaa565b92915050565b60006020820190508181036000830152612ee78184612af2565b905092915050565b60006020820190508181036000830152612f0881612b5c565b9050919050565b60006020820190508181036000830152612f2881612b7f565b9050919050565b60006020820190508181036000830152612f4881612ba2565b9050919050565b60006020820190508181036000830152612f6881612bc5565b9050919050565b60006020820190508181036000830152612f8881612be8565b9050919050565b60006020820190508181036000830152612fa881612c0b565b9050919050565b60006020820190508181036000830152612fc881612c2e565b9050919050565b60006020820190508181036000830152612fe881612c51565b9050919050565b6000602082019050818103600083015261300881612c74565b9050919050565b6000602082019050818103600083015261302881612c97565b9050919050565b6000602082019050818103600083015261304881612cba565b9050919050565b6000602082019050818103600083015261306881612cdd565b9050919050565b6000602082019050818103600083015261308881612d00565b9050919050565b600060208201905081810360008301526130a881612d23565b9050919050565b600060208201905081810360008301526130c881612d46565b9050919050565b600060208201905081810360008301526130e881612d69565b9050919050565b6000602082019050818103600083015261310881612d8c565b9050919050565b6000602082019050818103600083015261312881612daf565b9050919050565b6000602082019050818103600083015261314881612dd2565b9050919050565b6000602082019050818103600083015261316881612df5565b9050919050565b60006020820190506131846000830184612e18565b92915050565b60006131946131a5565b90506131a08282613451565b919050565b6000604051905090565b600067ffffffffffffffff8211156131ca576131c96135b8565b5b6131d3826135fb565b9050602081019050919050565b600067ffffffffffffffff8211156131fb576131fa6135b8565b5b613204826135fb565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061325f826133d3565b915061326a836133d3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561329f5761329e6134fc565b5b828201905092915050565b60006132b5826133d3565b91506132c0836133d3565b9250826132d0576132cf61352b565b5b828204905092915050565b60006132e6826133d3565b91506132f1836133d3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561332a576133296134fc565b5b828202905092915050565b6000613340826133d3565b915061334b836133d3565b92508282101561335e5761335d6134fc565b5b828203905092915050565b6000613374826133b3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561340a5780820151818401526020810190506133ef565b83811115613419576000848401525b50505050565b6000600282049050600182168061343757607f821691505b6020821081141561344b5761344a61355a565b5b50919050565b61345a826135fb565b810181811067ffffffffffffffff82111715613479576134786135b8565b5b80604052505050565b600061348d826133d3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134c0576134bf6134fc565b5b600182019050919050565b60006134d6826133d3565b91506134e1836133d3565b9250826134f1576134f061352b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f43616e277420636c61696d206d6f7265207468616e2031302e00000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f457863656564206d617820737570706c79000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206d757374206265206163746976652e000000000000000000000000600082015250565b7f496e73756666696369656e742066756e647320746f20636c61696d2e00000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b613b1181613369565b8114613b1c57600080fd5b50565b613b288161337b565b8114613b3357600080fd5b50565b613b3f81613387565b8114613b4a57600080fd5b50565b613b56816133d3565b8114613b6157600080fd5b5056fea26469706673582212207f2acf6382f87bad23e09df5a9f2afa225136d70f109febbfba56c61d24e52b164736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101e35760003560e01c806371b9b64611610102578063a0712d6811610095578063d16f412611610064578063d16f41261461068a578063e985e9c5146106b5578063f2fde38b146106f2578063fe878b1d1461071b576101e3565b8063a0712d68146105df578063a22cb465146105fb578063b88d4fde14610624578063c87b56dd1461064d576101e3565b806391b7f5ed116100d157806391b7f5ed1461053557806395d89b411461055e5780639858cf1914610589578063a035b1fe146105b4576101e3565b806371b9b6461461049a5780637c928fe9146104c5578063819b25ba146104e15780638da5cb5b1461050a576101e3565b806332cb6b0c1161017a5780635d5e5580116101495780635d5e5580146103e05780636352211e1461040957806370a0823114610446578063715018a614610483576101e3565b806332cb6b0c1461034c5780633ccfd60b1461037757806342842e0e1461038e57806355f804b3146103b7576101e3565b8063095ea7b3116101b6578063095ea7b3146102a457806310da2eb9146102cd57806318160ddd146102f857806323b872dd14610323576101e3565b806301ffc9a7146101e8578063049c5c491461022557806306fdde031461023c578063081812fc14610267575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a91906129cb565b610746565b60405161021c9190612eb2565b60405180910390f35b34801561023157600080fd5b5061023a610828565b005b34801561024857600080fd5b506102516108d0565b60405161025e9190612ecd565b60405180910390f35b34801561027357600080fd5b5061028e60048036038101906102899190612a6e565b610962565b60405161029b9190612e4b565b60405180910390f35b3480156102b057600080fd5b506102cb60048036038101906102c6919061298b565b6109e7565b005b3480156102d957600080fd5b506102e2610aff565b6040516102ef9190612ecd565b60405180910390f35b34801561030457600080fd5b5061030d610b8d565b60405161031a919061316f565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190612875565b610b9e565b005b34801561035857600080fd5b50610361610bfe565b60405161036e919061316f565b60405180910390f35b34801561038357600080fd5b5061038c610c11565b005b34801561039a57600080fd5b506103b560048036038101906103b09190612875565b610ce9565b005b3480156103c357600080fd5b506103de60048036038101906103d99190612a25565b610d09565b005b3480156103ec57600080fd5b5061040760048036038101906104029190612a6e565b610d9f565b005b34801561041557600080fd5b50610430600480360381019061042b9190612a6e565b610e25565b60405161043d9190612e4b565b60405180910390f35b34801561045257600080fd5b5061046d60048036038101906104689190612808565b610ed7565b60405161047a919061316f565b60405180910390f35b34801561048f57600080fd5b50610498610f8f565b005b3480156104a657600080fd5b506104af611017565b6040516104bc9190612eb2565b60405180910390f35b6104df60048036038101906104da9190612a6e565b61102a565b005b3480156104ed57600080fd5b5061050860048036038101906105039190612a6e565b611162565b005b34801561051657600080fd5b5061051f611209565b60405161052c9190612e4b565b60405180910390f35b34801561054157600080fd5b5061055c60048036038101906105579190612a6e565b611233565b005b34801561056a57600080fd5b506105736112b9565b6040516105809190612ecd565b60405180910390f35b34801561059557600080fd5b5061059e61134b565b6040516105ab919061316f565b60405180910390f35b3480156105c057600080fd5b506105c9611351565b6040516105d6919061316f565b60405180910390f35b6105f960048036038101906105f49190612a6e565b611357565b005b34801561060757600080fd5b50610622600480360381019061061d919061294b565b6114ec565b005b34801561063057600080fd5b5061064b600480360381019061064691906128c8565b611502565b005b34801561065957600080fd5b50610674600480360381019061066f9190612a6e565b611564565b6040516106819190612ecd565b60405180910390f35b34801561069657600080fd5b5061069f61160b565b6040516106ac919061316f565b60405180910390f35b3480156106c157600080fd5b506106dc60048036038101906106d79190612835565b611611565b6040516106e99190612eb2565b60405180910390f35b3480156106fe57600080fd5b5061071960048036038101906107149190612808565b6116a5565b005b34801561072757600080fd5b5061073061179d565b60405161073d919061316f565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061081157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108215750610820826117a3565b5b9050919050565b61083061180d565b73ffffffffffffffffffffffffffffffffffffffff1661084e611209565b73ffffffffffffffffffffffffffffffffffffffff16146108a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089b9061308f565b60405180910390fd5b600960009054906101000a900460ff1615600960006101000a81548160ff021916908315150217905550565b6060600080546108df9061341f565b80601f016020809104026020016040519081016040528092919081815260200182805461090b9061341f565b80156109585780601f1061092d57610100808354040283529160200191610958565b820191906000526020600020905b81548152906001019060200180831161093b57829003601f168201915b5050505050905090565b600061096d82611815565b6109ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a39061306f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109f282610e25565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5a906130ef565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a8261180d565b73ffffffffffffffffffffffffffffffffffffffff161480610ab15750610ab081610aab61180d565b611611565b5b610af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae790612faf565b60405180910390fd5b610afa8383611881565b505050565b600b8054610b0c9061341f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b389061341f565b8015610b855780601f10610b5a57610100808354040283529160200191610b85565b820191906000526020600020905b815481529060010190602001808311610b6857829003601f168201915b505050505081565b6000610b99600761193a565b905090565b610baf610ba961180d565b82611948565b610bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be59061314f565b60405180910390fd5b610bf9838383611a26565b505050565b610d05610457610c0e9190613254565b81565b610c1961180d565b73ffffffffffffffffffffffffffffffffffffffff16610c37611209565b73ffffffffffffffffffffffffffffffffffffffff1614610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c849061308f565b60405180910390fd5b60004790506000610c9c61180d565b90508073ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015610ce4573d6000803e3d6000fd5b505050565b610d0483838360405180602001604052806000815250611502565b505050565b610d1161180d565b73ffffffffffffffffffffffffffffffffffffffff16610d2f611209565b73ffffffffffffffffffffffffffffffffffffffff1614610d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7c9061308f565b60405180910390fd5b80600b9080519060200190610d9b92919061261c565b5050565b610da761180d565b73ffffffffffffffffffffffffffffffffffffffff16610dc5611209565b73ffffffffffffffffffffffffffffffffffffffff1614610e1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e129061308f565b60405180910390fd5b8060088190555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ece576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec590612fef565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3f90612fcf565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f9761180d565b73ffffffffffffffffffffffffffffffffffffffff16610fb5611209565b73ffffffffffffffffffffffffffffffffffffffff161461100b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110029061308f565b60405180910390fd5b6110156000611c82565b565b600960009054906101000a900460ff1681565b600960009054906101000a900460ff16611079576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110709061310f565b60405180910390fd5b61045781611087600761193a565b6110919190613254565b11156110d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c99061304f565b60405180910390fd5b600854811115611117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110e9061300f565b60405180910390fd5b60005b8181101561115e57611141336001611132600761193a565b61113c9190613254565b611d48565b61114b6007611d66565b808061115690613482565b91505061111a565b5050565b61116a61180d565b73ffffffffffffffffffffffffffffffffffffffff16611188611209565b73ffffffffffffffffffffffffffffffffffffffff16146111de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d59061308f565b60405180910390fd5b60005b81811015611205576111f233611d7c565b80806111fd90613482565b9150506111e1565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61123b61180d565b73ffffffffffffffffffffffffffffffffffffffff16611259611209565b73ffffffffffffffffffffffffffffffffffffffff16146112af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a69061308f565b60405180910390fd5b80600a8190555050565b6060600180546112c89061341f565b80601f01602080910402602001604051908101604052809291908181526020018280546112f49061341f565b80156113415780601f1061131657610100808354040283529160200191611341565b820191906000526020600020905b81548152906001019060200180831161132457829003601f168201915b5050505050905090565b61045781565b600a5481565b600960009054906101000a900460ff166113a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139d9061310f565b60405180910390fd5b610d056104576113b69190613254565b816113c1600761193a565b6113cb9190613254565b111561140c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114039061304f565b60405180910390fd5b600854811115611451576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114489061300f565b60405180910390fd5b3481600a5461146091906132db565b11156114a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114989061312f565b60405180910390fd5b60005b818110156114e8576114cb3360016114bc600761193a565b6114c69190613254565b611d48565b6114d56007611d66565b80806114e090613482565b9150506114a4565b5050565b6114fe6114f761180d565b8383611e88565b5050565b61151361150d61180d565b83611948565b611552576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115499061314f565b60405180910390fd5b61155e84848484611ff5565b50505050565b606061156f82611815565b6115ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a5906130cf565b60405180910390fd5b60006115b8612051565b905060008151116115d85760405180602001604052806000815250611603565b806115e2846120e3565b6040516020016115f3929190612e27565b6040516020818303038152906040525b915050919050565b60085481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116ad61180d565b73ffffffffffffffffffffffffffffffffffffffff166116cb611209565b73ffffffffffffffffffffffffffffffffffffffff1614611721576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117189061308f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611791576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178890612f0f565b60405180910390fd5b61179a81611c82565b50565b610d0581565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166118f483610e25565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600061195382611815565b611992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198990612f8f565b60405180910390fd5b600061199d83610e25565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a0c57508373ffffffffffffffffffffffffffffffffffffffff166119f484610962565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a1d5750611a1c8185611611565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a4682610e25565b73ffffffffffffffffffffffffffffffffffffffff1614611a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a93906130af565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0390612f4f565b60405180910390fd5b611b17838383612244565b611b22600082611881565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b729190613335565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bc99190613254565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611d62828260405180602001604052806000815250612249565b5050565b6001816000016000828254019250508190555050565b611d8461180d565b73ffffffffffffffffffffffffffffffffffffffff16611da2611209565b73ffffffffffffffffffffffffffffffffffffffff1614611df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611def9061308f565b60405180910390fd5b6000611e04600761193a565b9050610d05610457611e169190613254565b600182611e239190613254565b1115611e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5b9061304f565b60405180910390fd5b611e7a82600183611e759190613254565b611d48565b611e846007611d66565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eee90612f6f565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fe89190612eb2565b60405180910390a3505050565b612000848484611a26565b61200c848484846122a4565b61204b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204290612eef565b60405180910390fd5b50505050565b6060600b80546120609061341f565b80601f016020809104026020016040519081016040528092919081815260200182805461208c9061341f565b80156120d95780601f106120ae576101008083540402835291602001916120d9565b820191906000526020600020905b8154815290600101906020018083116120bc57829003601f168201915b5050505050905090565b6060600082141561212b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061223f565b600082905060005b6000821461215d57808061214690613482565b915050600a8261215691906132aa565b9150612133565b60008167ffffffffffffffff811115612179576121786135b8565b5b6040519080825280601f01601f1916602001820160405280156121ab5781602001600182028036833780820191505090505b5090505b60008514612238576001826121c49190613335565b9150600a856121d391906134cb565b60306121df9190613254565b60f81b8183815181106121f5576121f4613589565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561223191906132aa565b94506121af565b8093505050505b919050565b505050565b612253838361243b565b61226060008484846122a4565b61229f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229690612eef565b60405180910390fd5b505050565b60006122c58473ffffffffffffffffffffffffffffffffffffffff16612609565b1561242e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122ee61180d565b8786866040518563ffffffff1660e01b81526004016123109493929190612e66565b602060405180830381600087803b15801561232a57600080fd5b505af192505050801561235b57506040513d601f19601f8201168201806040525081019061235891906129f8565b60015b6123de573d806000811461238b576040519150601f19603f3d011682016040523d82523d6000602084013e612390565b606091505b506000815114156123d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cd90612eef565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612433565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a29061302f565b60405180910390fd5b6124b481611815565b156124f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124eb90612f2f565b60405180910390fd5b61250060008383612244565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125509190613254565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546126289061341f565b90600052602060002090601f01602090048101928261264a5760008555612691565b82601f1061266357805160ff1916838001178555612691565b82800160010185558215612691579182015b82811115612690578251825591602001919060010190612675565b5b50905061269e91906126a2565b5090565b5b808211156126bb5760008160009055506001016126a3565b5090565b60006126d26126cd846131af565b61318a565b9050828152602081018484840111156126ee576126ed6135ec565b5b6126f98482856133dd565b509392505050565b600061271461270f846131e0565b61318a565b9050828152602081018484840111156127305761272f6135ec565b5b61273b8482856133dd565b509392505050565b60008135905061275281613b08565b92915050565b60008135905061276781613b1f565b92915050565b60008135905061277c81613b36565b92915050565b60008151905061279181613b36565b92915050565b600082601f8301126127ac576127ab6135e7565b5b81356127bc8482602086016126bf565b91505092915050565b600082601f8301126127da576127d96135e7565b5b81356127ea848260208601612701565b91505092915050565b60008135905061280281613b4d565b92915050565b60006020828403121561281e5761281d6135f6565b5b600061282c84828501612743565b91505092915050565b6000806040838503121561284c5761284b6135f6565b5b600061285a85828601612743565b925050602061286b85828601612743565b9150509250929050565b60008060006060848603121561288e5761288d6135f6565b5b600061289c86828701612743565b93505060206128ad86828701612743565b92505060406128be868287016127f3565b9150509250925092565b600080600080608085870312156128e2576128e16135f6565b5b60006128f087828801612743565b945050602061290187828801612743565b9350506040612912878288016127f3565b925050606085013567ffffffffffffffff811115612933576129326135f1565b5b61293f87828801612797565b91505092959194509250565b60008060408385031215612962576129616135f6565b5b600061297085828601612743565b925050602061298185828601612758565b9150509250929050565b600080604083850312156129a2576129a16135f6565b5b60006129b085828601612743565b92505060206129c1858286016127f3565b9150509250929050565b6000602082840312156129e1576129e06135f6565b5b60006129ef8482850161276d565b91505092915050565b600060208284031215612a0e57612a0d6135f6565b5b6000612a1c84828501612782565b91505092915050565b600060208284031215612a3b57612a3a6135f6565b5b600082013567ffffffffffffffff811115612a5957612a586135f1565b5b612a65848285016127c5565b91505092915050565b600060208284031215612a8457612a836135f6565b5b6000612a92848285016127f3565b91505092915050565b612aa481613369565b82525050565b612ab38161337b565b82525050565b6000612ac482613211565b612ace8185613227565b9350612ade8185602086016133ec565b612ae7816135fb565b840191505092915050565b6000612afd8261321c565b612b078185613238565b9350612b178185602086016133ec565b612b20816135fb565b840191505092915050565b6000612b368261321c565b612b408185613249565b9350612b508185602086016133ec565b80840191505092915050565b6000612b69603283613238565b9150612b748261360c565b604082019050919050565b6000612b8c602683613238565b9150612b978261365b565b604082019050919050565b6000612baf601c83613238565b9150612bba826136aa565b602082019050919050565b6000612bd2602483613238565b9150612bdd826136d3565b604082019050919050565b6000612bf5601983613238565b9150612c0082613722565b602082019050919050565b6000612c18602c83613238565b9150612c238261374b565b604082019050919050565b6000612c3b603883613238565b9150612c468261379a565b604082019050919050565b6000612c5e602a83613238565b9150612c69826137e9565b604082019050919050565b6000612c81602983613238565b9150612c8c82613838565b604082019050919050565b6000612ca4601983613238565b9150612caf82613887565b602082019050919050565b6000612cc7602083613238565b9150612cd2826138b0565b602082019050919050565b6000612cea601183613238565b9150612cf5826138d9565b602082019050919050565b6000612d0d602c83613238565b9150612d1882613902565b604082019050919050565b6000612d30602083613238565b9150612d3b82613951565b602082019050919050565b6000612d53602983613238565b9150612d5e8261397a565b604082019050919050565b6000612d76602f83613238565b9150612d81826139c9565b604082019050919050565b6000612d99602183613238565b9150612da482613a18565b604082019050919050565b6000612dbc601483613238565b9150612dc782613a67565b602082019050919050565b6000612ddf601c83613238565b9150612dea82613a90565b602082019050919050565b6000612e02603183613238565b9150612e0d82613ab9565b604082019050919050565b612e21816133d3565b82525050565b6000612e338285612b2b565b9150612e3f8284612b2b565b91508190509392505050565b6000602082019050612e606000830184612a9b565b92915050565b6000608082019050612e7b6000830187612a9b565b612e886020830186612a9b565b612e956040830185612e18565b8181036060830152612ea78184612ab9565b905095945050505050565b6000602082019050612ec76000830184612aaa565b92915050565b60006020820190508181036000830152612ee78184612af2565b905092915050565b60006020820190508181036000830152612f0881612b5c565b9050919050565b60006020820190508181036000830152612f2881612b7f565b9050919050565b60006020820190508181036000830152612f4881612ba2565b9050919050565b60006020820190508181036000830152612f6881612bc5565b9050919050565b60006020820190508181036000830152612f8881612be8565b9050919050565b60006020820190508181036000830152612fa881612c0b565b9050919050565b60006020820190508181036000830152612fc881612c2e565b9050919050565b60006020820190508181036000830152612fe881612c51565b9050919050565b6000602082019050818103600083015261300881612c74565b9050919050565b6000602082019050818103600083015261302881612c97565b9050919050565b6000602082019050818103600083015261304881612cba565b9050919050565b6000602082019050818103600083015261306881612cdd565b9050919050565b6000602082019050818103600083015261308881612d00565b9050919050565b600060208201905081810360008301526130a881612d23565b9050919050565b600060208201905081810360008301526130c881612d46565b9050919050565b600060208201905081810360008301526130e881612d69565b9050919050565b6000602082019050818103600083015261310881612d8c565b9050919050565b6000602082019050818103600083015261312881612daf565b9050919050565b6000602082019050818103600083015261314881612dd2565b9050919050565b6000602082019050818103600083015261316881612df5565b9050919050565b60006020820190506131846000830184612e18565b92915050565b60006131946131a5565b90506131a08282613451565b919050565b6000604051905090565b600067ffffffffffffffff8211156131ca576131c96135b8565b5b6131d3826135fb565b9050602081019050919050565b600067ffffffffffffffff8211156131fb576131fa6135b8565b5b613204826135fb565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061325f826133d3565b915061326a836133d3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561329f5761329e6134fc565b5b828201905092915050565b60006132b5826133d3565b91506132c0836133d3565b9250826132d0576132cf61352b565b5b828204905092915050565b60006132e6826133d3565b91506132f1836133d3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561332a576133296134fc565b5b828202905092915050565b6000613340826133d3565b915061334b836133d3565b92508282101561335e5761335d6134fc565b5b828203905092915050565b6000613374826133b3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561340a5780820151818401526020810190506133ef565b83811115613419576000848401525b50505050565b6000600282049050600182168061343757607f821691505b6020821081141561344b5761344a61355a565b5b50919050565b61345a826135fb565b810181811067ffffffffffffffff82111715613479576134786135b8565b5b80604052505050565b600061348d826133d3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134c0576134bf6134fc565b5b600182019050919050565b60006134d6826133d3565b91506134e1836133d3565b9250826134f1576134f061352b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f43616e277420636c61696d206d6f7265207468616e2031302e00000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f457863656564206d617820737570706c79000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206d757374206265206163746976652e000000000000000000000000600082015250565b7f496e73756666696369656e742066756e647320746f20636c61696d2e00000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b613b1181613369565b8114613b1c57600080fd5b50565b613b288161337b565b8114613b3357600080fd5b50565b613b3f81613387565b8114613b4a57600080fd5b50565b613b56816133d3565b8114613b6157600080fd5b5056fea26469706673582212207f2acf6382f87bad23e09df5a9f2afa225136d70f109febbfba56c61d24e52b164736f6c63430008070033

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.