ETH Price: $3,351.54 (-2.94%)
Gas: 4 Gwei

Token

Plot Encryption Token (PET)
 

Overview

Max Total Supply

51 PET

Holders

50

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PET
0x0b748bd26cc6105d468f0e45d4c6dbcef3dcf480
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:
ShibCoOpPETCollection

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 17 : PlotEncryptionToken.sol
//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";

contract ShibCoOpPETCollection is IERC721Metadata, ERC721Enumerable, Ownable {
    using Counters for Counters.Counter;
    using SafeMath for uint256;

    Counters.Counter private _tokenCount;
    uint256 private _mintLimit = 0;
    bool private saleLive = true;
    uint256 private PRICE = 1 ether;
    uint256 private SHIB_PRICE = 113600000;
    string private contractMetaUri = "ipfs://QmVqMnm4ruKj92cqnNjmzvuhY4NpWidpiZ56HszXkWjzHg";
    IERC20 private shibToken = IERC20(0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE);

    string public baseTokenURI = "https://shibco-op.dev/access-token/";
    bool public frozen = false;

    mapping(address => bool) private _presaleList;

    event CreateNft(uint256 indexed id);

    constructor() ERC721("Plot Encryption Token", "PET") {
    }

    function setPresaleAddress(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            _presaleList[addresses[i]] = true;
        }
    }

    function isPresaleApproved(address addr) external view returns (bool) {
        return _presaleList[addr];
    }

    function _totalSupply() internal view returns (uint) {
        return _tokenCount.current();
    }

    function totalMint() public view returns (uint256) {
        return _totalSupply();
    }

    modifier qtyAvailable(uint256 _count) {
        if (_mintLimit > 0) {
            require(_totalSupply() + _count < _mintLimit, "Qty Out");
        }

        _;
    }

    function mintReserve(address[] calldata addresses) public onlyOwner qtyAvailable(addresses.length){
        for (uint256 i = 0; i < addresses.length; i++) {
            _mintAnElement(addresses[i]);
        }
    }

    function presaleShib() public qtyAvailable(1) {
        require(_presaleList[_msgSender()], 'Not Whitelist');
        shibToken.transferFrom(_msgSender(), address(this), 220000 * 10 ** 18);

        _presaleList[_msgSender()] = false;
        _mintAnElement(_msgSender());
    }

    function presaleMint() public payable qtyAvailable(1) {
        require(_presaleList[_msgSender()], 'Not Whitelist');
        require(msg.value >= 0.002 ether, "NSF");

        _presaleList[_msgSender()] = false;
        _mintAnElement(_msgSender());
    }

    function mintWShib() public {
        shibToken.transferFrom(_msgSender(), address(this), SHIB_PRICE * 10 ** 18);
        if (_msgSender() != owner()) {
            require(saleLive == true, "SNA");
        }

        _mintAnElement(_msgSender());
    }

    function mint() public payable qtyAvailable(1) {
        require(msg.value >= PRICE, "NSF");
        if (_msgSender() != owner()) {
            require(saleLive == true, "SNA");
        }

        _mintAnElement(_msgSender());
    }

    function _mintAnElement(address _to) private {
        _tokenCount.increment();
        uint id = _totalSupply() + 1;
        _safeMint(_to, id);
        emit CreateNft(id);
    }

    function price() public view returns (uint256) {
        return PRICE;
    }

    function priceShib() public view returns (uint256) {
        return SHIB_PRICE;
    }

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

    function setBaseURI(string memory baseURI) public onlyOwner {
        require(frozen == false, "Frozen");
        baseTokenURI = baseURI;
    }

    function contractURI() public view returns (string memory) {
        return contractMetaUri;
    }

    function setContractPrivateValue(string memory varName, string memory varValue) public onlyOwner {
        require(frozen == false, "Frozen");

        if (keccak256(abi.encodePacked(varName)) == keccak256(abi.encodePacked("mintLimit"))) {
            require(st2num(varValue) >= 0, "invalid");
            _mintLimit = st2num(varValue);
        } else if (keccak256(abi.encodePacked(varName)) == keccak256(abi.encodePacked("mintPrice"))) {
            PRICE = st2num(varValue);
        } else if (keccak256(abi.encodePacked(varName)) == keccak256(abi.encodePacked("contractUri"))) {
            contractMetaUri = varValue;
        } else if (keccak256(abi.encodePacked(varName)) == keccak256(abi.encodePacked("shibPrice"))) {
            SHIB_PRICE = st2num(varValue);
        }
    }

    function freeze() public onlyOwner {
        frozen = true;
    }
    
    function toggleSale() public onlyOwner{
        require(frozen == false, "Frozen");
        saleLive = !saleLive;
    }

    function withdrawShib(address to) public onlyOwner {
        shibToken.transfer(to, shibToken.balanceOf(address(this)));
    }

    function withdrawAll(address to) public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0);
        _widthdraw(to, address(this).balance);
    }

    function _widthdraw(address _address, uint256 _amount) private {
        (bool success,) = _address.call{value : _amount}("");
        require(success, "Transfer failed.");
    }

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

    function st2num(string memory numString) private pure returns(uint) {
        uint  val=0;
        bytes   memory stringBytes = bytes(numString);
        for (uint  i =  0; i<stringBytes.length; i++) {
            uint exp = stringBytes.length - i;
            bytes1 ival = stringBytes[i];
            uint8 uval = uint8(ival);
           uint jval = uval - uint(0x30);
   
           val +=  (uint(jval) * (10**(exp-1))); 
        }
      return val;
    }
}

File 2 of 17 : 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 3 of 17 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 17 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden 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 token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        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: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {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 an {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 Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 5 of 17 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

File 6 of 17 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 17 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev See {ERC721-_burn}. This override additionally checks to see if a
     * token-specific URI was set for the token, and if so, it deletes the token URI from
     * the storage mapping.
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

File 9 of 17 : 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 17 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 11 of 17 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @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);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 12 of 17 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

File 13 of 17 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 14 of 17 : 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 15 of 17 : 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 16 of 17 : 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);
}

File 17 of 17 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "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":"uint256","name":"id","type":"uint256"}],"name":"CreateNft","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeze","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"frozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isPresaleApproved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"mintReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintWShib","outputs":[],"stateMutability":"nonpayable","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":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleShib","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceShib","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"varName","type":"string"},{"internalType":"string","name":"varValue","type":"string"}],"name":"setContractPrivateValue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"setPresaleAddress","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":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"withdrawShib","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600c556001600d60006101000a81548160ff021916908315150217905550670de0b6b3a7640000600e556306c56600600f5560405180606001604052806035815260200162005468603591396010908051906020019062000069929190620002ae565b507395ad61b0a150d79219dcf64e1e6cc01f0b64c4ce601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550604051806060016040528060238152602001620054456023913960129080519060200190620000f0929190620002ae565b506000601360006101000a81548160ff0219169083151502179055503480156200011957600080fd5b506040518060400160405280601581526020017f506c6f7420456e6372797074696f6e20546f6b656e00000000000000000000008152506040518060400160405280600381526020017f504554000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200019e929190620002ae565b508060019080519060200190620001b7929190620002ae565b505050620001da620001ce620001e060201b60201c565b620001e860201b60201c565b620003c3565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002bc906200035e565b90600052602060002090601f016020900481019282620002e057600085556200032c565b82601f10620002fb57805160ff19168380011785556200032c565b828001600101855582156200032c579182015b828111156200032b5782518255916020019190600101906200030e565b5b5090506200033b91906200033f565b5090565b5b808211156200035a57600081600090555060010162000340565b5090565b600060028204905060018216806200037757607f821691505b602082108114156200038e576200038d62000394565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61507280620003d36000396000f3fe6080604052600436106102255760003560e01c806370a0823111610123578063a8b31c53116100ab578063d833c1a11161006f578063d833c1a11461078d578063e8a3d485146107b6578063e985e9c5146107e1578063f2fde38b1461081e578063fa09e6301461084757610225565b8063a8b31c5314610694578063b88d4fde146106d1578063c87b56dd146106fa578063ccda0ac214610737578063d547cfb71461076257610225565b80638c6e1058116100f25780638c6e1058146105d35780638da5cb5b146105ea57806395d89b4114610615578063a035b1fe14610640578063a22cb4651461066b57610225565b806370a082311461053f578063715018a61461057c5780637d8966e41461059357806381858e37146105aa57610225565b80632163acc3116101b157806355f804b31161017557806355f804b31461048d57806359533d6c146104b657806359a7715a146104c057806362a5af3b146104eb5780636352211e1461050257610225565b80632163acc3146103aa57806323b872dd146103c15780632f745c59146103ea57806342842e0e146104275780634f6ccce71461045057610225565b806308c3fe61116101f857806308c3fe61146102fa578063095ea7b3146103235780630a6260571461034c5780631249c58b1461037557806318160ddd1461037f57610225565b806301ffc9a71461022a578063054f7d9c1461026757806306fdde0314610292578063081812fc146102bd575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613922565b610870565b60405161025e91906140c9565b60405180910390f35b34801561027357600080fd5b5061027c610882565b60405161028991906140c9565b60405180910390f35b34801561029e57600080fd5b506102a7610895565b6040516102b491906140e4565b60405180910390f35b3480156102c957600080fd5b506102e460048036038101906102df9190613a3d565b610927565b6040516102f19190613fcb565b60405180910390f35b34801561030657600080fd5b50610321600480360381019061031c91906138a8565b61096d565b005b34801561032f57600080fd5b5061034a60048036038101906103459190613868565b610a32565b005b34801561035857600080fd5b50610373600480360381019061036e91906139c5565b610b4a565b005b61037d610d97565b005b34801561038b57600080fd5b50610394610eeb565b6040516103a191906143c6565b60405180910390f35b3480156103b657600080fd5b506103bf610ef8565b005b3480156103cd57600080fd5b506103e860048036038101906103e39190613752565b611070565b005b3480156103f657600080fd5b50610411600480360381019061040c9190613868565b6110d0565b60405161041e91906143c6565b60405180910390f35b34801561043357600080fd5b5061044e60048036038101906104499190613752565b611175565b005b34801561045c57600080fd5b5061047760048036038101906104729190613a3d565b611195565b60405161048491906143c6565b60405180910390f35b34801561049957600080fd5b506104b460048036038101906104af919061397c565b611206565b005b6104be61127e565b005b3480156104cc57600080fd5b506104d5611431565b6040516104e291906143c6565b60405180910390f35b3480156104f757600080fd5b50610500611440565b005b34801561050e57600080fd5b5061052960048036038101906105249190613a3d565b611465565b6040516105369190613fcb565b60405180910390f35b34801561054b57600080fd5b50610566600480360381019061056191906136e5565b611517565b60405161057391906143c6565b60405180910390f35b34801561058857600080fd5b506105916115cf565b005b34801561059f57600080fd5b506105a86115e3565b005b3480156105b657600080fd5b506105d160048036038101906105cc91906136e5565b61166d565b005b3480156105df57600080fd5b506105e86117d2565b005b3480156105f657600080fd5b506105ff6119fe565b60405161060c9190613fcb565b60405180910390f35b34801561062157600080fd5b5061062a611a28565b60405161063791906140e4565b60405180910390f35b34801561064c57600080fd5b50610655611aba565b60405161066291906143c6565b60405180910390f35b34801561067757600080fd5b50610692600480360381019061068d9190613828565b611ac4565b005b3480156106a057600080fd5b506106bb60048036038101906106b691906136e5565b611ada565b6040516106c891906140c9565b60405180910390f35b3480156106dd57600080fd5b506106f860048036038101906106f391906137a5565b611b30565b005b34801561070657600080fd5b50610721600480360381019061071c9190613a3d565b611b92565b60405161072e91906140e4565b60405180910390f35b34801561074357600080fd5b5061074c611bfa565b60405161075991906143c6565b60405180910390f35b34801561076e57600080fd5b50610777611c04565b60405161078491906140e4565b60405180910390f35b34801561079957600080fd5b506107b460048036038101906107af91906138a8565b611c92565b005b3480156107c257600080fd5b506107cb611d3f565b6040516107d891906140e4565b60405180910390f35b3480156107ed57600080fd5b5061080860048036038101906108039190613712565b611dd1565b60405161081591906140c9565b60405180910390f35b34801561082a57600080fd5b50610845600480360381019061084091906136e5565b611e65565b005b34801561085357600080fd5b5061086e600480360381019061086991906136e5565b611ee9565b005b600061087b82611f11565b9050919050565b601360009054906101000a900460ff1681565b6060600080546108a490614804565b80601f01602080910402602001604051908101604052809291908181526020018280546108d090614804565b801561091d5780601f106108f25761010080835404028352916020019161091d565b820191906000526020600020905b81548152906001019060200180831161090057829003601f168201915b5050505050905090565b600061093282611f8b565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610975611fd6565b818190506000600c5411156109db57600c5481610990612054565b61099a91906144b6565b106109da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d190614346565b60405180910390fd5b5b60005b83839050811015610a2c57610a198484838181106109ff576109fe61499d565b5b9050602002016020810190610a1491906136e5565b612065565b8080610a2490614867565b9150506109de565b50505050565b6000610a3d82611465565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa5906142e6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610acd6120c2565b73ffffffffffffffffffffffffffffffffffffffff161480610afc5750610afb81610af66120c2565b611dd1565b5b610b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3290614266565b60405180910390fd5b610b4583836120ca565b505050565b610b52611fd6565b60001515601360009054906101000a900460ff16151514610ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9f90614206565b60405180910390fd5b604051602001610bb790613f77565b6040516020818303038152906040528051906020012082604051602001610bde9190613f27565b604051602081830303815290604052805190602001201415610c5a576000610c0582612183565b1015610c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3d906143a6565b60405180910390fd5b610c4f81612183565b600c81905550610d93565b604051602001610c6990613f62565b6040516020818303038152906040528051906020012082604051602001610c909190613f27565b604051602081830303815290604052805190602001201415610cc057610cb581612183565b600e81905550610d92565b604051602001610ccf90613fb6565b6040516020818303038152906040528051906020012082604051602001610cf69190613f27565b604051602081830303815290604052805190602001201415610d2e578060109080519060200190610d28929190613479565b50610d91565b604051602001610d3d90613f8c565b6040516020818303038152906040528051906020012082604051602001610d649190613f27565b604051602081830303815290604052805190602001201415610d9057610d8981612183565b600f819055505b5b5b5b5050565b60016000600c541115610dfb57600c5481610db0612054565b610dba91906144b6565b10610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df190614346565b60405180910390fd5b5b600e54341015610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3790614246565b60405180910390fd5b610e486119fe565b73ffffffffffffffffffffffffffffffffffffffff16610e666120c2565b73ffffffffffffffffffffffffffffffffffffffff1614610ed85760011515600d60009054906101000a900460ff16151514610ed7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ece90614306565b60405180910390fd5b5b610ee8610ee36120c2565b612065565b50565b6000600880549050905090565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd610f3e6120c2565b30670de0b6b3a7640000600f54610f5591906146ae565b6040518463ffffffff1660e01b8152600401610f739392919061401d565b602060405180830381600087803b158015610f8d57600080fd5b505af1158015610fa1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fc591906138f5565b50610fce6119fe565b73ffffffffffffffffffffffffffffffffffffffff16610fec6120c2565b73ffffffffffffffffffffffffffffffffffffffff161461105e5760011515600d60009054906101000a900460ff1615151461105d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105490614306565b60405180910390fd5b5b61106e6110696120c2565b612065565b565b61108161107b6120c2565b8261223d565b6110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b790614386565b60405180910390fd5b6110cb8383836122d2565b505050565b60006110db83611517565b821061111c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111390614126565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61119083838360405180602001604052806000815250611b30565b505050565b600061119f610eeb565b82106111e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d790614366565b60405180910390fd5b600882815481106111f4576111f361499d565b5b90600052602060002001549050919050565b61120e611fd6565b60001515601360009054906101000a900460ff16151514611264576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125b90614206565b60405180910390fd5b806012908051906020019061127a929190613479565b5050565b60016000600c5411156112e257600c5481611297612054565b6112a191906144b6565b106112e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d890614346565b60405180910390fd5b5b601460006112ee6120c2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611375576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136c90614106565b60405180910390fd5b66071afd498d00003410156113bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b690614246565b60405180910390fd5b6000601460006113cd6120c2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061142e6114296120c2565b612065565b50565b600061143b612054565b905090565b611448611fd6565b6001601360006101000a81548160ff021916908315150217905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561150e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611505906142c6565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157f90614226565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115d7611fd6565b6115e16000612539565b565b6115eb611fd6565b60001515601360009054906101000a900460ff16151514611641576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163890614206565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b611675611fd6565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb82601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161170f9190613fcb565b60206040518083038186803b15801561172757600080fd5b505afa15801561173b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061175f9190613a6a565b6040518363ffffffff1660e01b815260040161177c9291906140a0565b602060405180830381600087803b15801561179657600080fd5b505af11580156117aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117ce91906138f5565b5050565b60016000600c54111561183657600c54816117eb612054565b6117f591906144b6565b10611835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182c90614346565b60405180910390fd5b5b601460006118426120c2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166118c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c090614106565b60405180910390fd5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd61190f6120c2565b30692e963951560b518000006040518463ffffffff1660e01b815260040161193993929190613fe6565b602060405180830381600087803b15801561195357600080fd5b505af1158015611967573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061198b91906138f5565b5060006014600061199a6120c2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506119fb6119f66120c2565b612065565b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611a3790614804565b80601f0160208091040260200160405190810160405280929190818152602001828054611a6390614804565b8015611ab05780601f10611a8557610100808354040283529160200191611ab0565b820191906000526020600020905b815481529060010190602001808311611a9357829003601f168201915b5050505050905090565b6000600e54905090565b611ad6611acf6120c2565b83836125ff565b5050565b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611b41611b3b6120c2565b8361223d565b611b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7790614386565b60405180910390fd5b611b8c8484848461276c565b50505050565b6060611b9d82611f8b565b6000611ba76127c8565b90506000815111611bc75760405180602001604052806000815250611bf2565b80611bd18461285a565b604051602001611be2929190613f3e565b6040516020818303038152906040525b915050919050565b6000600f54905090565b60128054611c1190614804565b80601f0160208091040260200160405190810160405280929190818152602001828054611c3d90614804565b8015611c8a5780601f10611c5f57610100808354040283529160200191611c8a565b820191906000526020600020905b815481529060010190602001808311611c6d57829003601f168201915b505050505081565b611c9a611fd6565b60005b82829050811015611d3a57600160146000858585818110611cc157611cc061499d565b5b9050602002016020810190611cd691906136e5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611d3290614867565b915050611c9d565b505050565b606060108054611d4e90614804565b80601f0160208091040260200160405190810160405280929190818152602001828054611d7a90614804565b8015611dc75780601f10611d9c57610100808354040283529160200191611dc7565b820191906000526020600020905b815481529060010190602001808311611daa57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e6d611fd6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed490614166565b60405180910390fd5b611ee681612539565b50565b611ef1611fd6565b600047905060008111611f0357600080fd5b611f0d82476129bb565b5050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f845750611f8382612a6c565b5b9050919050565b611f9481612b4e565b611fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fca906142c6565b60405180910390fd5b50565b611fde6120c2565b73ffffffffffffffffffffffffffffffffffffffff16611ffc6119fe565b73ffffffffffffffffffffffffffffffffffffffff1614612052576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612049906142a6565b60405180910390fd5b565b6000612060600b612bba565b905090565b61206f600b612bc8565b6000600161207b612054565b61208591906144b6565b90506120918282612bde565b807fae961ff6d5a7a370a260744cbe7a5673f66e447235958db5c213c33f4b08ca1460405160405180910390a25050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661213d83611465565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008060009050600083905060005b81518110156122325760008183516121aa9190614708565b905060008383815181106121c1576121c061499d565b5b602001015160f81c60f81b905060008160f81c9050600060308260ff166121e89190614708565b90506001846121f79190614708565b600a6122039190614590565b8161220e91906146ae565b8761221991906144b6565b965050505050808061222a90614867565b915050612192565b508192505050919050565b60008061224983611465565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061228b575061228a8185611dd1565b5b806122c957508373ffffffffffffffffffffffffffffffffffffffff166122b184610927565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122f282611465565b73ffffffffffffffffffffffffffffffffffffffff1614612348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233f90614186565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123af906141c6565b60405180910390fd5b6123c3838383612bfc565b6123ce6000826120ca565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461241e9190614708565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461247591906144b6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612534838383612d10565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561266e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612665906141e6565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161275f91906140c9565b60405180910390a3505050565b6127778484846122d2565b61278384848484612d15565b6127c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b990614146565b60405180910390fd5b50505050565b6060601280546127d790614804565b80601f016020809104026020016040519081016040528092919081815260200182805461280390614804565b80156128505780601f1061282557610100808354040283529160200191612850565b820191906000526020600020905b81548152906001019060200180831161283357829003601f168201915b5050505050905090565b606060008214156128a2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129b6565b600082905060005b600082146128d45780806128bd90614867565b915050600a826128cd919061450c565b91506128aa565b60008167ffffffffffffffff8111156128f0576128ef6149cc565b5b6040519080825280601f01601f1916602001820160405280156129225781602001600182028036833780820191505090505b5090505b600085146129af5760018261293b9190614708565b9150600a8561294a91906148b0565b603061295691906144b6565b60f81b81838151811061296c5761296b61499d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129a8919061450c565b9450612926565b8093505050505b919050565b60008273ffffffffffffffffffffffffffffffffffffffff16826040516129e190613fa1565b60006040518083038185875af1925050503d8060008114612a1e576040519150601f19603f3d011682016040523d82523d6000602084013e612a23565b606091505b5050905080612a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5e90614326565b60405180910390fd5b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612b3757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612b475750612b4682612eac565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600081600001549050919050565b6001816000016000828254019250508190555050565b612bf8828260405180602001604052806000815250612f16565b5050565b612c07838383612f71565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c4a57612c4581612f76565b612c89565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612c8857612c878382612fbf565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ccc57612cc78161312c565b612d0b565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612d0a57612d0982826131fd565b5b5b505050565b505050565b6000612d368473ffffffffffffffffffffffffffffffffffffffff1661327c565b15612e9f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d5f6120c2565b8786866040518563ffffffff1660e01b8152600401612d819493929190614054565b602060405180830381600087803b158015612d9b57600080fd5b505af1925050508015612dcc57506040513d601f19601f82011682018060405250810190612dc9919061394f565b60015b612e4f573d8060008114612dfc576040519150601f19603f3d011682016040523d82523d6000602084013e612e01565b606091505b50600081511415612e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3e90614146565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ea4565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612f20838361329f565b612f2d6000848484612d15565b612f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6390614146565b60405180910390fd5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612fcc84611517565b612fd69190614708565b90506000600760008481526020019081526020016000205490508181146130bb576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506131409190614708565b90506000600960008481526020019081526020016000205490506000600883815481106131705761316f61499d565b5b9060005260206000200154905080600883815481106131925761319161499d565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806131e1576131e061496e565b5b6001900381819060005260206000200160009055905550505050565b600061320883611517565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561330f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330690614286565b60405180910390fd5b61331881612b4e565b15613358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334f906141a6565b60405180910390fd5b61336460008383612bfc565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133b491906144b6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461347560008383612d10565b5050565b82805461348590614804565b90600052602060002090601f0160209004810192826134a757600085556134ee565b82601f106134c057805160ff19168380011785556134ee565b828001600101855582156134ee579182015b828111156134ed5782518255916020019190600101906134d2565b5b5090506134fb91906134ff565b5090565b5b80821115613518576000816000905550600101613500565b5090565b600061352f61352a84614406565b6143e1565b90508281526020810184848401111561354b5761354a614a0a565b5b6135568482856147c2565b509392505050565b600061357161356c84614437565b6143e1565b90508281526020810184848401111561358d5761358c614a0a565b5b6135988482856147c2565b509392505050565b6000813590506135af81614fe0565b92915050565b60008083601f8401126135cb576135ca614a00565b5b8235905067ffffffffffffffff8111156135e8576135e76149fb565b5b60208301915083602082028301111561360457613603614a05565b5b9250929050565b60008135905061361a81614ff7565b92915050565b60008151905061362f81614ff7565b92915050565b6000813590506136448161500e565b92915050565b6000815190506136598161500e565b92915050565b600082601f83011261367457613673614a00565b5b813561368484826020860161351c565b91505092915050565b600082601f8301126136a2576136a1614a00565b5b81356136b284826020860161355e565b91505092915050565b6000813590506136ca81615025565b92915050565b6000815190506136df81615025565b92915050565b6000602082840312156136fb576136fa614a14565b5b6000613709848285016135a0565b91505092915050565b6000806040838503121561372957613728614a14565b5b6000613737858286016135a0565b9250506020613748858286016135a0565b9150509250929050565b60008060006060848603121561376b5761376a614a14565b5b6000613779868287016135a0565b935050602061378a868287016135a0565b925050604061379b868287016136bb565b9150509250925092565b600080600080608085870312156137bf576137be614a14565b5b60006137cd878288016135a0565b94505060206137de878288016135a0565b93505060406137ef878288016136bb565b925050606085013567ffffffffffffffff8111156138105761380f614a0f565b5b61381c8782880161365f565b91505092959194509250565b6000806040838503121561383f5761383e614a14565b5b600061384d858286016135a0565b925050602061385e8582860161360b565b9150509250929050565b6000806040838503121561387f5761387e614a14565b5b600061388d858286016135a0565b925050602061389e858286016136bb565b9150509250929050565b600080602083850312156138bf576138be614a14565b5b600083013567ffffffffffffffff8111156138dd576138dc614a0f565b5b6138e9858286016135b5565b92509250509250929050565b60006020828403121561390b5761390a614a14565b5b600061391984828501613620565b91505092915050565b60006020828403121561393857613937614a14565b5b600061394684828501613635565b91505092915050565b60006020828403121561396557613964614a14565b5b60006139738482850161364a565b91505092915050565b60006020828403121561399257613991614a14565b5b600082013567ffffffffffffffff8111156139b0576139af614a0f565b5b6139bc8482850161368d565b91505092915050565b600080604083850312156139dc576139db614a14565b5b600083013567ffffffffffffffff8111156139fa576139f9614a0f565b5b613a068582860161368d565b925050602083013567ffffffffffffffff811115613a2757613a26614a0f565b5b613a338582860161368d565b9150509250929050565b600060208284031215613a5357613a52614a14565b5b6000613a61848285016136bb565b91505092915050565b600060208284031215613a8057613a7f614a14565b5b6000613a8e848285016136d0565b91505092915050565b613aa08161473c565b82525050565b613aaf8161474e565b82525050565b6000613ac082614468565b613aca818561447e565b9350613ada8185602086016147d1565b613ae381614a19565b840191505092915050565b613af7816147b0565b82525050565b6000613b0882614473565b613b12818561449a565b9350613b228185602086016147d1565b613b2b81614a19565b840191505092915050565b6000613b4182614473565b613b4b81856144ab565b9350613b5b8185602086016147d1565b80840191505092915050565b6000613b74600d8361449a565b9150613b7f82614a37565b602082019050919050565b6000613b97602b8361449a565b9150613ba282614a60565b604082019050919050565b6000613bba60328361449a565b9150613bc582614aaf565b604082019050919050565b6000613bdd60268361449a565b9150613be882614afe565b604082019050919050565b6000613c0060258361449a565b9150613c0b82614b4d565b604082019050919050565b6000613c23601c8361449a565b9150613c2e82614b9c565b602082019050919050565b6000613c4660248361449a565b9150613c5182614bc5565b604082019050919050565b6000613c6960198361449a565b9150613c7482614c14565b602082019050919050565b6000613c8c6009836144ab565b9150613c9782614c3d565b600982019050919050565b6000613caf60068361449a565b9150613cba82614c66565b602082019050919050565b6000613cd260298361449a565b9150613cdd82614c8f565b604082019050919050565b6000613cf560038361449a565b9150613d0082614cde565b602082019050919050565b6000613d186009836144ab565b9150613d2382614d07565b600982019050919050565b6000613d3b603e8361449a565b9150613d4682614d30565b604082019050919050565b6000613d5e60208361449a565b9150613d6982614d7f565b602082019050919050565b6000613d816009836144ab565b9150613d8c82614da8565b600982019050919050565b6000613da460208361449a565b9150613daf82614dd1565b602082019050919050565b6000613dc760188361449a565b9150613dd282614dfa565b602082019050919050565b6000613dea60218361449a565b9150613df582614e23565b604082019050919050565b6000613e0d60008361448f565b9150613e1882614e72565b600082019050919050565b6000613e3060038361449a565b9150613e3b82614e75565b602082019050919050565b6000613e5360108361449a565b9150613e5e82614e9e565b602082019050919050565b6000613e7660078361449a565b9150613e8182614ec7565b602082019050919050565b6000613e99602c8361449a565b9150613ea482614ef0565b604082019050919050565b6000613ebc602e8361449a565b9150613ec782614f3f565b604082019050919050565b6000613edf600b836144ab565b9150613eea82614f8e565b600b82019050919050565b6000613f0260078361449a565b9150613f0d82614fb7565b602082019050919050565b613f21816147a6565b82525050565b6000613f338284613b36565b915081905092915050565b6000613f4a8285613b36565b9150613f568284613b36565b91508190509392505050565b6000613f6d82613c7f565b9150819050919050565b6000613f8282613d0b565b9150819050919050565b6000613f9782613d74565b9150819050919050565b6000613fac82613e00565b9150819050919050565b6000613fc182613ed2565b9150819050919050565b6000602082019050613fe06000830184613a97565b92915050565b6000606082019050613ffb6000830186613a97565b6140086020830185613a97565b6140156040830184613aee565b949350505050565b60006060820190506140326000830186613a97565b61403f6020830185613a97565b61404c6040830184613f18565b949350505050565b60006080820190506140696000830187613a97565b6140766020830186613a97565b6140836040830185613f18565b81810360608301526140958184613ab5565b905095945050505050565b60006040820190506140b56000830185613a97565b6140c26020830184613f18565b9392505050565b60006020820190506140de6000830184613aa6565b92915050565b600060208201905081810360008301526140fe8184613afd565b905092915050565b6000602082019050818103600083015261411f81613b67565b9050919050565b6000602082019050818103600083015261413f81613b8a565b9050919050565b6000602082019050818103600083015261415f81613bad565b9050919050565b6000602082019050818103600083015261417f81613bd0565b9050919050565b6000602082019050818103600083015261419f81613bf3565b9050919050565b600060208201905081810360008301526141bf81613c16565b9050919050565b600060208201905081810360008301526141df81613c39565b9050919050565b600060208201905081810360008301526141ff81613c5c565b9050919050565b6000602082019050818103600083015261421f81613ca2565b9050919050565b6000602082019050818103600083015261423f81613cc5565b9050919050565b6000602082019050818103600083015261425f81613ce8565b9050919050565b6000602082019050818103600083015261427f81613d2e565b9050919050565b6000602082019050818103600083015261429f81613d51565b9050919050565b600060208201905081810360008301526142bf81613d97565b9050919050565b600060208201905081810360008301526142df81613dba565b9050919050565b600060208201905081810360008301526142ff81613ddd565b9050919050565b6000602082019050818103600083015261431f81613e23565b9050919050565b6000602082019050818103600083015261433f81613e46565b9050919050565b6000602082019050818103600083015261435f81613e69565b9050919050565b6000602082019050818103600083015261437f81613e8c565b9050919050565b6000602082019050818103600083015261439f81613eaf565b9050919050565b600060208201905081810360008301526143bf81613ef5565b9050919050565b60006020820190506143db6000830184613f18565b92915050565b60006143eb6143fc565b90506143f78282614836565b919050565b6000604051905090565b600067ffffffffffffffff821115614421576144206149cc565b5b61442a82614a19565b9050602081019050919050565b600067ffffffffffffffff821115614452576144516149cc565b5b61445b82614a19565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006144c1826147a6565b91506144cc836147a6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614501576145006148e1565b5b828201905092915050565b6000614517826147a6565b9150614522836147a6565b92508261453257614531614910565b5b828204905092915050565b6000808291508390505b600185111561458757808604811115614563576145626148e1565b5b60018516156145725780820291505b808102905061458085614a2a565b9450614547565b94509492505050565b600061459b826147a6565b91506145a6836147a6565b92506145d37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846145db565b905092915050565b6000826145eb57600190506146a7565b816145f957600090506146a7565b816001811461460f576002811461461957614648565b60019150506146a7565b60ff84111561462b5761462a6148e1565b5b8360020a915084821115614642576146416148e1565b5b506146a7565b5060208310610133831016604e8410600b841016171561467d5782820a905083811115614678576146776148e1565b5b6146a7565b61468a848484600161453d565b925090508184048111156146a1576146a06148e1565b5b81810290505b9392505050565b60006146b9826147a6565b91506146c4836147a6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146fd576146fc6148e1565b5b828202905092915050565b6000614713826147a6565b915061471e836147a6565b925082821015614731576147306148e1565b5b828203905092915050565b600061474782614786565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006147bb826147a6565b9050919050565b82818337600083830152505050565b60005b838110156147ef5780820151818401526020810190506147d4565b838111156147fe576000848401525b50505050565b6000600282049050600182168061481c57607f821691505b602082108114156148305761482f61493f565b5b50919050565b61483f82614a19565b810181811067ffffffffffffffff8211171561485e5761485d6149cc565b5b80604052505050565b6000614872826147a6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156148a5576148a46148e1565b5b600182019050919050565b60006148bb826147a6565b91506148c6836147a6565b9250826148d6576148d5614910565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f4e6f742057686974656c69737400000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f6d696e7450726963650000000000000000000000000000000000000000000000600082015250565b7f46726f7a656e0000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4e53460000000000000000000000000000000000000000000000000000000000600082015250565b7f6d696e744c696d69740000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f7368696250726963650000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f534e410000000000000000000000000000000000000000000000000000000000600082015250565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f517479204f757400000000000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f636f6e7472616374557269000000000000000000000000000000000000000000600082015250565b7f696e76616c696400000000000000000000000000000000000000000000000000600082015250565b614fe98161473c565b8114614ff457600080fd5b50565b6150008161474e565b811461500b57600080fd5b50565b6150178161475a565b811461502257600080fd5b50565b61502e816147a6565b811461503957600080fd5b5056fea2646970667358221220267834cbdaba8f6285c97d400ae7468783c7ee007c137e382ee09e0fc3ed7f1b64736f6c6343000807003368747470733a2f2f73686962636f2d6f702e6465762f6163636573732d746f6b656e2f697066733a2f2f516d56714d6e6d3472754b6a393263716e4e6a6d7a76756859344e7057696470695a353648737a586b576a7a4867

Deployed Bytecode

0x6080604052600436106102255760003560e01c806370a0823111610123578063a8b31c53116100ab578063d833c1a11161006f578063d833c1a11461078d578063e8a3d485146107b6578063e985e9c5146107e1578063f2fde38b1461081e578063fa09e6301461084757610225565b8063a8b31c5314610694578063b88d4fde146106d1578063c87b56dd146106fa578063ccda0ac214610737578063d547cfb71461076257610225565b80638c6e1058116100f25780638c6e1058146105d35780638da5cb5b146105ea57806395d89b4114610615578063a035b1fe14610640578063a22cb4651461066b57610225565b806370a082311461053f578063715018a61461057c5780637d8966e41461059357806381858e37146105aa57610225565b80632163acc3116101b157806355f804b31161017557806355f804b31461048d57806359533d6c146104b657806359a7715a146104c057806362a5af3b146104eb5780636352211e1461050257610225565b80632163acc3146103aa57806323b872dd146103c15780632f745c59146103ea57806342842e0e146104275780634f6ccce71461045057610225565b806308c3fe61116101f857806308c3fe61146102fa578063095ea7b3146103235780630a6260571461034c5780631249c58b1461037557806318160ddd1461037f57610225565b806301ffc9a71461022a578063054f7d9c1461026757806306fdde0314610292578063081812fc146102bd575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613922565b610870565b60405161025e91906140c9565b60405180910390f35b34801561027357600080fd5b5061027c610882565b60405161028991906140c9565b60405180910390f35b34801561029e57600080fd5b506102a7610895565b6040516102b491906140e4565b60405180910390f35b3480156102c957600080fd5b506102e460048036038101906102df9190613a3d565b610927565b6040516102f19190613fcb565b60405180910390f35b34801561030657600080fd5b50610321600480360381019061031c91906138a8565b61096d565b005b34801561032f57600080fd5b5061034a60048036038101906103459190613868565b610a32565b005b34801561035857600080fd5b50610373600480360381019061036e91906139c5565b610b4a565b005b61037d610d97565b005b34801561038b57600080fd5b50610394610eeb565b6040516103a191906143c6565b60405180910390f35b3480156103b657600080fd5b506103bf610ef8565b005b3480156103cd57600080fd5b506103e860048036038101906103e39190613752565b611070565b005b3480156103f657600080fd5b50610411600480360381019061040c9190613868565b6110d0565b60405161041e91906143c6565b60405180910390f35b34801561043357600080fd5b5061044e60048036038101906104499190613752565b611175565b005b34801561045c57600080fd5b5061047760048036038101906104729190613a3d565b611195565b60405161048491906143c6565b60405180910390f35b34801561049957600080fd5b506104b460048036038101906104af919061397c565b611206565b005b6104be61127e565b005b3480156104cc57600080fd5b506104d5611431565b6040516104e291906143c6565b60405180910390f35b3480156104f757600080fd5b50610500611440565b005b34801561050e57600080fd5b5061052960048036038101906105249190613a3d565b611465565b6040516105369190613fcb565b60405180910390f35b34801561054b57600080fd5b50610566600480360381019061056191906136e5565b611517565b60405161057391906143c6565b60405180910390f35b34801561058857600080fd5b506105916115cf565b005b34801561059f57600080fd5b506105a86115e3565b005b3480156105b657600080fd5b506105d160048036038101906105cc91906136e5565b61166d565b005b3480156105df57600080fd5b506105e86117d2565b005b3480156105f657600080fd5b506105ff6119fe565b60405161060c9190613fcb565b60405180910390f35b34801561062157600080fd5b5061062a611a28565b60405161063791906140e4565b60405180910390f35b34801561064c57600080fd5b50610655611aba565b60405161066291906143c6565b60405180910390f35b34801561067757600080fd5b50610692600480360381019061068d9190613828565b611ac4565b005b3480156106a057600080fd5b506106bb60048036038101906106b691906136e5565b611ada565b6040516106c891906140c9565b60405180910390f35b3480156106dd57600080fd5b506106f860048036038101906106f391906137a5565b611b30565b005b34801561070657600080fd5b50610721600480360381019061071c9190613a3d565b611b92565b60405161072e91906140e4565b60405180910390f35b34801561074357600080fd5b5061074c611bfa565b60405161075991906143c6565b60405180910390f35b34801561076e57600080fd5b50610777611c04565b60405161078491906140e4565b60405180910390f35b34801561079957600080fd5b506107b460048036038101906107af91906138a8565b611c92565b005b3480156107c257600080fd5b506107cb611d3f565b6040516107d891906140e4565b60405180910390f35b3480156107ed57600080fd5b5061080860048036038101906108039190613712565b611dd1565b60405161081591906140c9565b60405180910390f35b34801561082a57600080fd5b50610845600480360381019061084091906136e5565b611e65565b005b34801561085357600080fd5b5061086e600480360381019061086991906136e5565b611ee9565b005b600061087b82611f11565b9050919050565b601360009054906101000a900460ff1681565b6060600080546108a490614804565b80601f01602080910402602001604051908101604052809291908181526020018280546108d090614804565b801561091d5780601f106108f25761010080835404028352916020019161091d565b820191906000526020600020905b81548152906001019060200180831161090057829003601f168201915b5050505050905090565b600061093282611f8b565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610975611fd6565b818190506000600c5411156109db57600c5481610990612054565b61099a91906144b6565b106109da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d190614346565b60405180910390fd5b5b60005b83839050811015610a2c57610a198484838181106109ff576109fe61499d565b5b9050602002016020810190610a1491906136e5565b612065565b8080610a2490614867565b9150506109de565b50505050565b6000610a3d82611465565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa5906142e6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610acd6120c2565b73ffffffffffffffffffffffffffffffffffffffff161480610afc5750610afb81610af66120c2565b611dd1565b5b610b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3290614266565b60405180910390fd5b610b4583836120ca565b505050565b610b52611fd6565b60001515601360009054906101000a900460ff16151514610ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9f90614206565b60405180910390fd5b604051602001610bb790613f77565b6040516020818303038152906040528051906020012082604051602001610bde9190613f27565b604051602081830303815290604052805190602001201415610c5a576000610c0582612183565b1015610c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3d906143a6565b60405180910390fd5b610c4f81612183565b600c81905550610d93565b604051602001610c6990613f62565b6040516020818303038152906040528051906020012082604051602001610c909190613f27565b604051602081830303815290604052805190602001201415610cc057610cb581612183565b600e81905550610d92565b604051602001610ccf90613fb6565b6040516020818303038152906040528051906020012082604051602001610cf69190613f27565b604051602081830303815290604052805190602001201415610d2e578060109080519060200190610d28929190613479565b50610d91565b604051602001610d3d90613f8c565b6040516020818303038152906040528051906020012082604051602001610d649190613f27565b604051602081830303815290604052805190602001201415610d9057610d8981612183565b600f819055505b5b5b5b5050565b60016000600c541115610dfb57600c5481610db0612054565b610dba91906144b6565b10610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df190614346565b60405180910390fd5b5b600e54341015610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3790614246565b60405180910390fd5b610e486119fe565b73ffffffffffffffffffffffffffffffffffffffff16610e666120c2565b73ffffffffffffffffffffffffffffffffffffffff1614610ed85760011515600d60009054906101000a900460ff16151514610ed7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ece90614306565b60405180910390fd5b5b610ee8610ee36120c2565b612065565b50565b6000600880549050905090565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd610f3e6120c2565b30670de0b6b3a7640000600f54610f5591906146ae565b6040518463ffffffff1660e01b8152600401610f739392919061401d565b602060405180830381600087803b158015610f8d57600080fd5b505af1158015610fa1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fc591906138f5565b50610fce6119fe565b73ffffffffffffffffffffffffffffffffffffffff16610fec6120c2565b73ffffffffffffffffffffffffffffffffffffffff161461105e5760011515600d60009054906101000a900460ff1615151461105d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105490614306565b60405180910390fd5b5b61106e6110696120c2565b612065565b565b61108161107b6120c2565b8261223d565b6110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b790614386565b60405180910390fd5b6110cb8383836122d2565b505050565b60006110db83611517565b821061111c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111390614126565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61119083838360405180602001604052806000815250611b30565b505050565b600061119f610eeb565b82106111e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d790614366565b60405180910390fd5b600882815481106111f4576111f361499d565b5b90600052602060002001549050919050565b61120e611fd6565b60001515601360009054906101000a900460ff16151514611264576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125b90614206565b60405180910390fd5b806012908051906020019061127a929190613479565b5050565b60016000600c5411156112e257600c5481611297612054565b6112a191906144b6565b106112e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d890614346565b60405180910390fd5b5b601460006112ee6120c2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611375576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136c90614106565b60405180910390fd5b66071afd498d00003410156113bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b690614246565b60405180910390fd5b6000601460006113cd6120c2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061142e6114296120c2565b612065565b50565b600061143b612054565b905090565b611448611fd6565b6001601360006101000a81548160ff021916908315150217905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561150e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611505906142c6565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157f90614226565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115d7611fd6565b6115e16000612539565b565b6115eb611fd6565b60001515601360009054906101000a900460ff16151514611641576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163890614206565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b611675611fd6565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb82601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161170f9190613fcb565b60206040518083038186803b15801561172757600080fd5b505afa15801561173b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061175f9190613a6a565b6040518363ffffffff1660e01b815260040161177c9291906140a0565b602060405180830381600087803b15801561179657600080fd5b505af11580156117aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117ce91906138f5565b5050565b60016000600c54111561183657600c54816117eb612054565b6117f591906144b6565b10611835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182c90614346565b60405180910390fd5b5b601460006118426120c2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166118c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c090614106565b60405180910390fd5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd61190f6120c2565b30692e963951560b518000006040518463ffffffff1660e01b815260040161193993929190613fe6565b602060405180830381600087803b15801561195357600080fd5b505af1158015611967573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061198b91906138f5565b5060006014600061199a6120c2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506119fb6119f66120c2565b612065565b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611a3790614804565b80601f0160208091040260200160405190810160405280929190818152602001828054611a6390614804565b8015611ab05780601f10611a8557610100808354040283529160200191611ab0565b820191906000526020600020905b815481529060010190602001808311611a9357829003601f168201915b5050505050905090565b6000600e54905090565b611ad6611acf6120c2565b83836125ff565b5050565b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611b41611b3b6120c2565b8361223d565b611b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7790614386565b60405180910390fd5b611b8c8484848461276c565b50505050565b6060611b9d82611f8b565b6000611ba76127c8565b90506000815111611bc75760405180602001604052806000815250611bf2565b80611bd18461285a565b604051602001611be2929190613f3e565b6040516020818303038152906040525b915050919050565b6000600f54905090565b60128054611c1190614804565b80601f0160208091040260200160405190810160405280929190818152602001828054611c3d90614804565b8015611c8a5780601f10611c5f57610100808354040283529160200191611c8a565b820191906000526020600020905b815481529060010190602001808311611c6d57829003601f168201915b505050505081565b611c9a611fd6565b60005b82829050811015611d3a57600160146000858585818110611cc157611cc061499d565b5b9050602002016020810190611cd691906136e5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611d3290614867565b915050611c9d565b505050565b606060108054611d4e90614804565b80601f0160208091040260200160405190810160405280929190818152602001828054611d7a90614804565b8015611dc75780601f10611d9c57610100808354040283529160200191611dc7565b820191906000526020600020905b815481529060010190602001808311611daa57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e6d611fd6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed490614166565b60405180910390fd5b611ee681612539565b50565b611ef1611fd6565b600047905060008111611f0357600080fd5b611f0d82476129bb565b5050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f845750611f8382612a6c565b5b9050919050565b611f9481612b4e565b611fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fca906142c6565b60405180910390fd5b50565b611fde6120c2565b73ffffffffffffffffffffffffffffffffffffffff16611ffc6119fe565b73ffffffffffffffffffffffffffffffffffffffff1614612052576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612049906142a6565b60405180910390fd5b565b6000612060600b612bba565b905090565b61206f600b612bc8565b6000600161207b612054565b61208591906144b6565b90506120918282612bde565b807fae961ff6d5a7a370a260744cbe7a5673f66e447235958db5c213c33f4b08ca1460405160405180910390a25050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661213d83611465565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008060009050600083905060005b81518110156122325760008183516121aa9190614708565b905060008383815181106121c1576121c061499d565b5b602001015160f81c60f81b905060008160f81c9050600060308260ff166121e89190614708565b90506001846121f79190614708565b600a6122039190614590565b8161220e91906146ae565b8761221991906144b6565b965050505050808061222a90614867565b915050612192565b508192505050919050565b60008061224983611465565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061228b575061228a8185611dd1565b5b806122c957508373ffffffffffffffffffffffffffffffffffffffff166122b184610927565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122f282611465565b73ffffffffffffffffffffffffffffffffffffffff1614612348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233f90614186565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123af906141c6565b60405180910390fd5b6123c3838383612bfc565b6123ce6000826120ca565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461241e9190614708565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461247591906144b6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612534838383612d10565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561266e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612665906141e6565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161275f91906140c9565b60405180910390a3505050565b6127778484846122d2565b61278384848484612d15565b6127c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b990614146565b60405180910390fd5b50505050565b6060601280546127d790614804565b80601f016020809104026020016040519081016040528092919081815260200182805461280390614804565b80156128505780601f1061282557610100808354040283529160200191612850565b820191906000526020600020905b81548152906001019060200180831161283357829003601f168201915b5050505050905090565b606060008214156128a2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129b6565b600082905060005b600082146128d45780806128bd90614867565b915050600a826128cd919061450c565b91506128aa565b60008167ffffffffffffffff8111156128f0576128ef6149cc565b5b6040519080825280601f01601f1916602001820160405280156129225781602001600182028036833780820191505090505b5090505b600085146129af5760018261293b9190614708565b9150600a8561294a91906148b0565b603061295691906144b6565b60f81b81838151811061296c5761296b61499d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129a8919061450c565b9450612926565b8093505050505b919050565b60008273ffffffffffffffffffffffffffffffffffffffff16826040516129e190613fa1565b60006040518083038185875af1925050503d8060008114612a1e576040519150601f19603f3d011682016040523d82523d6000602084013e612a23565b606091505b5050905080612a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5e90614326565b60405180910390fd5b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612b3757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612b475750612b4682612eac565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600081600001549050919050565b6001816000016000828254019250508190555050565b612bf8828260405180602001604052806000815250612f16565b5050565b612c07838383612f71565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c4a57612c4581612f76565b612c89565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612c8857612c878382612fbf565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ccc57612cc78161312c565b612d0b565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612d0a57612d0982826131fd565b5b5b505050565b505050565b6000612d368473ffffffffffffffffffffffffffffffffffffffff1661327c565b15612e9f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d5f6120c2565b8786866040518563ffffffff1660e01b8152600401612d819493929190614054565b602060405180830381600087803b158015612d9b57600080fd5b505af1925050508015612dcc57506040513d601f19601f82011682018060405250810190612dc9919061394f565b60015b612e4f573d8060008114612dfc576040519150601f19603f3d011682016040523d82523d6000602084013e612e01565b606091505b50600081511415612e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3e90614146565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ea4565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612f20838361329f565b612f2d6000848484612d15565b612f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6390614146565b60405180910390fd5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612fcc84611517565b612fd69190614708565b90506000600760008481526020019081526020016000205490508181146130bb576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506131409190614708565b90506000600960008481526020019081526020016000205490506000600883815481106131705761316f61499d565b5b9060005260206000200154905080600883815481106131925761319161499d565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806131e1576131e061496e565b5b6001900381819060005260206000200160009055905550505050565b600061320883611517565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561330f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330690614286565b60405180910390fd5b61331881612b4e565b15613358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334f906141a6565b60405180910390fd5b61336460008383612bfc565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133b491906144b6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461347560008383612d10565b5050565b82805461348590614804565b90600052602060002090601f0160209004810192826134a757600085556134ee565b82601f106134c057805160ff19168380011785556134ee565b828001600101855582156134ee579182015b828111156134ed5782518255916020019190600101906134d2565b5b5090506134fb91906134ff565b5090565b5b80821115613518576000816000905550600101613500565b5090565b600061352f61352a84614406565b6143e1565b90508281526020810184848401111561354b5761354a614a0a565b5b6135568482856147c2565b509392505050565b600061357161356c84614437565b6143e1565b90508281526020810184848401111561358d5761358c614a0a565b5b6135988482856147c2565b509392505050565b6000813590506135af81614fe0565b92915050565b60008083601f8401126135cb576135ca614a00565b5b8235905067ffffffffffffffff8111156135e8576135e76149fb565b5b60208301915083602082028301111561360457613603614a05565b5b9250929050565b60008135905061361a81614ff7565b92915050565b60008151905061362f81614ff7565b92915050565b6000813590506136448161500e565b92915050565b6000815190506136598161500e565b92915050565b600082601f83011261367457613673614a00565b5b813561368484826020860161351c565b91505092915050565b600082601f8301126136a2576136a1614a00565b5b81356136b284826020860161355e565b91505092915050565b6000813590506136ca81615025565b92915050565b6000815190506136df81615025565b92915050565b6000602082840312156136fb576136fa614a14565b5b6000613709848285016135a0565b91505092915050565b6000806040838503121561372957613728614a14565b5b6000613737858286016135a0565b9250506020613748858286016135a0565b9150509250929050565b60008060006060848603121561376b5761376a614a14565b5b6000613779868287016135a0565b935050602061378a868287016135a0565b925050604061379b868287016136bb565b9150509250925092565b600080600080608085870312156137bf576137be614a14565b5b60006137cd878288016135a0565b94505060206137de878288016135a0565b93505060406137ef878288016136bb565b925050606085013567ffffffffffffffff8111156138105761380f614a0f565b5b61381c8782880161365f565b91505092959194509250565b6000806040838503121561383f5761383e614a14565b5b600061384d858286016135a0565b925050602061385e8582860161360b565b9150509250929050565b6000806040838503121561387f5761387e614a14565b5b600061388d858286016135a0565b925050602061389e858286016136bb565b9150509250929050565b600080602083850312156138bf576138be614a14565b5b600083013567ffffffffffffffff8111156138dd576138dc614a0f565b5b6138e9858286016135b5565b92509250509250929050565b60006020828403121561390b5761390a614a14565b5b600061391984828501613620565b91505092915050565b60006020828403121561393857613937614a14565b5b600061394684828501613635565b91505092915050565b60006020828403121561396557613964614a14565b5b60006139738482850161364a565b91505092915050565b60006020828403121561399257613991614a14565b5b600082013567ffffffffffffffff8111156139b0576139af614a0f565b5b6139bc8482850161368d565b91505092915050565b600080604083850312156139dc576139db614a14565b5b600083013567ffffffffffffffff8111156139fa576139f9614a0f565b5b613a068582860161368d565b925050602083013567ffffffffffffffff811115613a2757613a26614a0f565b5b613a338582860161368d565b9150509250929050565b600060208284031215613a5357613a52614a14565b5b6000613a61848285016136bb565b91505092915050565b600060208284031215613a8057613a7f614a14565b5b6000613a8e848285016136d0565b91505092915050565b613aa08161473c565b82525050565b613aaf8161474e565b82525050565b6000613ac082614468565b613aca818561447e565b9350613ada8185602086016147d1565b613ae381614a19565b840191505092915050565b613af7816147b0565b82525050565b6000613b0882614473565b613b12818561449a565b9350613b228185602086016147d1565b613b2b81614a19565b840191505092915050565b6000613b4182614473565b613b4b81856144ab565b9350613b5b8185602086016147d1565b80840191505092915050565b6000613b74600d8361449a565b9150613b7f82614a37565b602082019050919050565b6000613b97602b8361449a565b9150613ba282614a60565b604082019050919050565b6000613bba60328361449a565b9150613bc582614aaf565b604082019050919050565b6000613bdd60268361449a565b9150613be882614afe565b604082019050919050565b6000613c0060258361449a565b9150613c0b82614b4d565b604082019050919050565b6000613c23601c8361449a565b9150613c2e82614b9c565b602082019050919050565b6000613c4660248361449a565b9150613c5182614bc5565b604082019050919050565b6000613c6960198361449a565b9150613c7482614c14565b602082019050919050565b6000613c8c6009836144ab565b9150613c9782614c3d565b600982019050919050565b6000613caf60068361449a565b9150613cba82614c66565b602082019050919050565b6000613cd260298361449a565b9150613cdd82614c8f565b604082019050919050565b6000613cf560038361449a565b9150613d0082614cde565b602082019050919050565b6000613d186009836144ab565b9150613d2382614d07565b600982019050919050565b6000613d3b603e8361449a565b9150613d4682614d30565b604082019050919050565b6000613d5e60208361449a565b9150613d6982614d7f565b602082019050919050565b6000613d816009836144ab565b9150613d8c82614da8565b600982019050919050565b6000613da460208361449a565b9150613daf82614dd1565b602082019050919050565b6000613dc760188361449a565b9150613dd282614dfa565b602082019050919050565b6000613dea60218361449a565b9150613df582614e23565b604082019050919050565b6000613e0d60008361448f565b9150613e1882614e72565b600082019050919050565b6000613e3060038361449a565b9150613e3b82614e75565b602082019050919050565b6000613e5360108361449a565b9150613e5e82614e9e565b602082019050919050565b6000613e7660078361449a565b9150613e8182614ec7565b602082019050919050565b6000613e99602c8361449a565b9150613ea482614ef0565b604082019050919050565b6000613ebc602e8361449a565b9150613ec782614f3f565b604082019050919050565b6000613edf600b836144ab565b9150613eea82614f8e565b600b82019050919050565b6000613f0260078361449a565b9150613f0d82614fb7565b602082019050919050565b613f21816147a6565b82525050565b6000613f338284613b36565b915081905092915050565b6000613f4a8285613b36565b9150613f568284613b36565b91508190509392505050565b6000613f6d82613c7f565b9150819050919050565b6000613f8282613d0b565b9150819050919050565b6000613f9782613d74565b9150819050919050565b6000613fac82613e00565b9150819050919050565b6000613fc182613ed2565b9150819050919050565b6000602082019050613fe06000830184613a97565b92915050565b6000606082019050613ffb6000830186613a97565b6140086020830185613a97565b6140156040830184613aee565b949350505050565b60006060820190506140326000830186613a97565b61403f6020830185613a97565b61404c6040830184613f18565b949350505050565b60006080820190506140696000830187613a97565b6140766020830186613a97565b6140836040830185613f18565b81810360608301526140958184613ab5565b905095945050505050565b60006040820190506140b56000830185613a97565b6140c26020830184613f18565b9392505050565b60006020820190506140de6000830184613aa6565b92915050565b600060208201905081810360008301526140fe8184613afd565b905092915050565b6000602082019050818103600083015261411f81613b67565b9050919050565b6000602082019050818103600083015261413f81613b8a565b9050919050565b6000602082019050818103600083015261415f81613bad565b9050919050565b6000602082019050818103600083015261417f81613bd0565b9050919050565b6000602082019050818103600083015261419f81613bf3565b9050919050565b600060208201905081810360008301526141bf81613c16565b9050919050565b600060208201905081810360008301526141df81613c39565b9050919050565b600060208201905081810360008301526141ff81613c5c565b9050919050565b6000602082019050818103600083015261421f81613ca2565b9050919050565b6000602082019050818103600083015261423f81613cc5565b9050919050565b6000602082019050818103600083015261425f81613ce8565b9050919050565b6000602082019050818103600083015261427f81613d2e565b9050919050565b6000602082019050818103600083015261429f81613d51565b9050919050565b600060208201905081810360008301526142bf81613d97565b9050919050565b600060208201905081810360008301526142df81613dba565b9050919050565b600060208201905081810360008301526142ff81613ddd565b9050919050565b6000602082019050818103600083015261431f81613e23565b9050919050565b6000602082019050818103600083015261433f81613e46565b9050919050565b6000602082019050818103600083015261435f81613e69565b9050919050565b6000602082019050818103600083015261437f81613e8c565b9050919050565b6000602082019050818103600083015261439f81613eaf565b9050919050565b600060208201905081810360008301526143bf81613ef5565b9050919050565b60006020820190506143db6000830184613f18565b92915050565b60006143eb6143fc565b90506143f78282614836565b919050565b6000604051905090565b600067ffffffffffffffff821115614421576144206149cc565b5b61442a82614a19565b9050602081019050919050565b600067ffffffffffffffff821115614452576144516149cc565b5b61445b82614a19565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006144c1826147a6565b91506144cc836147a6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614501576145006148e1565b5b828201905092915050565b6000614517826147a6565b9150614522836147a6565b92508261453257614531614910565b5b828204905092915050565b6000808291508390505b600185111561458757808604811115614563576145626148e1565b5b60018516156145725780820291505b808102905061458085614a2a565b9450614547565b94509492505050565b600061459b826147a6565b91506145a6836147a6565b92506145d37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846145db565b905092915050565b6000826145eb57600190506146a7565b816145f957600090506146a7565b816001811461460f576002811461461957614648565b60019150506146a7565b60ff84111561462b5761462a6148e1565b5b8360020a915084821115614642576146416148e1565b5b506146a7565b5060208310610133831016604e8410600b841016171561467d5782820a905083811115614678576146776148e1565b5b6146a7565b61468a848484600161453d565b925090508184048111156146a1576146a06148e1565b5b81810290505b9392505050565b60006146b9826147a6565b91506146c4836147a6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146fd576146fc6148e1565b5b828202905092915050565b6000614713826147a6565b915061471e836147a6565b925082821015614731576147306148e1565b5b828203905092915050565b600061474782614786565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006147bb826147a6565b9050919050565b82818337600083830152505050565b60005b838110156147ef5780820151818401526020810190506147d4565b838111156147fe576000848401525b50505050565b6000600282049050600182168061481c57607f821691505b602082108114156148305761482f61493f565b5b50919050565b61483f82614a19565b810181811067ffffffffffffffff8211171561485e5761485d6149cc565b5b80604052505050565b6000614872826147a6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156148a5576148a46148e1565b5b600182019050919050565b60006148bb826147a6565b91506148c6836147a6565b9250826148d6576148d5614910565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f4e6f742057686974656c69737400000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f6d696e7450726963650000000000000000000000000000000000000000000000600082015250565b7f46726f7a656e0000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4e53460000000000000000000000000000000000000000000000000000000000600082015250565b7f6d696e744c696d69740000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f7368696250726963650000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f534e410000000000000000000000000000000000000000000000000000000000600082015250565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f517479204f757400000000000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f636f6e7472616374557269000000000000000000000000000000000000000000600082015250565b7f696e76616c696400000000000000000000000000000000000000000000000000600082015250565b614fe98161473c565b8114614ff457600080fd5b50565b6150008161474e565b811461500b57600080fd5b50565b6150178161475a565b811461502257600080fd5b50565b61502e816147a6565b811461503957600080fd5b5056fea2646970667358221220267834cbdaba8f6285c97d400ae7468783c7ee007c137e382ee09e0fc3ed7f1b64736f6c63430008070033

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.