ETH Price: $2,604.43 (+0.04%)
Gas: 3 Gwei

Token

Rider Ape Mountain Club (RAMC)
 

Overview

Max Total Supply

183 RAMC

Holders

70

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 RAMC
0x393a919bec9efdacff82a3f7283d00b678da691c
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:
RAMC

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

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

pragma solidity >=0.7.0 <0.9.0;

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

contract RAMC is ERC721, Ownable {
    using Strings for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private supply;

    string public uriPrefix = "";
    string public uriSuffix = ".json";
    string public hiddenMetadataUri;

    uint256 public cost = 0.04 ether;
    uint256 public maxSupply = 3000;
    uint256 public maxMintAmountPerTx = 5;

    address internal __walletTreasury; // Address of the treasury wallet
    address internal __walletSignature; // Address of the treasury wallet
    bool public mainSale = false; // Main Sale is disabled by default
    bool public paused = true;
    bool public revealed = false;

    constructor(address walletTreasury_, address walletSignature_) ERC721("Rider Ape Mountain Club", "RAMC") {
        __walletTreasury = walletTreasury_;
        __walletSignature = walletSignature_;
        setHiddenMetadataUri("https://gateway.pinata.cloud/ipfs/QmV2MCwZx9p8f1Drjx1KjQPNXZtsmti1zqrUEKfzSjfWBA");
    }

    modifier mintCompliance(uint256 _mintAmount) {
        require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
        require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
        _;
    }

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

    function mint(uint256 _mintAmount,bytes memory signature) public payable mintCompliance(_mintAmount) {
        require(!paused, "The contract is paused!");
        require(msg.value >= cost * _mintAmount, "Insufficient funds!");
        if(!mainSale){
            require(verify(signature, msg.sender), "wallet is not whitelisted");
        }
        _mintLoop(msg.sender, _mintAmount);

    }

    function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
        _mintLoop(_receiver, _mintAmount);
    }

    function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
            address currentTokenOwner = ownerOf(currentTokenId);

            if (currentTokenOwner == _owner) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;

                ownedTokenIndex++;
            }

            currentTokenId++;
        }

        return ownedTokenIds;
    }

    function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
    {
        require(
            _exists(_tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        if (revealed == false) {
            return hiddenMetadataUri;
        }

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

    function setRevealed(bool _state) public onlyOwner {
        revealed = _state;
    }

    function setCost(uint256 _cost) public onlyOwner {
        cost = _cost;
    }

    function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
        maxMintAmountPerTx = _maxMintAmountPerTx;
    }

    function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
        hiddenMetadataUri = _hiddenMetadataUri;
    }

    function setUriPrefix(string memory _uriPrefix) public onlyOwner {
        uriPrefix = _uriPrefix;
    }

    function setUriSuffix(string memory _uriSuffix) public onlyOwner {
        uriSuffix = _uriSuffix;
    }

    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }

    function updateMainSaleStatus(bool _mainSale) public onlyOwner {
        mainSale = _mainSale;
    }

    function withdraw() public onlyOwner {

        // This will transfer the remaining contract balance to the owner.
        // Do not remove this otherwise you will not be able to withdraw the funds.
        // =============================================================================
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
        // =============================================================================
    }

    function _mintLoop(address _receiver, uint256 _mintAmount) internal {
        for (uint256 i = 0; i < _mintAmount; i++) {
            supply.increment();
            _safeMint(_receiver, supply.current());
        }
    }

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

    /**
   * Verify if the signature is legit
   * @param signature The signature to verify
    * @param target The target address to find
    **/
    function verify(bytes memory signature, address target) public view returns (bool) {
        uint8 v;
        bytes32 r;
        bytes32 s;
        (v, r, s) = splitSignature(signature);
        bytes32 senderHash = keccak256(abi.encodePacked(target));

        //return (owner() == address(ecrecover(senderHash, v, r, s)));
        return (__walletSignature == address(ecrecover(senderHash, v, r, s)));
    }

    /**
    * Split the signature to verify
    * @param signature The signature to verify
    **/
    function splitSignature(bytes memory signature) public pure returns (uint8, bytes32, bytes32) {
        require(signature.length == 65);

        bytes32 r;
        bytes32 s;
        uint8 v;
        assembly {
        // first 32 bytes, after the length prefix
            r := mload(add(signature, 32))
        // second 32 bytes
            s := mload(add(signature, 64))
        // final byte (first byte of the next 32 bytes)
            v := byte(0, mload(add(signature, 96)))
        }
        return (v, r, s);
    }

    /**
    * Set the new wallet treasury
    * @param _wallet The eth address
    **/
    function setWalletTreasury(address _wallet) external onlyOwner {
        __walletTreasury = _wallet;
    }

    /**
    * Set the new wallet signature
    * @param _wallet The eth address
    **/
    function setWalletSignature(address _wallet) external onlyOwner {
        __walletSignature = _wallet;
    }
}

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

File 3 of 12 : 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 4 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"walletTreasury_","type":"address"},{"internalType":"address","name":"walletSignature_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mainSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"setWalletSignature","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"setWalletTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"splitSignature","outputs":[{"internalType":"uint8","name":"","type":"uint8"},{"internalType":"bytes32","name":"","type":"bytes32"},{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_mainSale","type":"bool"}],"name":"updateMainSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"address","name":"target","type":"address"}],"name":"verify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600890805190602001906200002b9291906200042b565b506040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060099080519060200190620000799291906200042b565b50668e1bc9bf040000600b55610bb8600c556005600d556000600f60146101000a81548160ff0219169083151502179055506001600f60156101000a81548160ff0219169083151502179055506000600f60166101000a81548160ff021916908315150217905550348015620000ee57600080fd5b5060405162004ef438038062004ef48339818101604052810190620001149190620004f2565b6040518060400160405280601781526020017f526964657220417065204d6f756e7461696e20436c75620000000000000000008152506040518060400160405280600481526020017f52414d43000000000000000000000000000000000000000000000000000000008152508160009080519060200190620001989291906200042b565b508060019080519060200190620001b19291906200042b565b505050620001d4620001c86200028860201b60201c565b6200029060201b60201c565b81600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200028060405180608001604052806050815260200162004ea4605091396200035660201b60201c565b50506200065b565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003666200028860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200038c6200040160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003e5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003dc9062000575565b60405180910390fd5b80600a9080519060200190620003fd9291906200042b565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200043990620005dc565b90600052602060002090601f0160209004810192826200045d5760008555620004a9565b82601f106200047857805160ff1916838001178555620004a9565b82800160010185558215620004a9579182015b82811115620004a85782518255916020019190600101906200048b565b5b509050620004b89190620004bc565b5090565b5b80821115620004d7576000816000905550600101620004bd565b5090565b600081519050620004ec8162000641565b92915050565b600080604083850312156200050657600080fd5b60006200051685828601620004db565b92505060206200052985828601620004db565b9150509250929050565b60006200054260208362000597565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006020820190508181036000830152620005908162000533565b9050919050565b600082825260208201905092915050565b6000620005b582620005bc565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006002820490506001821680620005f557607f821691505b602082108114156200060c576200060b62000612565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6200064c81620005a8565b81146200065857600080fd5b50565b614839806200066b6000396000f3fe6080604052600436106102515760003560e01c806365bc6c1311610139578063b071401b116100b6578063db7fd4081161007a578063db7fd408146108b2578063e0a80853146108ce578063e2e13e60146108f7578063e985e9c514610920578063efbd73f41461095d578063f2fde38b1461098657610251565b8063b071401b146107cf578063b88d4fde146107f8578063c1d7ae3114610821578063c87b56dd1461084a578063d5abeb011461088757610251565b806394354fd0116100fd57806394354fd0146106e657806395d89b4114610711578063a22cb4651461073c578063a45ba8e714610765578063a7bb58031461079057610251565b806365bc6c131461061557806370a082311461063e578063715018a61461067b5780637ec4a659146106925780638da5cb5b146106bb57610251565b80633d3ac1b5116101d2578063518302271161019657806351830227146105015780635503a0e81461052c5780635c975abb1461055757806360cfd3591461058257806362b99ad4146105ad5780636352211e146105d857610251565b80633d3ac1b51461040c57806342842e0e14610449578063438b63001461047257806344a0d68a146104af5780634fdd43cb146104d857610251565b806316ba10e01161021957806316ba10e01461034f57806316c38b3c1461037857806318160ddd146103a157806323b872dd146103cc5780633ccfd60b146103f557610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806313faede614610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613384565b6109af565b60405161028a9190613f7a565b60405180910390f35b34801561029f57600080fd5b506102a8610a91565b6040516102b59190613fda565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e091906134ac565b610b23565b6040516102f29190613ef1565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d919061331f565b610ba8565b005b34801561033057600080fd5b50610339610cc0565b604051610346919061429c565b60405180910390f35b34801561035b57600080fd5b506103766004803603810190610371919061346b565b610cc6565b005b34801561038457600080fd5b5061039f600480360381019061039a919061335b565b610d5c565b005b3480156103ad57600080fd5b506103b6610df5565b6040516103c3919061429c565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee9190613219565b610e06565b005b34801561040157600080fd5b5061040a610e66565b005b34801561041857600080fd5b50610433600480360381019061042e9190613417565b610f62565b6040516104409190613f7a565b60405180910390f35b34801561045557600080fd5b50610470600480360381019061046b9190613219565b611053565b005b34801561047e57600080fd5b50610499600480360381019061049491906131b4565b611073565b6040516104a69190613f58565b60405180910390f35b3480156104bb57600080fd5b506104d660048036038101906104d191906134ac565b6111ca565b005b3480156104e457600080fd5b506104ff60048036038101906104fa919061346b565b611250565b005b34801561050d57600080fd5b506105166112e6565b6040516105239190613f7a565b60405180910390f35b34801561053857600080fd5b506105416112f9565b60405161054e9190613fda565b60405180910390f35b34801561056357600080fd5b5061056c611387565b6040516105799190613f7a565b60405180910390f35b34801561058e57600080fd5b5061059761139a565b6040516105a49190613f7a565b60405180910390f35b3480156105b957600080fd5b506105c26113ad565b6040516105cf9190613fda565b60405180910390f35b3480156105e457600080fd5b506105ff60048036038101906105fa91906134ac565b61143b565b60405161060c9190613ef1565b60405180910390f35b34801561062157600080fd5b5061063c600480360381019061063791906131b4565b6114ed565b005b34801561064a57600080fd5b50610665600480360381019061066091906131b4565b6115ad565b604051610672919061429c565b60405180910390f35b34801561068757600080fd5b50610690611665565b005b34801561069e57600080fd5b506106b960048036038101906106b4919061346b565b6116ed565b005b3480156106c757600080fd5b506106d0611783565b6040516106dd9190613ef1565b60405180910390f35b3480156106f257600080fd5b506106fb6117ad565b604051610708919061429c565b60405180910390f35b34801561071d57600080fd5b506107266117b3565b6040516107339190613fda565b60405180910390f35b34801561074857600080fd5b50610763600480360381019061075e91906132e3565b611845565b005b34801561077157600080fd5b5061077a61185b565b6040516107879190613fda565b60405180910390f35b34801561079c57600080fd5b506107b760048036038101906107b291906133d6565b6118e9565b6040516107c6939291906142b7565b60405180910390f35b3480156107db57600080fd5b506107f660048036038101906107f191906134ac565b61192c565b005b34801561080457600080fd5b5061081f600480360381019061081a9190613268565b6119b2565b005b34801561082d57600080fd5b506108486004803603810190610843919061335b565b611a14565b005b34801561085657600080fd5b50610871600480360381019061086c91906134ac565b611aad565b60405161087e9190613fda565b60405180910390f35b34801561089357600080fd5b5061089c611c06565b6040516108a9919061429c565b60405180910390f35b6108cc60048036038101906108c79190613511565b611c0c565b005b3480156108da57600080fd5b506108f560048036038101906108f0919061335b565b611dc4565b005b34801561090357600080fd5b5061091e600480360381019061091991906131b4565b611e5d565b005b34801561092c57600080fd5b50610947600480360381019061094291906131dd565b611f1d565b6040516109549190613f7a565b60405180910390f35b34801561096957600080fd5b50610984600480360381019061097f91906134d5565b611fb1565b005b34801561099257600080fd5b506109ad60048036038101906109a891906131b4565b6120e7565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a7a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a8a5750610a89826121df565b5b9050919050565b606060008054610aa0906145fd565b80601f0160208091040260200160405190810160405280929190818152602001828054610acc906145fd565b8015610b195780601f10610aee57610100808354040283529160200191610b19565b820191906000526020600020905b815481529060010190602001808311610afc57829003601f168201915b5050505050905090565b6000610b2e82612249565b610b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b649061417c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bb38261143b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1b9061421c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c436122b5565b73ffffffffffffffffffffffffffffffffffffffff161480610c725750610c7181610c6c6122b5565b611f1d565b5b610cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca8906140fc565b60405180910390fd5b610cbb83836122bd565b505050565b600b5481565b610cce6122b5565b73ffffffffffffffffffffffffffffffffffffffff16610cec611783565b73ffffffffffffffffffffffffffffffffffffffff1614610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d399061419c565b60405180910390fd5b8060099080519060200190610d58929190612fd8565b5050565b610d646122b5565b73ffffffffffffffffffffffffffffffffffffffff16610d82611783565b73ffffffffffffffffffffffffffffffffffffffff1614610dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcf9061419c565b60405180910390fd5b80600f60156101000a81548160ff02191690831515021790555050565b6000610e016007612376565b905090565b610e17610e116122b5565b82612384565b610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d9061425c565b60405180910390fd5b610e61838383612462565b505050565b610e6e6122b5565b73ffffffffffffffffffffffffffffffffffffffff16610e8c611783565b73ffffffffffffffffffffffffffffffffffffffff1614610ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed99061419c565b60405180910390fd5b6000610eec611783565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f0f90613edc565b60006040518083038185875af1925050503d8060008114610f4c576040519150601f19603f3d011682016040523d82523d6000602084013e610f51565b606091505b5050905080610f5f57600080fd5b50565b600080600080610f71866118e9565b809350819450829550505050600085604051602001610f909190613e90565b60405160208183030381529060405280519060200120905060018185858560405160008152602001604052604051610fcb9493929190613f95565b6020604051602081039080840390855afa158015610fed573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161494505050505092915050565b61106e838383604051806020016040528060008152506119b2565b505050565b60606000611080836115ad565b905060008167ffffffffffffffff8111156110c4577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156110f25781602001602082028036833780820191505090505b50905060006001905060005b838110801561110f5750600c548211155b156111be57600061111f8361143b565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111aa578284838151811061118f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505081806111a69061462f565b9250505b82806111b59061462f565b935050506110fe565b82945050505050919050565b6111d26122b5565b73ffffffffffffffffffffffffffffffffffffffff166111f0611783565b73ffffffffffffffffffffffffffffffffffffffff1614611246576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123d9061419c565b60405180910390fd5b80600b8190555050565b6112586122b5565b73ffffffffffffffffffffffffffffffffffffffff16611276611783565b73ffffffffffffffffffffffffffffffffffffffff16146112cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c39061419c565b60405180910390fd5b80600a90805190602001906112e2929190612fd8565b5050565b600f60169054906101000a900460ff1681565b60098054611306906145fd565b80601f0160208091040260200160405190810160405280929190818152602001828054611332906145fd565b801561137f5780601f106113545761010080835404028352916020019161137f565b820191906000526020600020905b81548152906001019060200180831161136257829003601f168201915b505050505081565b600f60159054906101000a900460ff1681565b600f60149054906101000a900460ff1681565b600880546113ba906145fd565b80601f01602080910402602001604051908101604052809291908181526020018280546113e6906145fd565b80156114335780601f1061140857610100808354040283529160200191611433565b820191906000526020600020905b81548152906001019060200180831161141657829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114db9061413c565b60405180910390fd5b80915050919050565b6114f56122b5565b73ffffffffffffffffffffffffffffffffffffffff16611513611783565b73ffffffffffffffffffffffffffffffffffffffff1614611569576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115609061419c565b60405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561161e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116159061411c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61166d6122b5565b73ffffffffffffffffffffffffffffffffffffffff1661168b611783565b73ffffffffffffffffffffffffffffffffffffffff16146116e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d89061419c565b60405180910390fd5b6116eb60006126be565b565b6116f56122b5565b73ffffffffffffffffffffffffffffffffffffffff16611713611783565b73ffffffffffffffffffffffffffffffffffffffff1614611769576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117609061419c565b60405180910390fd5b806008908051906020019061177f929190612fd8565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b6060600180546117c2906145fd565b80601f01602080910402602001604051908101604052809291908181526020018280546117ee906145fd565b801561183b5780601f106118105761010080835404028352916020019161183b565b820191906000526020600020905b81548152906001019060200180831161181e57829003601f168201915b5050505050905090565b6118576118506122b5565b8383612784565b5050565b600a8054611868906145fd565b80601f0160208091040260200160405190810160405280929190818152602001828054611894906145fd565b80156118e15780601f106118b6576101008083540402835291602001916118e1565b820191906000526020600020905b8154815290600101906020018083116118c457829003601f168201915b505050505081565b600080600060418451146118fc57600080fd5b60008060006020870151925060408701519150606087015160001a90508083839550955095505050509193909250565b6119346122b5565b73ffffffffffffffffffffffffffffffffffffffff16611952611783565b73ffffffffffffffffffffffffffffffffffffffff16146119a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199f9061419c565b60405180910390fd5b80600d8190555050565b6119c36119bd6122b5565b83612384565b611a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f99061425c565b60405180910390fd5b611a0e848484846128f1565b50505050565b611a1c6122b5565b73ffffffffffffffffffffffffffffffffffffffff16611a3a611783565b73ffffffffffffffffffffffffffffffffffffffff1614611a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a879061419c565b60405180910390fd5b80600f60146101000a81548160ff02191690831515021790555050565b6060611ab882612249565b611af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aee906141fc565b60405180910390fd5b60001515600f60169054906101000a900460ff1615151415611ba557600a8054611b20906145fd565b80601f0160208091040260200160405190810160405280929190818152602001828054611b4c906145fd565b8015611b995780601f10611b6e57610100808354040283529160200191611b99565b820191906000526020600020905b815481529060010190602001808311611b7c57829003601f168201915b50505050509050611c01565b6000611baf61294d565b90506000815111611bcf5760405180602001604052806000815250611bfd565b80611bd9846129df565b6009604051602001611bed93929190613eab565b6040516020818303038152906040525b9150505b919050565b600c5481565b81600081118015611c1f5750600d548111155b611c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c559061405c565b60405180910390fd5b600c5481611c6c6007612376565b611c76919061441b565b1115611cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cae9061423c565b60405180910390fd5b600f60159054906101000a900460ff1615611d07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfe906141bc565b60405180910390fd5b82600b54611d1591906144a2565b341015611d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4e9061427c565b60405180910390fd5b600f60149054906101000a900460ff16611db557611d758233610f62565b611db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dab906140dc565b60405180910390fd5b5b611dbf3384612b8c565b505050565b611dcc6122b5565b73ffffffffffffffffffffffffffffffffffffffff16611dea611783565b73ffffffffffffffffffffffffffffffffffffffff1614611e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e379061419c565b60405180910390fd5b80600f60166101000a81548160ff02191690831515021790555050565b611e656122b5565b73ffffffffffffffffffffffffffffffffffffffff16611e83611783565b73ffffffffffffffffffffffffffffffffffffffff1614611ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed09061419c565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611fc45750600d548111155b612003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffa9061405c565b60405180910390fd5b600c54816120116007612376565b61201b919061441b565b111561205c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120539061423c565b60405180910390fd5b6120646122b5565b73ffffffffffffffffffffffffffffffffffffffff16612082611783565b73ffffffffffffffffffffffffffffffffffffffff16146120d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cf9061419c565b60405180910390fd5b6120e28284612b8c565b505050565b6120ef6122b5565b73ffffffffffffffffffffffffffffffffffffffff1661210d611783565b73ffffffffffffffffffffffffffffffffffffffff1614612163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215a9061419c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ca9061401c565b60405180910390fd5b6121dc816126be565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166123308361143b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600061238f82612249565b6123ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c5906140bc565b60405180910390fd5b60006123d98361143b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061244857508373ffffffffffffffffffffffffffffffffffffffff1661243084610b23565b73ffffffffffffffffffffffffffffffffffffffff16145b8061245957506124588185611f1d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166124828261143b565b73ffffffffffffffffffffffffffffffffffffffff16146124d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cf906141dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253f9061407c565b60405180910390fd5b612553838383612bcc565b61255e6000826122bd565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125ae91906144fc565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612605919061441b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ea9061409c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516128e49190613f7a565b60405180910390a3505050565b6128fc848484612462565b61290884848484612bd1565b612947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293e90613ffc565b60405180910390fd5b50505050565b60606008805461295c906145fd565b80601f0160208091040260200160405190810160405280929190818152602001828054612988906145fd565b80156129d55780601f106129aa576101008083540402835291602001916129d5565b820191906000526020600020905b8154815290600101906020018083116129b857829003601f168201915b5050505050905090565b60606000821415612a27576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b87565b600082905060005b60008214612a59578080612a429061462f565b915050600a82612a529190614471565b9150612a2f565b60008167ffffffffffffffff811115612a9b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612acd5781602001600182028036833780820191505090505b5090505b60008514612b8057600182612ae691906144fc565b9150600a85612af5919061469c565b6030612b01919061441b565b60f81b818381518110612b3d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b799190614471565b9450612ad1565b8093505050505b919050565b60005b81811015612bc757612ba16007612d68565b612bb483612baf6007612376565b612d7e565b8080612bbf9061462f565b915050612b8f565b505050565b505050565b6000612bf28473ffffffffffffffffffffffffffffffffffffffff16612d9c565b15612d5b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c1b6122b5565b8786866040518563ffffffff1660e01b8152600401612c3d9493929190613f0c565b602060405180830381600087803b158015612c5757600080fd5b505af1925050508015612c8857506040513d601f19601f82011682018060405250810190612c8591906133ad565b60015b612d0b573d8060008114612cb8576040519150601f19603f3d011682016040523d82523d6000602084013e612cbd565b606091505b50600081511415612d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cfa90613ffc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d60565b600190505b949350505050565b6001816000016000828254019250508190555050565b612d98828260405180602001604052806000815250612daf565b5050565b600080823b905060008111915050919050565b612db98383612e0a565b612dc66000848484612bd1565b612e05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dfc90613ffc565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e719061415c565b60405180910390fd5b612e8381612249565b15612ec3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eba9061403c565b60405180910390fd5b612ecf60008383612bcc565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f1f919061441b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612fe4906145fd565b90600052602060002090601f016020900481019282613006576000855561304d565b82601f1061301f57805160ff191683800117855561304d565b8280016001018555821561304d579182015b8281111561304c578251825591602001919060010190613031565b5b50905061305a919061305e565b5090565b5b8082111561307757600081600090555060010161305f565b5090565b600061308e6130898461431f565b6142ee565b9050828152602081018484840111156130a657600080fd5b6130b18482856145bb565b509392505050565b60006130cc6130c78461434f565b6142ee565b9050828152602081018484840111156130e457600080fd5b6130ef8482856145bb565b509392505050565b600081359050613106816147a7565b92915050565b60008135905061311b816147be565b92915050565b600081359050613130816147d5565b92915050565b600081519050613145816147d5565b92915050565b600082601f83011261315c57600080fd5b813561316c84826020860161307b565b91505092915050565b600082601f83011261318657600080fd5b81356131968482602086016130b9565b91505092915050565b6000813590506131ae816147ec565b92915050565b6000602082840312156131c657600080fd5b60006131d4848285016130f7565b91505092915050565b600080604083850312156131f057600080fd5b60006131fe858286016130f7565b925050602061320f858286016130f7565b9150509250929050565b60008060006060848603121561322e57600080fd5b600061323c868287016130f7565b935050602061324d868287016130f7565b925050604061325e8682870161319f565b9150509250925092565b6000806000806080858703121561327e57600080fd5b600061328c878288016130f7565b945050602061329d878288016130f7565b93505060406132ae8782880161319f565b925050606085013567ffffffffffffffff8111156132cb57600080fd5b6132d78782880161314b565b91505092959194509250565b600080604083850312156132f657600080fd5b6000613304858286016130f7565b92505060206133158582860161310c565b9150509250929050565b6000806040838503121561333257600080fd5b6000613340858286016130f7565b92505060206133518582860161319f565b9150509250929050565b60006020828403121561336d57600080fd5b600061337b8482850161310c565b91505092915050565b60006020828403121561339657600080fd5b60006133a484828501613121565b91505092915050565b6000602082840312156133bf57600080fd5b60006133cd84828501613136565b91505092915050565b6000602082840312156133e857600080fd5b600082013567ffffffffffffffff81111561340257600080fd5b61340e8482850161314b565b91505092915050565b6000806040838503121561342a57600080fd5b600083013567ffffffffffffffff81111561344457600080fd5b6134508582860161314b565b9250506020613461858286016130f7565b9150509250929050565b60006020828403121561347d57600080fd5b600082013567ffffffffffffffff81111561349757600080fd5b6134a384828501613175565b91505092915050565b6000602082840312156134be57600080fd5b60006134cc8482850161319f565b91505092915050565b600080604083850312156134e857600080fd5b60006134f68582860161319f565b9250506020613507858286016130f7565b9150509250929050565b6000806040838503121561352457600080fd5b60006135328582860161319f565b925050602083013567ffffffffffffffff81111561354f57600080fd5b61355b8582860161314b565b9150509250929050565b60006135718383613e63565b60208301905092915050565b61358681614530565b82525050565b61359d61359882614530565b614678565b82525050565b60006135ae826143a4565b6135b881856143d2565b93506135c38361437f565b8060005b838110156135f45781516135db8882613565565b97506135e6836143c5565b9250506001810190506135c7565b5085935050505092915050565b61360a81614542565b82525050565b6136198161454e565b82525050565b600061362a826143af565b61363481856143e3565b93506136448185602086016145ca565b61364d81614789565b840191505092915050565b6000613663826143ba565b61366d81856143ff565b935061367d8185602086016145ca565b61368681614789565b840191505092915050565b600061369c826143ba565b6136a68185614410565b93506136b68185602086016145ca565b80840191505092915050565b600081546136cf816145fd565b6136d98186614410565b945060018216600081146136f4576001811461370557613738565b60ff19831686528186019350613738565b61370e8561438f565b60005b8381101561373057815481890152600182019150602081019050613711565b838801955050505b50505092915050565b600061374e6032836143ff565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006137b46026836143ff565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061381a601c836143ff565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061385a6014836143ff565b91507f496e76616c6964206d696e7420616d6f756e74210000000000000000000000006000830152602082019050919050565b600061389a6024836143ff565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006139006019836143ff565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613940602c836143ff565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006139a66019836143ff565b91507f77616c6c6574206973206e6f742077686974656c6973746564000000000000006000830152602082019050919050565b60006139e66038836143ff565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613a4c602a836143ff565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ab26029836143ff565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b186020836143ff565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613b58602c836143ff565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613bbe6020836143ff565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613bfe6017836143ff565b91507f54686520636f6e747261637420697320706175736564210000000000000000006000830152602082019050919050565b6000613c3e6029836143ff565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ca4602f836143ff565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613d0a6021836143ff565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d706000836143f4565b9150600082019050919050565b6000613d8a6014836143ff565b91507f4d617820737570706c79206578636565646564210000000000000000000000006000830152602082019050919050565b6000613dca6031836143ff565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613e306013836143ff565b91507f496e73756666696369656e742066756e647321000000000000000000000000006000830152602082019050919050565b613e6c816145a4565b82525050565b613e7b816145a4565b82525050565b613e8a816145ae565b82525050565b6000613e9c828461358c565b60148201915081905092915050565b6000613eb78286613691565b9150613ec38285613691565b9150613ecf82846136c2565b9150819050949350505050565b6000613ee782613d63565b9150819050919050565b6000602082019050613f06600083018461357d565b92915050565b6000608082019050613f21600083018761357d565b613f2e602083018661357d565b613f3b6040830185613e72565b8181036060830152613f4d818461361f565b905095945050505050565b60006020820190508181036000830152613f7281846135a3565b905092915050565b6000602082019050613f8f6000830184613601565b92915050565b6000608082019050613faa6000830187613610565b613fb76020830186613e81565b613fc46040830185613610565b613fd16060830184613610565b95945050505050565b60006020820190508181036000830152613ff48184613658565b905092915050565b6000602082019050818103600083015261401581613741565b9050919050565b60006020820190508181036000830152614035816137a7565b9050919050565b600060208201905081810360008301526140558161380d565b9050919050565b600060208201905081810360008301526140758161384d565b9050919050565b600060208201905081810360008301526140958161388d565b9050919050565b600060208201905081810360008301526140b5816138f3565b9050919050565b600060208201905081810360008301526140d581613933565b9050919050565b600060208201905081810360008301526140f581613999565b9050919050565b60006020820190508181036000830152614115816139d9565b9050919050565b6000602082019050818103600083015261413581613a3f565b9050919050565b6000602082019050818103600083015261415581613aa5565b9050919050565b6000602082019050818103600083015261417581613b0b565b9050919050565b6000602082019050818103600083015261419581613b4b565b9050919050565b600060208201905081810360008301526141b581613bb1565b9050919050565b600060208201905081810360008301526141d581613bf1565b9050919050565b600060208201905081810360008301526141f581613c31565b9050919050565b6000602082019050818103600083015261421581613c97565b9050919050565b6000602082019050818103600083015261423581613cfd565b9050919050565b6000602082019050818103600083015261425581613d7d565b9050919050565b6000602082019050818103600083015261427581613dbd565b9050919050565b6000602082019050818103600083015261429581613e23565b9050919050565b60006020820190506142b16000830184613e72565b92915050565b60006060820190506142cc6000830186613e81565b6142d96020830185613610565b6142e66040830184613610565b949350505050565b6000604051905081810181811067ffffffffffffffff821117156143155761431461475a565b5b8060405250919050565b600067ffffffffffffffff82111561433a5761433961475a565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561436a5761436961475a565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614426826145a4565b9150614431836145a4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614466576144656146cd565b5b828201905092915050565b600061447c826145a4565b9150614487836145a4565b925082614497576144966146fc565b5b828204905092915050565b60006144ad826145a4565b91506144b8836145a4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144f1576144f06146cd565b5b828202905092915050565b6000614507826145a4565b9150614512836145a4565b925082821015614525576145246146cd565b5b828203905092915050565b600061453b82614584565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156145e85780820151818401526020810190506145cd565b838111156145f7576000848401525b50505050565b6000600282049050600182168061461557607f821691505b602082108114156146295761462861472b565b5b50919050565b600061463a826145a4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561466d5761466c6146cd565b5b600182019050919050565b60006146838261468a565b9050919050565b60006146958261479a565b9050919050565b60006146a7826145a4565b91506146b2836145a4565b9250826146c2576146c16146fc565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b6147b081614530565b81146147bb57600080fd5b50565b6147c781614542565b81146147d257600080fd5b50565b6147de81614558565b81146147e957600080fd5b50565b6147f5816145a4565b811461480057600080fd5b5056fea26469706673582212202d7059a5c996aa2eba2677ca026b8b036790caadd0af25140893990e37e607f664736f6c6343000800003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d56324d43775a78397038663144726a78314b6a51504e585a74736d7469317a717255454b667a536a6657424100000000000000000000000074fd869522d835c1ceba5da3bfa83fd800711d220000000000000000000000006466aa0b119c02dac97f55cb7f6c10aa41c05f8f

Deployed Bytecode

0x6080604052600436106102515760003560e01c806365bc6c1311610139578063b071401b116100b6578063db7fd4081161007a578063db7fd408146108b2578063e0a80853146108ce578063e2e13e60146108f7578063e985e9c514610920578063efbd73f41461095d578063f2fde38b1461098657610251565b8063b071401b146107cf578063b88d4fde146107f8578063c1d7ae3114610821578063c87b56dd1461084a578063d5abeb011461088757610251565b806394354fd0116100fd57806394354fd0146106e657806395d89b4114610711578063a22cb4651461073c578063a45ba8e714610765578063a7bb58031461079057610251565b806365bc6c131461061557806370a082311461063e578063715018a61461067b5780637ec4a659146106925780638da5cb5b146106bb57610251565b80633d3ac1b5116101d2578063518302271161019657806351830227146105015780635503a0e81461052c5780635c975abb1461055757806360cfd3591461058257806362b99ad4146105ad5780636352211e146105d857610251565b80633d3ac1b51461040c57806342842e0e14610449578063438b63001461047257806344a0d68a146104af5780634fdd43cb146104d857610251565b806316ba10e01161021957806316ba10e01461034f57806316c38b3c1461037857806318160ddd146103a157806323b872dd146103cc5780633ccfd60b146103f557610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806313faede614610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613384565b6109af565b60405161028a9190613f7a565b60405180910390f35b34801561029f57600080fd5b506102a8610a91565b6040516102b59190613fda565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e091906134ac565b610b23565b6040516102f29190613ef1565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d919061331f565b610ba8565b005b34801561033057600080fd5b50610339610cc0565b604051610346919061429c565b60405180910390f35b34801561035b57600080fd5b506103766004803603810190610371919061346b565b610cc6565b005b34801561038457600080fd5b5061039f600480360381019061039a919061335b565b610d5c565b005b3480156103ad57600080fd5b506103b6610df5565b6040516103c3919061429c565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee9190613219565b610e06565b005b34801561040157600080fd5b5061040a610e66565b005b34801561041857600080fd5b50610433600480360381019061042e9190613417565b610f62565b6040516104409190613f7a565b60405180910390f35b34801561045557600080fd5b50610470600480360381019061046b9190613219565b611053565b005b34801561047e57600080fd5b50610499600480360381019061049491906131b4565b611073565b6040516104a69190613f58565b60405180910390f35b3480156104bb57600080fd5b506104d660048036038101906104d191906134ac565b6111ca565b005b3480156104e457600080fd5b506104ff60048036038101906104fa919061346b565b611250565b005b34801561050d57600080fd5b506105166112e6565b6040516105239190613f7a565b60405180910390f35b34801561053857600080fd5b506105416112f9565b60405161054e9190613fda565b60405180910390f35b34801561056357600080fd5b5061056c611387565b6040516105799190613f7a565b60405180910390f35b34801561058e57600080fd5b5061059761139a565b6040516105a49190613f7a565b60405180910390f35b3480156105b957600080fd5b506105c26113ad565b6040516105cf9190613fda565b60405180910390f35b3480156105e457600080fd5b506105ff60048036038101906105fa91906134ac565b61143b565b60405161060c9190613ef1565b60405180910390f35b34801561062157600080fd5b5061063c600480360381019061063791906131b4565b6114ed565b005b34801561064a57600080fd5b50610665600480360381019061066091906131b4565b6115ad565b604051610672919061429c565b60405180910390f35b34801561068757600080fd5b50610690611665565b005b34801561069e57600080fd5b506106b960048036038101906106b4919061346b565b6116ed565b005b3480156106c757600080fd5b506106d0611783565b6040516106dd9190613ef1565b60405180910390f35b3480156106f257600080fd5b506106fb6117ad565b604051610708919061429c565b60405180910390f35b34801561071d57600080fd5b506107266117b3565b6040516107339190613fda565b60405180910390f35b34801561074857600080fd5b50610763600480360381019061075e91906132e3565b611845565b005b34801561077157600080fd5b5061077a61185b565b6040516107879190613fda565b60405180910390f35b34801561079c57600080fd5b506107b760048036038101906107b291906133d6565b6118e9565b6040516107c6939291906142b7565b60405180910390f35b3480156107db57600080fd5b506107f660048036038101906107f191906134ac565b61192c565b005b34801561080457600080fd5b5061081f600480360381019061081a9190613268565b6119b2565b005b34801561082d57600080fd5b506108486004803603810190610843919061335b565b611a14565b005b34801561085657600080fd5b50610871600480360381019061086c91906134ac565b611aad565b60405161087e9190613fda565b60405180910390f35b34801561089357600080fd5b5061089c611c06565b6040516108a9919061429c565b60405180910390f35b6108cc60048036038101906108c79190613511565b611c0c565b005b3480156108da57600080fd5b506108f560048036038101906108f0919061335b565b611dc4565b005b34801561090357600080fd5b5061091e600480360381019061091991906131b4565b611e5d565b005b34801561092c57600080fd5b50610947600480360381019061094291906131dd565b611f1d565b6040516109549190613f7a565b60405180910390f35b34801561096957600080fd5b50610984600480360381019061097f91906134d5565b611fb1565b005b34801561099257600080fd5b506109ad60048036038101906109a891906131b4565b6120e7565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a7a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a8a5750610a89826121df565b5b9050919050565b606060008054610aa0906145fd565b80601f0160208091040260200160405190810160405280929190818152602001828054610acc906145fd565b8015610b195780601f10610aee57610100808354040283529160200191610b19565b820191906000526020600020905b815481529060010190602001808311610afc57829003601f168201915b5050505050905090565b6000610b2e82612249565b610b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b649061417c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bb38261143b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1b9061421c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c436122b5565b73ffffffffffffffffffffffffffffffffffffffff161480610c725750610c7181610c6c6122b5565b611f1d565b5b610cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca8906140fc565b60405180910390fd5b610cbb83836122bd565b505050565b600b5481565b610cce6122b5565b73ffffffffffffffffffffffffffffffffffffffff16610cec611783565b73ffffffffffffffffffffffffffffffffffffffff1614610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d399061419c565b60405180910390fd5b8060099080519060200190610d58929190612fd8565b5050565b610d646122b5565b73ffffffffffffffffffffffffffffffffffffffff16610d82611783565b73ffffffffffffffffffffffffffffffffffffffff1614610dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcf9061419c565b60405180910390fd5b80600f60156101000a81548160ff02191690831515021790555050565b6000610e016007612376565b905090565b610e17610e116122b5565b82612384565b610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d9061425c565b60405180910390fd5b610e61838383612462565b505050565b610e6e6122b5565b73ffffffffffffffffffffffffffffffffffffffff16610e8c611783565b73ffffffffffffffffffffffffffffffffffffffff1614610ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed99061419c565b60405180910390fd5b6000610eec611783565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f0f90613edc565b60006040518083038185875af1925050503d8060008114610f4c576040519150601f19603f3d011682016040523d82523d6000602084013e610f51565b606091505b5050905080610f5f57600080fd5b50565b600080600080610f71866118e9565b809350819450829550505050600085604051602001610f909190613e90565b60405160208183030381529060405280519060200120905060018185858560405160008152602001604052604051610fcb9493929190613f95565b6020604051602081039080840390855afa158015610fed573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161494505050505092915050565b61106e838383604051806020016040528060008152506119b2565b505050565b60606000611080836115ad565b905060008167ffffffffffffffff8111156110c4577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156110f25781602001602082028036833780820191505090505b50905060006001905060005b838110801561110f5750600c548211155b156111be57600061111f8361143b565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111aa578284838151811061118f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505081806111a69061462f565b9250505b82806111b59061462f565b935050506110fe565b82945050505050919050565b6111d26122b5565b73ffffffffffffffffffffffffffffffffffffffff166111f0611783565b73ffffffffffffffffffffffffffffffffffffffff1614611246576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123d9061419c565b60405180910390fd5b80600b8190555050565b6112586122b5565b73ffffffffffffffffffffffffffffffffffffffff16611276611783565b73ffffffffffffffffffffffffffffffffffffffff16146112cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c39061419c565b60405180910390fd5b80600a90805190602001906112e2929190612fd8565b5050565b600f60169054906101000a900460ff1681565b60098054611306906145fd565b80601f0160208091040260200160405190810160405280929190818152602001828054611332906145fd565b801561137f5780601f106113545761010080835404028352916020019161137f565b820191906000526020600020905b81548152906001019060200180831161136257829003601f168201915b505050505081565b600f60159054906101000a900460ff1681565b600f60149054906101000a900460ff1681565b600880546113ba906145fd565b80601f01602080910402602001604051908101604052809291908181526020018280546113e6906145fd565b80156114335780601f1061140857610100808354040283529160200191611433565b820191906000526020600020905b81548152906001019060200180831161141657829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114db9061413c565b60405180910390fd5b80915050919050565b6114f56122b5565b73ffffffffffffffffffffffffffffffffffffffff16611513611783565b73ffffffffffffffffffffffffffffffffffffffff1614611569576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115609061419c565b60405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561161e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116159061411c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61166d6122b5565b73ffffffffffffffffffffffffffffffffffffffff1661168b611783565b73ffffffffffffffffffffffffffffffffffffffff16146116e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d89061419c565b60405180910390fd5b6116eb60006126be565b565b6116f56122b5565b73ffffffffffffffffffffffffffffffffffffffff16611713611783565b73ffffffffffffffffffffffffffffffffffffffff1614611769576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117609061419c565b60405180910390fd5b806008908051906020019061177f929190612fd8565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b6060600180546117c2906145fd565b80601f01602080910402602001604051908101604052809291908181526020018280546117ee906145fd565b801561183b5780601f106118105761010080835404028352916020019161183b565b820191906000526020600020905b81548152906001019060200180831161181e57829003601f168201915b5050505050905090565b6118576118506122b5565b8383612784565b5050565b600a8054611868906145fd565b80601f0160208091040260200160405190810160405280929190818152602001828054611894906145fd565b80156118e15780601f106118b6576101008083540402835291602001916118e1565b820191906000526020600020905b8154815290600101906020018083116118c457829003601f168201915b505050505081565b600080600060418451146118fc57600080fd5b60008060006020870151925060408701519150606087015160001a90508083839550955095505050509193909250565b6119346122b5565b73ffffffffffffffffffffffffffffffffffffffff16611952611783565b73ffffffffffffffffffffffffffffffffffffffff16146119a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199f9061419c565b60405180910390fd5b80600d8190555050565b6119c36119bd6122b5565b83612384565b611a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f99061425c565b60405180910390fd5b611a0e848484846128f1565b50505050565b611a1c6122b5565b73ffffffffffffffffffffffffffffffffffffffff16611a3a611783565b73ffffffffffffffffffffffffffffffffffffffff1614611a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a879061419c565b60405180910390fd5b80600f60146101000a81548160ff02191690831515021790555050565b6060611ab882612249565b611af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aee906141fc565b60405180910390fd5b60001515600f60169054906101000a900460ff1615151415611ba557600a8054611b20906145fd565b80601f0160208091040260200160405190810160405280929190818152602001828054611b4c906145fd565b8015611b995780601f10611b6e57610100808354040283529160200191611b99565b820191906000526020600020905b815481529060010190602001808311611b7c57829003601f168201915b50505050509050611c01565b6000611baf61294d565b90506000815111611bcf5760405180602001604052806000815250611bfd565b80611bd9846129df565b6009604051602001611bed93929190613eab565b6040516020818303038152906040525b9150505b919050565b600c5481565b81600081118015611c1f5750600d548111155b611c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c559061405c565b60405180910390fd5b600c5481611c6c6007612376565b611c76919061441b565b1115611cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cae9061423c565b60405180910390fd5b600f60159054906101000a900460ff1615611d07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfe906141bc565b60405180910390fd5b82600b54611d1591906144a2565b341015611d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4e9061427c565b60405180910390fd5b600f60149054906101000a900460ff16611db557611d758233610f62565b611db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dab906140dc565b60405180910390fd5b5b611dbf3384612b8c565b505050565b611dcc6122b5565b73ffffffffffffffffffffffffffffffffffffffff16611dea611783565b73ffffffffffffffffffffffffffffffffffffffff1614611e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e379061419c565b60405180910390fd5b80600f60166101000a81548160ff02191690831515021790555050565b611e656122b5565b73ffffffffffffffffffffffffffffffffffffffff16611e83611783565b73ffffffffffffffffffffffffffffffffffffffff1614611ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed09061419c565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611fc45750600d548111155b612003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffa9061405c565b60405180910390fd5b600c54816120116007612376565b61201b919061441b565b111561205c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120539061423c565b60405180910390fd5b6120646122b5565b73ffffffffffffffffffffffffffffffffffffffff16612082611783565b73ffffffffffffffffffffffffffffffffffffffff16146120d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cf9061419c565b60405180910390fd5b6120e28284612b8c565b505050565b6120ef6122b5565b73ffffffffffffffffffffffffffffffffffffffff1661210d611783565b73ffffffffffffffffffffffffffffffffffffffff1614612163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215a9061419c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ca9061401c565b60405180910390fd5b6121dc816126be565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166123308361143b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600061238f82612249565b6123ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c5906140bc565b60405180910390fd5b60006123d98361143b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061244857508373ffffffffffffffffffffffffffffffffffffffff1661243084610b23565b73ffffffffffffffffffffffffffffffffffffffff16145b8061245957506124588185611f1d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166124828261143b565b73ffffffffffffffffffffffffffffffffffffffff16146124d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cf906141dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253f9061407c565b60405180910390fd5b612553838383612bcc565b61255e6000826122bd565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125ae91906144fc565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612605919061441b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ea9061409c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516128e49190613f7a565b60405180910390a3505050565b6128fc848484612462565b61290884848484612bd1565b612947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293e90613ffc565b60405180910390fd5b50505050565b60606008805461295c906145fd565b80601f0160208091040260200160405190810160405280929190818152602001828054612988906145fd565b80156129d55780601f106129aa576101008083540402835291602001916129d5565b820191906000526020600020905b8154815290600101906020018083116129b857829003601f168201915b5050505050905090565b60606000821415612a27576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b87565b600082905060005b60008214612a59578080612a429061462f565b915050600a82612a529190614471565b9150612a2f565b60008167ffffffffffffffff811115612a9b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612acd5781602001600182028036833780820191505090505b5090505b60008514612b8057600182612ae691906144fc565b9150600a85612af5919061469c565b6030612b01919061441b565b60f81b818381518110612b3d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b799190614471565b9450612ad1565b8093505050505b919050565b60005b81811015612bc757612ba16007612d68565b612bb483612baf6007612376565b612d7e565b8080612bbf9061462f565b915050612b8f565b505050565b505050565b6000612bf28473ffffffffffffffffffffffffffffffffffffffff16612d9c565b15612d5b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c1b6122b5565b8786866040518563ffffffff1660e01b8152600401612c3d9493929190613f0c565b602060405180830381600087803b158015612c5757600080fd5b505af1925050508015612c8857506040513d601f19601f82011682018060405250810190612c8591906133ad565b60015b612d0b573d8060008114612cb8576040519150601f19603f3d011682016040523d82523d6000602084013e612cbd565b606091505b50600081511415612d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cfa90613ffc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d60565b600190505b949350505050565b6001816000016000828254019250508190555050565b612d98828260405180602001604052806000815250612daf565b5050565b600080823b905060008111915050919050565b612db98383612e0a565b612dc66000848484612bd1565b612e05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dfc90613ffc565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e719061415c565b60405180910390fd5b612e8381612249565b15612ec3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eba9061403c565b60405180910390fd5b612ecf60008383612bcc565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f1f919061441b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612fe4906145fd565b90600052602060002090601f016020900481019282613006576000855561304d565b82601f1061301f57805160ff191683800117855561304d565b8280016001018555821561304d579182015b8281111561304c578251825591602001919060010190613031565b5b50905061305a919061305e565b5090565b5b8082111561307757600081600090555060010161305f565b5090565b600061308e6130898461431f565b6142ee565b9050828152602081018484840111156130a657600080fd5b6130b18482856145bb565b509392505050565b60006130cc6130c78461434f565b6142ee565b9050828152602081018484840111156130e457600080fd5b6130ef8482856145bb565b509392505050565b600081359050613106816147a7565b92915050565b60008135905061311b816147be565b92915050565b600081359050613130816147d5565b92915050565b600081519050613145816147d5565b92915050565b600082601f83011261315c57600080fd5b813561316c84826020860161307b565b91505092915050565b600082601f83011261318657600080fd5b81356131968482602086016130b9565b91505092915050565b6000813590506131ae816147ec565b92915050565b6000602082840312156131c657600080fd5b60006131d4848285016130f7565b91505092915050565b600080604083850312156131f057600080fd5b60006131fe858286016130f7565b925050602061320f858286016130f7565b9150509250929050565b60008060006060848603121561322e57600080fd5b600061323c868287016130f7565b935050602061324d868287016130f7565b925050604061325e8682870161319f565b9150509250925092565b6000806000806080858703121561327e57600080fd5b600061328c878288016130f7565b945050602061329d878288016130f7565b93505060406132ae8782880161319f565b925050606085013567ffffffffffffffff8111156132cb57600080fd5b6132d78782880161314b565b91505092959194509250565b600080604083850312156132f657600080fd5b6000613304858286016130f7565b92505060206133158582860161310c565b9150509250929050565b6000806040838503121561333257600080fd5b6000613340858286016130f7565b92505060206133518582860161319f565b9150509250929050565b60006020828403121561336d57600080fd5b600061337b8482850161310c565b91505092915050565b60006020828403121561339657600080fd5b60006133a484828501613121565b91505092915050565b6000602082840312156133bf57600080fd5b60006133cd84828501613136565b91505092915050565b6000602082840312156133e857600080fd5b600082013567ffffffffffffffff81111561340257600080fd5b61340e8482850161314b565b91505092915050565b6000806040838503121561342a57600080fd5b600083013567ffffffffffffffff81111561344457600080fd5b6134508582860161314b565b9250506020613461858286016130f7565b9150509250929050565b60006020828403121561347d57600080fd5b600082013567ffffffffffffffff81111561349757600080fd5b6134a384828501613175565b91505092915050565b6000602082840312156134be57600080fd5b60006134cc8482850161319f565b91505092915050565b600080604083850312156134e857600080fd5b60006134f68582860161319f565b9250506020613507858286016130f7565b9150509250929050565b6000806040838503121561352457600080fd5b60006135328582860161319f565b925050602083013567ffffffffffffffff81111561354f57600080fd5b61355b8582860161314b565b9150509250929050565b60006135718383613e63565b60208301905092915050565b61358681614530565b82525050565b61359d61359882614530565b614678565b82525050565b60006135ae826143a4565b6135b881856143d2565b93506135c38361437f565b8060005b838110156135f45781516135db8882613565565b97506135e6836143c5565b9250506001810190506135c7565b5085935050505092915050565b61360a81614542565b82525050565b6136198161454e565b82525050565b600061362a826143af565b61363481856143e3565b93506136448185602086016145ca565b61364d81614789565b840191505092915050565b6000613663826143ba565b61366d81856143ff565b935061367d8185602086016145ca565b61368681614789565b840191505092915050565b600061369c826143ba565b6136a68185614410565b93506136b68185602086016145ca565b80840191505092915050565b600081546136cf816145fd565b6136d98186614410565b945060018216600081146136f4576001811461370557613738565b60ff19831686528186019350613738565b61370e8561438f565b60005b8381101561373057815481890152600182019150602081019050613711565b838801955050505b50505092915050565b600061374e6032836143ff565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006137b46026836143ff565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061381a601c836143ff565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061385a6014836143ff565b91507f496e76616c6964206d696e7420616d6f756e74210000000000000000000000006000830152602082019050919050565b600061389a6024836143ff565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006139006019836143ff565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613940602c836143ff565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006139a66019836143ff565b91507f77616c6c6574206973206e6f742077686974656c6973746564000000000000006000830152602082019050919050565b60006139e66038836143ff565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613a4c602a836143ff565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ab26029836143ff565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b186020836143ff565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613b58602c836143ff565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613bbe6020836143ff565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613bfe6017836143ff565b91507f54686520636f6e747261637420697320706175736564210000000000000000006000830152602082019050919050565b6000613c3e6029836143ff565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ca4602f836143ff565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613d0a6021836143ff565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d706000836143f4565b9150600082019050919050565b6000613d8a6014836143ff565b91507f4d617820737570706c79206578636565646564210000000000000000000000006000830152602082019050919050565b6000613dca6031836143ff565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613e306013836143ff565b91507f496e73756666696369656e742066756e647321000000000000000000000000006000830152602082019050919050565b613e6c816145a4565b82525050565b613e7b816145a4565b82525050565b613e8a816145ae565b82525050565b6000613e9c828461358c565b60148201915081905092915050565b6000613eb78286613691565b9150613ec38285613691565b9150613ecf82846136c2565b9150819050949350505050565b6000613ee782613d63565b9150819050919050565b6000602082019050613f06600083018461357d565b92915050565b6000608082019050613f21600083018761357d565b613f2e602083018661357d565b613f3b6040830185613e72565b8181036060830152613f4d818461361f565b905095945050505050565b60006020820190508181036000830152613f7281846135a3565b905092915050565b6000602082019050613f8f6000830184613601565b92915050565b6000608082019050613faa6000830187613610565b613fb76020830186613e81565b613fc46040830185613610565b613fd16060830184613610565b95945050505050565b60006020820190508181036000830152613ff48184613658565b905092915050565b6000602082019050818103600083015261401581613741565b9050919050565b60006020820190508181036000830152614035816137a7565b9050919050565b600060208201905081810360008301526140558161380d565b9050919050565b600060208201905081810360008301526140758161384d565b9050919050565b600060208201905081810360008301526140958161388d565b9050919050565b600060208201905081810360008301526140b5816138f3565b9050919050565b600060208201905081810360008301526140d581613933565b9050919050565b600060208201905081810360008301526140f581613999565b9050919050565b60006020820190508181036000830152614115816139d9565b9050919050565b6000602082019050818103600083015261413581613a3f565b9050919050565b6000602082019050818103600083015261415581613aa5565b9050919050565b6000602082019050818103600083015261417581613b0b565b9050919050565b6000602082019050818103600083015261419581613b4b565b9050919050565b600060208201905081810360008301526141b581613bb1565b9050919050565b600060208201905081810360008301526141d581613bf1565b9050919050565b600060208201905081810360008301526141f581613c31565b9050919050565b6000602082019050818103600083015261421581613c97565b9050919050565b6000602082019050818103600083015261423581613cfd565b9050919050565b6000602082019050818103600083015261425581613d7d565b9050919050565b6000602082019050818103600083015261427581613dbd565b9050919050565b6000602082019050818103600083015261429581613e23565b9050919050565b60006020820190506142b16000830184613e72565b92915050565b60006060820190506142cc6000830186613e81565b6142d96020830185613610565b6142e66040830184613610565b949350505050565b6000604051905081810181811067ffffffffffffffff821117156143155761431461475a565b5b8060405250919050565b600067ffffffffffffffff82111561433a5761433961475a565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561436a5761436961475a565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614426826145a4565b9150614431836145a4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614466576144656146cd565b5b828201905092915050565b600061447c826145a4565b9150614487836145a4565b925082614497576144966146fc565b5b828204905092915050565b60006144ad826145a4565b91506144b8836145a4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144f1576144f06146cd565b5b828202905092915050565b6000614507826145a4565b9150614512836145a4565b925082821015614525576145246146cd565b5b828203905092915050565b600061453b82614584565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156145e85780820151818401526020810190506145cd565b838111156145f7576000848401525b50505050565b6000600282049050600182168061461557607f821691505b602082108114156146295761462861472b565b5b50919050565b600061463a826145a4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561466d5761466c6146cd565b5b600182019050919050565b60006146838261468a565b9050919050565b60006146958261479a565b9050919050565b60006146a7826145a4565b91506146b2836145a4565b9250826146c2576146c16146fc565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b6147b081614530565b81146147bb57600080fd5b50565b6147c781614542565b81146147d257600080fd5b50565b6147de81614558565b81146147e957600080fd5b50565b6147f5816145a4565b811461480057600080fd5b5056fea26469706673582212202d7059a5c996aa2eba2677ca026b8b036790caadd0af25140893990e37e607f664736f6c63430008000033

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

00000000000000000000000074fd869522d835c1ceba5da3bfa83fd800711d220000000000000000000000006466aa0b119c02dac97f55cb7f6c10aa41c05f8f

-----Decoded View---------------
Arg [0] : walletTreasury_ (address): 0x74fd869522D835c1cEBA5DA3BFa83fD800711d22
Arg [1] : walletSignature_ (address): 0x6466AA0b119c02DAC97F55cb7f6C10aA41C05f8f

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000074fd869522d835c1ceba5da3bfa83fd800711d22
Arg [1] : 0000000000000000000000006466aa0b119c02dac97f55cb7f6c10aa41c05f8f


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.