ETH Price: $2,947.19 (-3.85%)
Gas: 2 Gwei

Token

FoxyFam (FOXY)
 

Overview

Max Total Supply

3,333 FOXY

Holders

1,352

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
nicholasbrave.eth
Balance
2 FOXY
0x768C89Ead48508F3Dc355481714E751e7345909a
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Foxy Fam is the cutest NFT collectible you can get! Comics, metaverse, and a full gaming collection! This OG project will get you beta access to everything! [GAME - BETA VERSION](http://foxyfam.io/game) [MORE DETAILS AND ROADMAP ON THE WEBSITE](https://www.foxyfam.io/) Quick Links: https://discord.gg/foxyfam https://etherscan.io/address/0x444467738cf0c5bcca9c1d6f66670f4c493e53ff https://opensea.io/collection/foxyfamnft (Main OS collection) https://opensea.io/collection/honoraryfoxyfams (Honorary collection) https://twitter.com/foxyfamnft

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FoxyFam

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : FoxyFam.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.4;

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

contract FoxyFam is ERC721, Ownable { 

    bool public saleActive = false;
    bool public presaleActive = false;
    
    string internal baseTokenURI;

    uint public price = 0.06 ether;
    uint public totalSupply = 10000;
    uint public nonce = 0;
    uint public maxTx = 20;
    
    event Mint(address owner, uint qty);
    event Giveaway(address to, uint qty);
    event Withdraw(uint amount);

    address public m1;
    address public m2;
    address public m3;
    address public m4;

    mapping (address => uint256) public presaleWallets;
    
    constructor() ERC721("FoxyFam", "FOXY") {}
    
    function setPrice(uint newPrice) external onlyOwner {
        price = newPrice;
    }
    
    function setBaseTokenURI(string calldata _uri) external onlyOwner {
        baseTokenURI = _uri;
    }
    
    function setTotalSupply(uint newSupply) external onlyOwner {
        totalSupply = newSupply;
    }

    function setPresaleActive(bool val) public onlyOwner {
        presaleActive = val;
    }

    function setSaleActive(bool val) public onlyOwner {
        saleActive = val;
    }

    function setPresaleWallets(address[] memory _a, uint256[] memory _amount) public onlyOwner {
        for(uint256 i; i < _a.length; i++){
            presaleWallets[_a[i]] = _amount[i];
        }
    }

    function setMembersAddresses(address[] memory _a) public onlyOwner {
        m1 = _a[0];
        m2 = _a[1];
        m3 = _a[2];
        m4 = _a[3];
    }

    function withdrawTeam(uint256 amount) public payable onlyOwner {
        uint256 percent = amount / 100;
        require(payable(m1).send(percent * 35));
        require(payable(m2).send(percent * 35));
        require(payable(m3).send(percent * 25));
        require(payable(m4).send(percent * 5));
    }
    
    function setMaxTx(uint newMax) external onlyOwner {
        maxTx = newMax;
    }
    
    function getAssetsByOwner(address _owner) public view returns(uint[] memory) {
        uint[] memory result = new uint[](balanceOf(_owner));
        uint counter = 0;
        for (uint i = 0; i < nonce; i++) {
            if (ownerOf(i) == _owner) {
                result[counter] = i;
                counter++;
            }
        }
        return result;
    }
    
    function getMyAssets() external view returns(uint[] memory){
        return getAssetsByOwner(tx.origin);
    }

    function _baseURI() internal override view returns (string memory) {
        return baseTokenURI;
    }
    
    function giveaway(address to, uint qty) external onlyOwner {
        require(qty + nonce <= totalSupply, "SUPPLY: Value exceeds totalSupply");
        for(uint i = 0; i < qty; i++){
            uint tokenId = nonce;
            _safeMint(to, tokenId);
            nonce++;
        }
        emit Giveaway(to, qty);
    }

    function buyPresale(uint qty) external payable {
        uint256 qtyAllowed = presaleWallets[msg.sender];
        require(presaleActive, "TRANSACTION: Presale is not active");
        require(qtyAllowed > 0, "TRANSACTION: You can't mint on presale");
        require(qty + nonce <= totalSupply, "SUPPLY: Value exceeds totalSupply");
        require(msg.value == price * qty, "PAYMENT: invalid value");
        presaleWallets[msg.sender] = qtyAllowed - qty;
        for(uint i = 0; i < qty; i++){
            uint tokenId = nonce;
            _safeMint(msg.sender, tokenId);
            nonce++;
        }
        emit Mint(msg.sender, qty);
    }
    
    function buy(uint qty) external payable {
        require(saleActive, "TRANSACTION: sale is not active");
        require(qty <= maxTx || qty < 1, "TRANSACTION: qty of mints not alowed");
        require(qty + nonce <= totalSupply, "SUPPLY: Value exceeds totalSupply");
        require(msg.value == price * qty, "PAYMENT: invalid value");
        for(uint i = 0; i < qty; i++){
            uint tokenId = nonce;
            _safeMint(msg.sender, tokenId);
            nonce++;
        }
        emit Mint(msg.sender, qty);
    }
    
    function withdrawOwner() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }
}

File 2 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 3 of 11 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 4 of 11 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 11 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 6 of 11 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 7 of 11 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 11 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 10 of 11 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"qty","type":"uint256"}],"name":"Giveaway","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"qty","type":"uint256"}],"name":"Mint","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","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":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"buyPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getAssetsByOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMyAssets","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"giveaway","outputs":[],"stateMutability":"nonpayable","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":"m1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"m2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"m3","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"m4","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nonce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleWallets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_a","type":"address[]"}],"name":"setMembersAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setPresaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_a","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"setPresaleWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawTeam","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526000600660146101000a81548160ff0219169083151502179055506000600660156101000a81548160ff02191690831515021790555066d529ae9e8600006008556127106009556000600a556014600b553480156200006257600080fd5b506040518060400160405280600781526020017f466f787946616d000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f464f5859000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000e7929190620001f7565b50806001908051906020019062000100929190620001f7565b50505062000123620001176200012960201b60201c565b6200013160201b60201c565b6200030c565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020590620002a7565b90600052602060002090601f01602090048101928262000229576000855562000275565b82601f106200024457805160ff191683800117855562000275565b8280016001018555821562000275579182015b828111156200027457825182559160200191906001019062000257565b5b50905062000284919062000288565b5090565b5b80821115620002a357600081600090555060010162000289565b5090565b60006002820490506001821680620002c057607f821691505b60208210811415620002d757620002d6620002dd565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614b65806200031c6000396000f3fe6080604052600436106102515760003560e01c8063715018a611610139578063a77f92ff116100b6578063d96a094a1161007a578063d96a094a146108a3578063e8cc00ad146108bf578063e985e9c5146108d6578063f2fde38b14610913578063f7ea7a3d1461093c578063fd2b04921461096557610251565b8063a77f92ff146107be578063affed0e0146107e9578063b88d4fde14610814578063bc3371821461083d578063c87b56dd1461086657610251565b806391b7f5ed116100fd57806391b7f5ed146106eb57806395d89b4114610714578063a0230b4f1461073f578063a035b1fe1461076a578063a22cb4651461079557610251565b8063715018a61461062a5780637437681e14610641578063841718a61461066c5780638da5cb5b1461069557806391aa69ca146106c057610251565b806330b2264e116101d257806349c322171161019657806349c322171461051357806353135ca01461052f578063619280841461055a5780636352211e1461058557806368428a1b146105c257806370a08231146105ed57610251565b806330b2264e146104305780633f8121a21461046d57806342842e0e1461049657806343970161146104bf57806347002d1d146104e857610251565b806318160ddd1161021957806318160ddd1461034d57806323b872dd14610378578063276f0934146103a15780632e6b106c146103de57806330176e131461040757610251565b806301ffc9a714610256578063050225ea1461029357806306fdde03146102bc578063081812fc146102e7578063095ea7b314610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613749565b610981565b60405161028a9190613d36565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b59190613637565b610a63565b005b3480156102c857600080fd5b506102d1610bb7565b6040516102de9190613d51565b60405180910390f35b3480156102f357600080fd5b5061030e600480360381019061030991906137e0565b610c49565b60405161031b9190613c84565b60405180910390f35b34801561033057600080fd5b5061034b60048036038101906103469190613637565b610cce565b005b34801561035957600080fd5b50610362610de6565b60405161036f9190614033565b60405180910390f35b34801561038457600080fd5b5061039f600480360381019061039a9190613531565b610dec565b005b3480156103ad57600080fd5b506103c860048036038101906103c391906134cc565b610e4c565b6040516103d59190613d14565b60405180910390f35b3480156103ea57600080fd5b50610405600480360381019061040091906136b4565b610f86565b005b34801561041357600080fd5b5061042e6004803603810190610429919061379b565b6110ea565b005b34801561043c57600080fd5b50610457600480360381019061045291906134cc565b61117c565b6040516104649190614033565b60405180910390f35b34801561047957600080fd5b50610494600480360381019061048f9190613720565b611194565b005b3480156104a257600080fd5b506104bd60048036038101906104b89190613531565b61122d565b005b3480156104cb57600080fd5b506104e660048036038101906104e19190613673565b61124d565b005b3480156104f457600080fd5b506104fd6114d4565b60405161050a9190613d14565b60405180910390f35b61052d600480360381019061052891906137e0565b6114e4565b005b34801561053b57600080fd5b50610544611730565b6040516105519190613d36565b60405180910390f35b34801561056657600080fd5b5061056f611743565b60405161057c9190613c84565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a791906137e0565b611769565b6040516105b99190613c84565b60405180910390f35b3480156105ce57600080fd5b506105d761181b565b6040516105e49190613d36565b60405180910390f35b3480156105f957600080fd5b50610614600480360381019061060f91906134cc565b61182e565b6040516106219190614033565b60405180910390f35b34801561063657600080fd5b5061063f6118e6565b005b34801561064d57600080fd5b5061065661196e565b6040516106639190614033565b60405180910390f35b34801561067857600080fd5b50610693600480360381019061068e9190613720565b611974565b005b3480156106a157600080fd5b506106aa611a0d565b6040516106b79190613c84565b60405180910390f35b3480156106cc57600080fd5b506106d5611a37565b6040516106e29190613c84565b60405180910390f35b3480156106f757600080fd5b50610712600480360381019061070d91906137e0565b611a5d565b005b34801561072057600080fd5b50610729611ae3565b6040516107369190613d51565b60405180910390f35b34801561074b57600080fd5b50610754611b75565b6040516107619190613c84565b60405180910390f35b34801561077657600080fd5b5061077f611b9b565b60405161078c9190614033565b60405180910390f35b3480156107a157600080fd5b506107bc60048036038101906107b791906135fb565b611ba1565b005b3480156107ca57600080fd5b506107d3611d22565b6040516107e09190613c84565b60405180910390f35b3480156107f557600080fd5b506107fe611d48565b60405161080b9190614033565b60405180910390f35b34801561082057600080fd5b5061083b60048036038101906108369190613580565b611d4e565b005b34801561084957600080fd5b50610864600480360381019061085f91906137e0565b611db0565b005b34801561087257600080fd5b5061088d600480360381019061088891906137e0565b611e36565b60405161089a9190613d51565b60405180910390f35b6108bd60048036038101906108b891906137e0565b611edd565b005b3480156108cb57600080fd5b506108d46120a2565b005b3480156108e257600080fd5b506108fd60048036038101906108f891906134f5565b612167565b60405161090a9190613d36565b60405180910390f35b34801561091f57600080fd5b5061093a600480360381019061093591906134cc565b6121fb565b005b34801561094857600080fd5b50610963600480360381019061095e91906137e0565b6122f3565b005b61097f600480360381019061097a91906137e0565b612379565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a5c5750610a5b826125ba565b5b9050919050565b610a6b612624565b73ffffffffffffffffffffffffffffffffffffffff16610a89611a0d565b73ffffffffffffffffffffffffffffffffffffffff1614610adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad690613f33565b60405180910390fd5b600954600a5482610af09190614178565b1115610b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2890613fd3565b60405180910390fd5b60005b81811015610b79576000600a549050610b4d848261262c565b600a6000815480929190610b60906143a6565b9190505550508080610b71906143a6565b915050610b34565b507f2118eda2a5fcc2e5f909a608477a856272adadcb48e1373747c51d2d3f6fc2ef8282604051610bab929190613ceb565b60405180910390a15050565b606060008054610bc690614343565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf290614343565b8015610c3f5780601f10610c1457610100808354040283529160200191610c3f565b820191906000526020600020905b815481529060010190602001808311610c2257829003601f168201915b5050505050905090565b6000610c548261264a565b610c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8a90613f13565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cd982611769565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4190613fb3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d69612624565b73ffffffffffffffffffffffffffffffffffffffff161480610d985750610d9781610d92612624565b612167565b5b610dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dce90613e73565b60405180910390fd5b610de183836126b6565b505050565b60095481565b610dfd610df7612624565b8261276f565b610e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3390613ff3565b60405180910390fd5b610e4783838361284d565b505050565b60606000610e598361182e565b67ffffffffffffffff811115610e98577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610ec65781602001602082028036833780820191505090505b5090506000805b600a54811015610f7b578473ffffffffffffffffffffffffffffffffffffffff16610ef782611769565b73ffffffffffffffffffffffffffffffffffffffff161415610f685780838381518110610f4d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508180610f64906143a6565b9250505b8080610f73906143a6565b915050610ecd565b508192505050919050565b610f8e612624565b73ffffffffffffffffffffffffffffffffffffffff16610fac611a0d565b73ffffffffffffffffffffffffffffffffffffffff1614611002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff990613f33565b60405180910390fd5b60005b82518110156110e557818181518110611047577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516010600085848151811061108c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806110dd906143a6565b915050611005565b505050565b6110f2612624565b73ffffffffffffffffffffffffffffffffffffffff16611110611a0d565b73ffffffffffffffffffffffffffffffffffffffff1614611166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115d90613f33565b60405180910390fd5b8181600791906111779291906131e2565b505050565b60106020528060005260406000206000915090505481565b61119c612624565b73ffffffffffffffffffffffffffffffffffffffff166111ba611a0d565b73ffffffffffffffffffffffffffffffffffffffff1614611210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120790613f33565b60405180910390fd5b80600660156101000a81548160ff02191690831515021790555050565b61124883838360405180602001604052806000815250611d4e565b505050565b611255612624565b73ffffffffffffffffffffffffffffffffffffffff16611273611a0d565b73ffffffffffffffffffffffffffffffffffffffff16146112c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c090613f33565b60405180910390fd5b80600081518110611303577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600181518110611385577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600281518110611407577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600381518110611489577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606114df32610e4c565b905090565b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600660159054906101000a900460ff16611577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156e90613f93565b60405180910390fd5b600081116115ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b190614013565b60405180910390fd5b600954600a54836115cb9190614178565b111561160c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160390613fd3565b60405180910390fd5b8160085461161a91906141ff565b341461165b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165290613df3565b60405180910390fd5b81816116679190614259565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b828110156116f2576000600a5490506116c6338261262c565b600a60008154809291906116d9906143a6565b91905055505080806116ea906143a6565b9150506116ad565b507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968853383604051611724929190613ceb565b60405180910390a15050565b600660159054906101000a900460ff1681565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611812576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180990613eb3565b60405180910390fd5b80915050919050565b600660149054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561189f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189690613e93565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118ee612624565b73ffffffffffffffffffffffffffffffffffffffff1661190c611a0d565b73ffffffffffffffffffffffffffffffffffffffff1614611962576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195990613f33565b60405180910390fd5b61196c6000612aa9565b565b600b5481565b61197c612624565b73ffffffffffffffffffffffffffffffffffffffff1661199a611a0d565b73ffffffffffffffffffffffffffffffffffffffff16146119f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e790613f33565b60405180910390fd5b80600660146101000a81548160ff02191690831515021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611a65612624565b73ffffffffffffffffffffffffffffffffffffffff16611a83611a0d565b73ffffffffffffffffffffffffffffffffffffffff1614611ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad090613f33565b60405180910390fd5b8060088190555050565b606060018054611af290614343565b80601f0160208091040260200160405190810160405280929190818152602001828054611b1e90614343565b8015611b6b5780601f10611b4057610100808354040283529160200191611b6b565b820191906000526020600020905b815481529060010190602001808311611b4e57829003601f168201915b5050505050905090565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60085481565b611ba9612624565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0e90613e33565b60405180910390fd5b8060056000611c24612624565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611cd1612624565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d169190613d36565b60405180910390a35050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b611d5f611d59612624565b8361276f565b611d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9590613ff3565b60405180910390fd5b611daa84848484612b6f565b50505050565b611db8612624565b73ffffffffffffffffffffffffffffffffffffffff16611dd6611a0d565b73ffffffffffffffffffffffffffffffffffffffff1614611e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2390613f33565b60405180910390fd5b80600b8190555050565b6060611e418261264a565b611e80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7790613f73565b60405180910390fd5b6000611e8a612bcb565b90506000815111611eaa5760405180602001604052806000815250611ed5565b80611eb484612c5d565b604051602001611ec5929190613c60565b6040516020818303038152906040525b915050919050565b600660149054906101000a900460ff16611f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2390613ef3565b60405180910390fd5b600b5481111580611f3d5750600181105b611f7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7390613dd3565b60405180910390fd5b600954600a5482611f8d9190614178565b1115611fce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc590613fd3565b60405180910390fd5b80600854611fdc91906141ff565b341461201d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201490613df3565b60405180910390fd5b60005b81811015612065576000600a549050612039338261262c565b600a600081548092919061204c906143a6565b919050555050808061205d906143a6565b915050612020565b507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968853382604051612097929190613ceb565b60405180910390a150565b6120aa612624565b73ffffffffffffffffffffffffffffffffffffffff166120c8611a0d565b73ffffffffffffffffffffffffffffffffffffffff161461211e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211590613f33565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015612164573d6000803e3d6000fd5b50565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612203612624565b73ffffffffffffffffffffffffffffffffffffffff16612221611a0d565b73ffffffffffffffffffffffffffffffffffffffff1614612277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226e90613f33565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122de90613d93565b60405180910390fd5b6122f081612aa9565b50565b6122fb612624565b73ffffffffffffffffffffffffffffffffffffffff16612319611a0d565b73ffffffffffffffffffffffffffffffffffffffff161461236f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236690613f33565b60405180910390fd5b8060098190555050565b612381612624565b73ffffffffffffffffffffffffffffffffffffffff1661239f611a0d565b73ffffffffffffffffffffffffffffffffffffffff16146123f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ec90613f33565b60405180910390fd5b600060648261240491906141ce565b9050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60238361244f91906141ff565b9081150290604051600060405180830381858888f1935050505061247257600080fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6023836124bb91906141ff565b9081150290604051600060405180830381858888f193505050506124de57600080fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60198361252791906141ff565b9081150290604051600060405180830381858888f1935050505061254a57600080fd5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60058361259391906141ff565b9081150290604051600060405180830381858888f193505050506125b657600080fd5b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b612646828260405180602001604052806000815250612e0a565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661272983611769565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061277a8261264a565b6127b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b090613e53565b60405180910390fd5b60006127c483611769565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061283357508373ffffffffffffffffffffffffffffffffffffffff1661281b84610c49565b73ffffffffffffffffffffffffffffffffffffffff16145b8061284457506128438185612167565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661286d82611769565b73ffffffffffffffffffffffffffffffffffffffff16146128c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ba90613f53565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292a90613e13565b60405180910390fd5b61293e838383612e65565b6129496000826126b6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129999190614259565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129f09190614178565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612b7a84848461284d565b612b8684848484612e6a565b612bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbc90613d73565b60405180910390fd5b50505050565b606060078054612bda90614343565b80601f0160208091040260200160405190810160405280929190818152602001828054612c0690614343565b8015612c535780601f10612c2857610100808354040283529160200191612c53565b820191906000526020600020905b815481529060010190602001808311612c3657829003601f168201915b5050505050905090565b60606000821415612ca5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e05565b600082905060005b60008214612cd7578080612cc0906143a6565b915050600a82612cd091906141ce565b9150612cad565b60008167ffffffffffffffff811115612d19577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612d4b5781602001600182028036833780820191505090505b5090505b60008514612dfe57600182612d649190614259565b9150600a85612d7391906143ef565b6030612d7f9190614178565b60f81b818381518110612dbb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612df791906141ce565b9450612d4f565b8093505050505b919050565b612e148383613001565b612e216000848484612e6a565b612e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5790613d73565b60405180910390fd5b505050565b505050565b6000612e8b8473ffffffffffffffffffffffffffffffffffffffff166131cf565b15612ff4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612eb4612624565b8786866040518563ffffffff1660e01b8152600401612ed69493929190613c9f565b602060405180830381600087803b158015612ef057600080fd5b505af1925050508015612f2157506040513d601f19601f82011682018060405250810190612f1e9190613772565b60015b612fa4573d8060008114612f51576040519150601f19603f3d011682016040523d82523d6000602084013e612f56565b606091505b50600081511415612f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9390613d73565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ff9565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306890613ed3565b60405180910390fd5b61307a8161264a565b156130ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130b190613db3565b60405180910390fd5b6130c660008383612e65565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131169190614178565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546131ee90614343565b90600052602060002090601f0160209004810192826132105760008555613257565b82601f1061322957803560ff1916838001178555613257565b82800160010185558215613257579182015b8281111561325657823582559160200191906001019061323b565b5b5090506132649190613268565b5090565b5b80821115613281576000816000905550600101613269565b5090565b600061329861329384614073565b61404e565b905080838252602082019050828560208602820111156132b757600080fd5b60005b858110156132e757816132cd888261339b565b8452602084019350602083019250506001810190506132ba565b5050509392505050565b60006133046132ff8461409f565b61404e565b9050808382526020820190508285602086028201111561332357600080fd5b60005b85811015613353578161333988826134b7565b845260208401935060208301925050600181019050613326565b5050509392505050565b600061337061336b846140cb565b61404e565b90508281526020810184848401111561338857600080fd5b613393848285614301565b509392505050565b6000813590506133aa81614ad3565b92915050565b600082601f8301126133c157600080fd5b81356133d1848260208601613285565b91505092915050565b600082601f8301126133eb57600080fd5b81356133fb8482602086016132f1565b91505092915050565b60008135905061341381614aea565b92915050565b60008135905061342881614b01565b92915050565b60008151905061343d81614b01565b92915050565b600082601f83011261345457600080fd5b813561346484826020860161335d565b91505092915050565b60008083601f84011261347f57600080fd5b8235905067ffffffffffffffff81111561349857600080fd5b6020830191508360018202830111156134b057600080fd5b9250929050565b6000813590506134c681614b18565b92915050565b6000602082840312156134de57600080fd5b60006134ec8482850161339b565b91505092915050565b6000806040838503121561350857600080fd5b60006135168582860161339b565b92505060206135278582860161339b565b9150509250929050565b60008060006060848603121561354657600080fd5b60006135548682870161339b565b93505060206135658682870161339b565b9250506040613576868287016134b7565b9150509250925092565b6000806000806080858703121561359657600080fd5b60006135a48782880161339b565b94505060206135b58782880161339b565b93505060406135c6878288016134b7565b925050606085013567ffffffffffffffff8111156135e357600080fd5b6135ef87828801613443565b91505092959194509250565b6000806040838503121561360e57600080fd5b600061361c8582860161339b565b925050602061362d85828601613404565b9150509250929050565b6000806040838503121561364a57600080fd5b60006136588582860161339b565b9250506020613669858286016134b7565b9150509250929050565b60006020828403121561368557600080fd5b600082013567ffffffffffffffff81111561369f57600080fd5b6136ab848285016133b0565b91505092915050565b600080604083850312156136c757600080fd5b600083013567ffffffffffffffff8111156136e157600080fd5b6136ed858286016133b0565b925050602083013567ffffffffffffffff81111561370a57600080fd5b613716858286016133da565b9150509250929050565b60006020828403121561373257600080fd5b600061374084828501613404565b91505092915050565b60006020828403121561375b57600080fd5b600061376984828501613419565b91505092915050565b60006020828403121561378457600080fd5b60006137928482850161342e565b91505092915050565b600080602083850312156137ae57600080fd5b600083013567ffffffffffffffff8111156137c857600080fd5b6137d48582860161346d565b92509250509250929050565b6000602082840312156137f257600080fd5b6000613800848285016134b7565b91505092915050565b60006138158383613c42565b60208301905092915050565b61382a8161428d565b82525050565b600061383b8261410c565b613845818561413a565b9350613850836140fc565b8060005b838110156138815781516138688882613809565b97506138738361412d565b925050600181019050613854565b5085935050505092915050565b6138978161429f565b82525050565b60006138a882614117565b6138b2818561414b565b93506138c2818560208601614310565b6138cb816144dc565b840191505092915050565b60006138e182614122565b6138eb818561415c565b93506138fb818560208601614310565b613904816144dc565b840191505092915050565b600061391a82614122565b613924818561416d565b9350613934818560208601614310565b80840191505092915050565b600061394d60328361415c565b9150613958826144ed565b604082019050919050565b600061397060268361415c565b915061397b8261453c565b604082019050919050565b6000613993601c8361415c565b915061399e8261458b565b602082019050919050565b60006139b660248361415c565b91506139c1826145b4565b604082019050919050565b60006139d960168361415c565b91506139e482614603565b602082019050919050565b60006139fc60248361415c565b9150613a078261462c565b604082019050919050565b6000613a1f60198361415c565b9150613a2a8261467b565b602082019050919050565b6000613a42602c8361415c565b9150613a4d826146a4565b604082019050919050565b6000613a6560388361415c565b9150613a70826146f3565b604082019050919050565b6000613a88602a8361415c565b9150613a9382614742565b604082019050919050565b6000613aab60298361415c565b9150613ab682614791565b604082019050919050565b6000613ace60208361415c565b9150613ad9826147e0565b602082019050919050565b6000613af1601f8361415c565b9150613afc82614809565b602082019050919050565b6000613b14602c8361415c565b9150613b1f82614832565b604082019050919050565b6000613b3760208361415c565b9150613b4282614881565b602082019050919050565b6000613b5a60298361415c565b9150613b65826148aa565b604082019050919050565b6000613b7d602f8361415c565b9150613b88826148f9565b604082019050919050565b6000613ba060228361415c565b9150613bab82614948565b604082019050919050565b6000613bc360218361415c565b9150613bce82614997565b604082019050919050565b6000613be660218361415c565b9150613bf1826149e6565b604082019050919050565b6000613c0960318361415c565b9150613c1482614a35565b604082019050919050565b6000613c2c60268361415c565b9150613c3782614a84565b604082019050919050565b613c4b816142f7565b82525050565b613c5a816142f7565b82525050565b6000613c6c828561390f565b9150613c78828461390f565b91508190509392505050565b6000602082019050613c996000830184613821565b92915050565b6000608082019050613cb46000830187613821565b613cc16020830186613821565b613cce6040830185613c51565b8181036060830152613ce0818461389d565b905095945050505050565b6000604082019050613d006000830185613821565b613d0d6020830184613c51565b9392505050565b60006020820190508181036000830152613d2e8184613830565b905092915050565b6000602082019050613d4b600083018461388e565b92915050565b60006020820190508181036000830152613d6b81846138d6565b905092915050565b60006020820190508181036000830152613d8c81613940565b9050919050565b60006020820190508181036000830152613dac81613963565b9050919050565b60006020820190508181036000830152613dcc81613986565b9050919050565b60006020820190508181036000830152613dec816139a9565b9050919050565b60006020820190508181036000830152613e0c816139cc565b9050919050565b60006020820190508181036000830152613e2c816139ef565b9050919050565b60006020820190508181036000830152613e4c81613a12565b9050919050565b60006020820190508181036000830152613e6c81613a35565b9050919050565b60006020820190508181036000830152613e8c81613a58565b9050919050565b60006020820190508181036000830152613eac81613a7b565b9050919050565b60006020820190508181036000830152613ecc81613a9e565b9050919050565b60006020820190508181036000830152613eec81613ac1565b9050919050565b60006020820190508181036000830152613f0c81613ae4565b9050919050565b60006020820190508181036000830152613f2c81613b07565b9050919050565b60006020820190508181036000830152613f4c81613b2a565b9050919050565b60006020820190508181036000830152613f6c81613b4d565b9050919050565b60006020820190508181036000830152613f8c81613b70565b9050919050565b60006020820190508181036000830152613fac81613b93565b9050919050565b60006020820190508181036000830152613fcc81613bb6565b9050919050565b60006020820190508181036000830152613fec81613bd9565b9050919050565b6000602082019050818103600083015261400c81613bfc565b9050919050565b6000602082019050818103600083015261402c81613c1f565b9050919050565b60006020820190506140486000830184613c51565b92915050565b6000614058614069565b90506140648282614375565b919050565b6000604051905090565b600067ffffffffffffffff82111561408e5761408d6144ad565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156140ba576140b96144ad565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156140e6576140e56144ad565b5b6140ef826144dc565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614183826142f7565b915061418e836142f7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141c3576141c2614420565b5b828201905092915050565b60006141d9826142f7565b91506141e4836142f7565b9250826141f4576141f361444f565b5b828204905092915050565b600061420a826142f7565b9150614215836142f7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561424e5761424d614420565b5b828202905092915050565b6000614264826142f7565b915061426f836142f7565b92508282101561428257614281614420565b5b828203905092915050565b6000614298826142d7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561432e578082015181840152602081019050614313565b8381111561433d576000848401525b50505050565b6000600282049050600182168061435b57607f821691505b6020821081141561436f5761436e61447e565b5b50919050565b61437e826144dc565b810181811067ffffffffffffffff8211171561439d5761439c6144ad565b5b80604052505050565b60006143b1826142f7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143e4576143e3614420565b5b600182019050919050565b60006143fa826142f7565b9150614405836142f7565b9250826144155761441461444f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5452414e53414354494f4e3a20717479206f66206d696e7473206e6f7420616c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b7f5041594d454e543a20696e76616c69642076616c756500000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f5452414e53414354494f4e3a2073616c65206973206e6f742061637469766500600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5452414e53414354494f4e3a2050726573616c65206973206e6f74206163746960008201527f7665000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f535550504c593a2056616c7565206578636565647320746f74616c537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f5452414e53414354494f4e3a20596f752063616e2774206d696e74206f6e207060008201527f726573616c650000000000000000000000000000000000000000000000000000602082015250565b614adc8161428d565b8114614ae757600080fd5b50565b614af38161429f565b8114614afe57600080fd5b50565b614b0a816142ab565b8114614b1557600080fd5b50565b614b21816142f7565b8114614b2c57600080fd5b5056fea2646970667358221220ad176ccc581cd347ab30889f6e9fca421485089ee6e38418e117a2fb6c4363fd64736f6c63430008040033

Deployed Bytecode

0x6080604052600436106102515760003560e01c8063715018a611610139578063a77f92ff116100b6578063d96a094a1161007a578063d96a094a146108a3578063e8cc00ad146108bf578063e985e9c5146108d6578063f2fde38b14610913578063f7ea7a3d1461093c578063fd2b04921461096557610251565b8063a77f92ff146107be578063affed0e0146107e9578063b88d4fde14610814578063bc3371821461083d578063c87b56dd1461086657610251565b806391b7f5ed116100fd57806391b7f5ed146106eb57806395d89b4114610714578063a0230b4f1461073f578063a035b1fe1461076a578063a22cb4651461079557610251565b8063715018a61461062a5780637437681e14610641578063841718a61461066c5780638da5cb5b1461069557806391aa69ca146106c057610251565b806330b2264e116101d257806349c322171161019657806349c322171461051357806353135ca01461052f578063619280841461055a5780636352211e1461058557806368428a1b146105c257806370a08231146105ed57610251565b806330b2264e146104305780633f8121a21461046d57806342842e0e1461049657806343970161146104bf57806347002d1d146104e857610251565b806318160ddd1161021957806318160ddd1461034d57806323b872dd14610378578063276f0934146103a15780632e6b106c146103de57806330176e131461040757610251565b806301ffc9a714610256578063050225ea1461029357806306fdde03146102bc578063081812fc146102e7578063095ea7b314610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613749565b610981565b60405161028a9190613d36565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b59190613637565b610a63565b005b3480156102c857600080fd5b506102d1610bb7565b6040516102de9190613d51565b60405180910390f35b3480156102f357600080fd5b5061030e600480360381019061030991906137e0565b610c49565b60405161031b9190613c84565b60405180910390f35b34801561033057600080fd5b5061034b60048036038101906103469190613637565b610cce565b005b34801561035957600080fd5b50610362610de6565b60405161036f9190614033565b60405180910390f35b34801561038457600080fd5b5061039f600480360381019061039a9190613531565b610dec565b005b3480156103ad57600080fd5b506103c860048036038101906103c391906134cc565b610e4c565b6040516103d59190613d14565b60405180910390f35b3480156103ea57600080fd5b50610405600480360381019061040091906136b4565b610f86565b005b34801561041357600080fd5b5061042e6004803603810190610429919061379b565b6110ea565b005b34801561043c57600080fd5b50610457600480360381019061045291906134cc565b61117c565b6040516104649190614033565b60405180910390f35b34801561047957600080fd5b50610494600480360381019061048f9190613720565b611194565b005b3480156104a257600080fd5b506104bd60048036038101906104b89190613531565b61122d565b005b3480156104cb57600080fd5b506104e660048036038101906104e19190613673565b61124d565b005b3480156104f457600080fd5b506104fd6114d4565b60405161050a9190613d14565b60405180910390f35b61052d600480360381019061052891906137e0565b6114e4565b005b34801561053b57600080fd5b50610544611730565b6040516105519190613d36565b60405180910390f35b34801561056657600080fd5b5061056f611743565b60405161057c9190613c84565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a791906137e0565b611769565b6040516105b99190613c84565b60405180910390f35b3480156105ce57600080fd5b506105d761181b565b6040516105e49190613d36565b60405180910390f35b3480156105f957600080fd5b50610614600480360381019061060f91906134cc565b61182e565b6040516106219190614033565b60405180910390f35b34801561063657600080fd5b5061063f6118e6565b005b34801561064d57600080fd5b5061065661196e565b6040516106639190614033565b60405180910390f35b34801561067857600080fd5b50610693600480360381019061068e9190613720565b611974565b005b3480156106a157600080fd5b506106aa611a0d565b6040516106b79190613c84565b60405180910390f35b3480156106cc57600080fd5b506106d5611a37565b6040516106e29190613c84565b60405180910390f35b3480156106f757600080fd5b50610712600480360381019061070d91906137e0565b611a5d565b005b34801561072057600080fd5b50610729611ae3565b6040516107369190613d51565b60405180910390f35b34801561074b57600080fd5b50610754611b75565b6040516107619190613c84565b60405180910390f35b34801561077657600080fd5b5061077f611b9b565b60405161078c9190614033565b60405180910390f35b3480156107a157600080fd5b506107bc60048036038101906107b791906135fb565b611ba1565b005b3480156107ca57600080fd5b506107d3611d22565b6040516107e09190613c84565b60405180910390f35b3480156107f557600080fd5b506107fe611d48565b60405161080b9190614033565b60405180910390f35b34801561082057600080fd5b5061083b60048036038101906108369190613580565b611d4e565b005b34801561084957600080fd5b50610864600480360381019061085f91906137e0565b611db0565b005b34801561087257600080fd5b5061088d600480360381019061088891906137e0565b611e36565b60405161089a9190613d51565b60405180910390f35b6108bd60048036038101906108b891906137e0565b611edd565b005b3480156108cb57600080fd5b506108d46120a2565b005b3480156108e257600080fd5b506108fd60048036038101906108f891906134f5565b612167565b60405161090a9190613d36565b60405180910390f35b34801561091f57600080fd5b5061093a600480360381019061093591906134cc565b6121fb565b005b34801561094857600080fd5b50610963600480360381019061095e91906137e0565b6122f3565b005b61097f600480360381019061097a91906137e0565b612379565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a5c5750610a5b826125ba565b5b9050919050565b610a6b612624565b73ffffffffffffffffffffffffffffffffffffffff16610a89611a0d565b73ffffffffffffffffffffffffffffffffffffffff1614610adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad690613f33565b60405180910390fd5b600954600a5482610af09190614178565b1115610b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2890613fd3565b60405180910390fd5b60005b81811015610b79576000600a549050610b4d848261262c565b600a6000815480929190610b60906143a6565b9190505550508080610b71906143a6565b915050610b34565b507f2118eda2a5fcc2e5f909a608477a856272adadcb48e1373747c51d2d3f6fc2ef8282604051610bab929190613ceb565b60405180910390a15050565b606060008054610bc690614343565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf290614343565b8015610c3f5780601f10610c1457610100808354040283529160200191610c3f565b820191906000526020600020905b815481529060010190602001808311610c2257829003601f168201915b5050505050905090565b6000610c548261264a565b610c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8a90613f13565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cd982611769565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4190613fb3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d69612624565b73ffffffffffffffffffffffffffffffffffffffff161480610d985750610d9781610d92612624565b612167565b5b610dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dce90613e73565b60405180910390fd5b610de183836126b6565b505050565b60095481565b610dfd610df7612624565b8261276f565b610e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3390613ff3565b60405180910390fd5b610e4783838361284d565b505050565b60606000610e598361182e565b67ffffffffffffffff811115610e98577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610ec65781602001602082028036833780820191505090505b5090506000805b600a54811015610f7b578473ffffffffffffffffffffffffffffffffffffffff16610ef782611769565b73ffffffffffffffffffffffffffffffffffffffff161415610f685780838381518110610f4d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508180610f64906143a6565b9250505b8080610f73906143a6565b915050610ecd565b508192505050919050565b610f8e612624565b73ffffffffffffffffffffffffffffffffffffffff16610fac611a0d565b73ffffffffffffffffffffffffffffffffffffffff1614611002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff990613f33565b60405180910390fd5b60005b82518110156110e557818181518110611047577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516010600085848151811061108c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806110dd906143a6565b915050611005565b505050565b6110f2612624565b73ffffffffffffffffffffffffffffffffffffffff16611110611a0d565b73ffffffffffffffffffffffffffffffffffffffff1614611166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115d90613f33565b60405180910390fd5b8181600791906111779291906131e2565b505050565b60106020528060005260406000206000915090505481565b61119c612624565b73ffffffffffffffffffffffffffffffffffffffff166111ba611a0d565b73ffffffffffffffffffffffffffffffffffffffff1614611210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120790613f33565b60405180910390fd5b80600660156101000a81548160ff02191690831515021790555050565b61124883838360405180602001604052806000815250611d4e565b505050565b611255612624565b73ffffffffffffffffffffffffffffffffffffffff16611273611a0d565b73ffffffffffffffffffffffffffffffffffffffff16146112c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c090613f33565b60405180910390fd5b80600081518110611303577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600181518110611385577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600281518110611407577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600381518110611489577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606114df32610e4c565b905090565b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600660159054906101000a900460ff16611577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156e90613f93565b60405180910390fd5b600081116115ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b190614013565b60405180910390fd5b600954600a54836115cb9190614178565b111561160c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160390613fd3565b60405180910390fd5b8160085461161a91906141ff565b341461165b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165290613df3565b60405180910390fd5b81816116679190614259565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b828110156116f2576000600a5490506116c6338261262c565b600a60008154809291906116d9906143a6565b91905055505080806116ea906143a6565b9150506116ad565b507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968853383604051611724929190613ceb565b60405180910390a15050565b600660159054906101000a900460ff1681565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611812576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180990613eb3565b60405180910390fd5b80915050919050565b600660149054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561189f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189690613e93565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118ee612624565b73ffffffffffffffffffffffffffffffffffffffff1661190c611a0d565b73ffffffffffffffffffffffffffffffffffffffff1614611962576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195990613f33565b60405180910390fd5b61196c6000612aa9565b565b600b5481565b61197c612624565b73ffffffffffffffffffffffffffffffffffffffff1661199a611a0d565b73ffffffffffffffffffffffffffffffffffffffff16146119f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e790613f33565b60405180910390fd5b80600660146101000a81548160ff02191690831515021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611a65612624565b73ffffffffffffffffffffffffffffffffffffffff16611a83611a0d565b73ffffffffffffffffffffffffffffffffffffffff1614611ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad090613f33565b60405180910390fd5b8060088190555050565b606060018054611af290614343565b80601f0160208091040260200160405190810160405280929190818152602001828054611b1e90614343565b8015611b6b5780601f10611b4057610100808354040283529160200191611b6b565b820191906000526020600020905b815481529060010190602001808311611b4e57829003601f168201915b5050505050905090565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60085481565b611ba9612624565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0e90613e33565b60405180910390fd5b8060056000611c24612624565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611cd1612624565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d169190613d36565b60405180910390a35050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b611d5f611d59612624565b8361276f565b611d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9590613ff3565b60405180910390fd5b611daa84848484612b6f565b50505050565b611db8612624565b73ffffffffffffffffffffffffffffffffffffffff16611dd6611a0d565b73ffffffffffffffffffffffffffffffffffffffff1614611e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2390613f33565b60405180910390fd5b80600b8190555050565b6060611e418261264a565b611e80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7790613f73565b60405180910390fd5b6000611e8a612bcb565b90506000815111611eaa5760405180602001604052806000815250611ed5565b80611eb484612c5d565b604051602001611ec5929190613c60565b6040516020818303038152906040525b915050919050565b600660149054906101000a900460ff16611f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2390613ef3565b60405180910390fd5b600b5481111580611f3d5750600181105b611f7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7390613dd3565b60405180910390fd5b600954600a5482611f8d9190614178565b1115611fce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc590613fd3565b60405180910390fd5b80600854611fdc91906141ff565b341461201d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201490613df3565b60405180910390fd5b60005b81811015612065576000600a549050612039338261262c565b600a600081548092919061204c906143a6565b919050555050808061205d906143a6565b915050612020565b507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968853382604051612097929190613ceb565b60405180910390a150565b6120aa612624565b73ffffffffffffffffffffffffffffffffffffffff166120c8611a0d565b73ffffffffffffffffffffffffffffffffffffffff161461211e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211590613f33565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015612164573d6000803e3d6000fd5b50565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612203612624565b73ffffffffffffffffffffffffffffffffffffffff16612221611a0d565b73ffffffffffffffffffffffffffffffffffffffff1614612277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226e90613f33565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122de90613d93565b60405180910390fd5b6122f081612aa9565b50565b6122fb612624565b73ffffffffffffffffffffffffffffffffffffffff16612319611a0d565b73ffffffffffffffffffffffffffffffffffffffff161461236f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236690613f33565b60405180910390fd5b8060098190555050565b612381612624565b73ffffffffffffffffffffffffffffffffffffffff1661239f611a0d565b73ffffffffffffffffffffffffffffffffffffffff16146123f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ec90613f33565b60405180910390fd5b600060648261240491906141ce565b9050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60238361244f91906141ff565b9081150290604051600060405180830381858888f1935050505061247257600080fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6023836124bb91906141ff565b9081150290604051600060405180830381858888f193505050506124de57600080fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60198361252791906141ff565b9081150290604051600060405180830381858888f1935050505061254a57600080fd5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60058361259391906141ff565b9081150290604051600060405180830381858888f193505050506125b657600080fd5b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b612646828260405180602001604052806000815250612e0a565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661272983611769565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061277a8261264a565b6127b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b090613e53565b60405180910390fd5b60006127c483611769565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061283357508373ffffffffffffffffffffffffffffffffffffffff1661281b84610c49565b73ffffffffffffffffffffffffffffffffffffffff16145b8061284457506128438185612167565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661286d82611769565b73ffffffffffffffffffffffffffffffffffffffff16146128c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ba90613f53565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292a90613e13565b60405180910390fd5b61293e838383612e65565b6129496000826126b6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129999190614259565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129f09190614178565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612b7a84848461284d565b612b8684848484612e6a565b612bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbc90613d73565b60405180910390fd5b50505050565b606060078054612bda90614343565b80601f0160208091040260200160405190810160405280929190818152602001828054612c0690614343565b8015612c535780601f10612c2857610100808354040283529160200191612c53565b820191906000526020600020905b815481529060010190602001808311612c3657829003601f168201915b5050505050905090565b60606000821415612ca5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e05565b600082905060005b60008214612cd7578080612cc0906143a6565b915050600a82612cd091906141ce565b9150612cad565b60008167ffffffffffffffff811115612d19577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612d4b5781602001600182028036833780820191505090505b5090505b60008514612dfe57600182612d649190614259565b9150600a85612d7391906143ef565b6030612d7f9190614178565b60f81b818381518110612dbb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612df791906141ce565b9450612d4f565b8093505050505b919050565b612e148383613001565b612e216000848484612e6a565b612e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5790613d73565b60405180910390fd5b505050565b505050565b6000612e8b8473ffffffffffffffffffffffffffffffffffffffff166131cf565b15612ff4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612eb4612624565b8786866040518563ffffffff1660e01b8152600401612ed69493929190613c9f565b602060405180830381600087803b158015612ef057600080fd5b505af1925050508015612f2157506040513d601f19601f82011682018060405250810190612f1e9190613772565b60015b612fa4573d8060008114612f51576040519150601f19603f3d011682016040523d82523d6000602084013e612f56565b606091505b50600081511415612f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9390613d73565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ff9565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306890613ed3565b60405180910390fd5b61307a8161264a565b156130ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130b190613db3565b60405180910390fd5b6130c660008383612e65565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131169190614178565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546131ee90614343565b90600052602060002090601f0160209004810192826132105760008555613257565b82601f1061322957803560ff1916838001178555613257565b82800160010185558215613257579182015b8281111561325657823582559160200191906001019061323b565b5b5090506132649190613268565b5090565b5b80821115613281576000816000905550600101613269565b5090565b600061329861329384614073565b61404e565b905080838252602082019050828560208602820111156132b757600080fd5b60005b858110156132e757816132cd888261339b565b8452602084019350602083019250506001810190506132ba565b5050509392505050565b60006133046132ff8461409f565b61404e565b9050808382526020820190508285602086028201111561332357600080fd5b60005b85811015613353578161333988826134b7565b845260208401935060208301925050600181019050613326565b5050509392505050565b600061337061336b846140cb565b61404e565b90508281526020810184848401111561338857600080fd5b613393848285614301565b509392505050565b6000813590506133aa81614ad3565b92915050565b600082601f8301126133c157600080fd5b81356133d1848260208601613285565b91505092915050565b600082601f8301126133eb57600080fd5b81356133fb8482602086016132f1565b91505092915050565b60008135905061341381614aea565b92915050565b60008135905061342881614b01565b92915050565b60008151905061343d81614b01565b92915050565b600082601f83011261345457600080fd5b813561346484826020860161335d565b91505092915050565b60008083601f84011261347f57600080fd5b8235905067ffffffffffffffff81111561349857600080fd5b6020830191508360018202830111156134b057600080fd5b9250929050565b6000813590506134c681614b18565b92915050565b6000602082840312156134de57600080fd5b60006134ec8482850161339b565b91505092915050565b6000806040838503121561350857600080fd5b60006135168582860161339b565b92505060206135278582860161339b565b9150509250929050565b60008060006060848603121561354657600080fd5b60006135548682870161339b565b93505060206135658682870161339b565b9250506040613576868287016134b7565b9150509250925092565b6000806000806080858703121561359657600080fd5b60006135a48782880161339b565b94505060206135b58782880161339b565b93505060406135c6878288016134b7565b925050606085013567ffffffffffffffff8111156135e357600080fd5b6135ef87828801613443565b91505092959194509250565b6000806040838503121561360e57600080fd5b600061361c8582860161339b565b925050602061362d85828601613404565b9150509250929050565b6000806040838503121561364a57600080fd5b60006136588582860161339b565b9250506020613669858286016134b7565b9150509250929050565b60006020828403121561368557600080fd5b600082013567ffffffffffffffff81111561369f57600080fd5b6136ab848285016133b0565b91505092915050565b600080604083850312156136c757600080fd5b600083013567ffffffffffffffff8111156136e157600080fd5b6136ed858286016133b0565b925050602083013567ffffffffffffffff81111561370a57600080fd5b613716858286016133da565b9150509250929050565b60006020828403121561373257600080fd5b600061374084828501613404565b91505092915050565b60006020828403121561375b57600080fd5b600061376984828501613419565b91505092915050565b60006020828403121561378457600080fd5b60006137928482850161342e565b91505092915050565b600080602083850312156137ae57600080fd5b600083013567ffffffffffffffff8111156137c857600080fd5b6137d48582860161346d565b92509250509250929050565b6000602082840312156137f257600080fd5b6000613800848285016134b7565b91505092915050565b60006138158383613c42565b60208301905092915050565b61382a8161428d565b82525050565b600061383b8261410c565b613845818561413a565b9350613850836140fc565b8060005b838110156138815781516138688882613809565b97506138738361412d565b925050600181019050613854565b5085935050505092915050565b6138978161429f565b82525050565b60006138a882614117565b6138b2818561414b565b93506138c2818560208601614310565b6138cb816144dc565b840191505092915050565b60006138e182614122565b6138eb818561415c565b93506138fb818560208601614310565b613904816144dc565b840191505092915050565b600061391a82614122565b613924818561416d565b9350613934818560208601614310565b80840191505092915050565b600061394d60328361415c565b9150613958826144ed565b604082019050919050565b600061397060268361415c565b915061397b8261453c565b604082019050919050565b6000613993601c8361415c565b915061399e8261458b565b602082019050919050565b60006139b660248361415c565b91506139c1826145b4565b604082019050919050565b60006139d960168361415c565b91506139e482614603565b602082019050919050565b60006139fc60248361415c565b9150613a078261462c565b604082019050919050565b6000613a1f60198361415c565b9150613a2a8261467b565b602082019050919050565b6000613a42602c8361415c565b9150613a4d826146a4565b604082019050919050565b6000613a6560388361415c565b9150613a70826146f3565b604082019050919050565b6000613a88602a8361415c565b9150613a9382614742565b604082019050919050565b6000613aab60298361415c565b9150613ab682614791565b604082019050919050565b6000613ace60208361415c565b9150613ad9826147e0565b602082019050919050565b6000613af1601f8361415c565b9150613afc82614809565b602082019050919050565b6000613b14602c8361415c565b9150613b1f82614832565b604082019050919050565b6000613b3760208361415c565b9150613b4282614881565b602082019050919050565b6000613b5a60298361415c565b9150613b65826148aa565b604082019050919050565b6000613b7d602f8361415c565b9150613b88826148f9565b604082019050919050565b6000613ba060228361415c565b9150613bab82614948565b604082019050919050565b6000613bc360218361415c565b9150613bce82614997565b604082019050919050565b6000613be660218361415c565b9150613bf1826149e6565b604082019050919050565b6000613c0960318361415c565b9150613c1482614a35565b604082019050919050565b6000613c2c60268361415c565b9150613c3782614a84565b604082019050919050565b613c4b816142f7565b82525050565b613c5a816142f7565b82525050565b6000613c6c828561390f565b9150613c78828461390f565b91508190509392505050565b6000602082019050613c996000830184613821565b92915050565b6000608082019050613cb46000830187613821565b613cc16020830186613821565b613cce6040830185613c51565b8181036060830152613ce0818461389d565b905095945050505050565b6000604082019050613d006000830185613821565b613d0d6020830184613c51565b9392505050565b60006020820190508181036000830152613d2e8184613830565b905092915050565b6000602082019050613d4b600083018461388e565b92915050565b60006020820190508181036000830152613d6b81846138d6565b905092915050565b60006020820190508181036000830152613d8c81613940565b9050919050565b60006020820190508181036000830152613dac81613963565b9050919050565b60006020820190508181036000830152613dcc81613986565b9050919050565b60006020820190508181036000830152613dec816139a9565b9050919050565b60006020820190508181036000830152613e0c816139cc565b9050919050565b60006020820190508181036000830152613e2c816139ef565b9050919050565b60006020820190508181036000830152613e4c81613a12565b9050919050565b60006020820190508181036000830152613e6c81613a35565b9050919050565b60006020820190508181036000830152613e8c81613a58565b9050919050565b60006020820190508181036000830152613eac81613a7b565b9050919050565b60006020820190508181036000830152613ecc81613a9e565b9050919050565b60006020820190508181036000830152613eec81613ac1565b9050919050565b60006020820190508181036000830152613f0c81613ae4565b9050919050565b60006020820190508181036000830152613f2c81613b07565b9050919050565b60006020820190508181036000830152613f4c81613b2a565b9050919050565b60006020820190508181036000830152613f6c81613b4d565b9050919050565b60006020820190508181036000830152613f8c81613b70565b9050919050565b60006020820190508181036000830152613fac81613b93565b9050919050565b60006020820190508181036000830152613fcc81613bb6565b9050919050565b60006020820190508181036000830152613fec81613bd9565b9050919050565b6000602082019050818103600083015261400c81613bfc565b9050919050565b6000602082019050818103600083015261402c81613c1f565b9050919050565b60006020820190506140486000830184613c51565b92915050565b6000614058614069565b90506140648282614375565b919050565b6000604051905090565b600067ffffffffffffffff82111561408e5761408d6144ad565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156140ba576140b96144ad565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156140e6576140e56144ad565b5b6140ef826144dc565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614183826142f7565b915061418e836142f7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141c3576141c2614420565b5b828201905092915050565b60006141d9826142f7565b91506141e4836142f7565b9250826141f4576141f361444f565b5b828204905092915050565b600061420a826142f7565b9150614215836142f7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561424e5761424d614420565b5b828202905092915050565b6000614264826142f7565b915061426f836142f7565b92508282101561428257614281614420565b5b828203905092915050565b6000614298826142d7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561432e578082015181840152602081019050614313565b8381111561433d576000848401525b50505050565b6000600282049050600182168061435b57607f821691505b6020821081141561436f5761436e61447e565b5b50919050565b61437e826144dc565b810181811067ffffffffffffffff8211171561439d5761439c6144ad565b5b80604052505050565b60006143b1826142f7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143e4576143e3614420565b5b600182019050919050565b60006143fa826142f7565b9150614405836142f7565b9250826144155761441461444f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5452414e53414354494f4e3a20717479206f66206d696e7473206e6f7420616c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b7f5041594d454e543a20696e76616c69642076616c756500000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f5452414e53414354494f4e3a2073616c65206973206e6f742061637469766500600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5452414e53414354494f4e3a2050726573616c65206973206e6f74206163746960008201527f7665000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f535550504c593a2056616c7565206578636565647320746f74616c537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f5452414e53414354494f4e3a20596f752063616e2774206d696e74206f6e207060008201527f726573616c650000000000000000000000000000000000000000000000000000602082015250565b614adc8161428d565b8114614ae757600080fd5b50565b614af38161429f565b8114614afe57600080fd5b50565b614b0a816142ab565b8114614b1557600080fd5b50565b614b21816142f7565b8114614b2c57600080fd5b5056fea2646970667358221220ad176ccc581cd347ab30889f6e9fca421485089ee6e38418e117a2fb6c4363fd64736f6c63430008040033

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.