ETH Price: $3,355.92 (-1.76%)
Gas: 8 Gwei

Token

TheNeed (NEED)
 

Overview

Max Total Supply

196 NEED

Holders

106

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
12x35.eth
Balance
4 NEED
0x7A86dF14ADba1ef38aa12e5727C7ac20bf7d70Ad
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
TheNeed

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : TheNeed.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

/**

 ______   __  __     ______     __   __     ______     ______     _____    
/\__  _\ /\ \_\ \   /\  ___\   /\ "-.\ \   /\  ___\   /\  ___\   /\  __-.  
\/_/\ \/ \ \  __ \  \ \  __\   \ \ \-.  \  \ \  __\   \ \  __\   \ \ \/\ \ 
   \ \_\  \ \_\ \_\  \ \_____\  \ \_\\"\_\  \ \_____\  \ \_____\  \ \____- 
    \/_/   \/_/\/_/   \/_____/   \/_/ \/_/   \/_____/   \/_____/   \/____/ 
The Need 2022.                                                                  
 */

contract TheNeed is ERC721, Ownable {

    address public constant ADDRESS_1 = 0xB61bec1C7dA88d905b8b749f1222ce5d889b98B8;
    address public constant ADDRESS_2 = 0x22AE23Bf8A61301e9Fc36A23a759D681BA315470;
    address public constant ADDRESS_3 = 0xA9441365eaF746560c6C7525b8E0CF2d238E37bf;
    address public constant ADDRESS_4 = 0x03313d6CD88874a9c4344b6da1F8f77A652a463B;
    address public constant ADDRESS_5 = 0xC5aa93fF62C372E1097B8c04A313a7d9C16dd301;
    address public constant ADDRESS_6 = 0xDeDfA9DE0BBCA5234a4fc4500f7070048188533d; 

    mapping(uint256 => bool) private burnedTokens;
    mapping (address => uint256) public presaleWhitelist;
    bool public presaleActive = false;
    bool public saleActive = false;
    bool public ownerActive = false;
    uint256 public currentSupply;
    uint256 public maxSupply;
    uint256 public price = 0.1 ether;
    uint256 public bC = 9999;


    string private baseURI = "";
    

 constructor() ERC721("TheNeed", "NEED") { 
    }
    
    function totalSupply() external view returns (uint) {
        return currentSupply;
    }

    function mintPresale(uint256 numberOfMints) public payable {
        uint256 supply = currentSupply;
        uint256 reserved = presaleWhitelist[msg.sender];
        require(presaleActive, "No presale active");
        require(reserved > 0, "This address is not authorized for presale");
        require(numberOfMints <= reserved, "Exceeded allowed amount");
        require(supply + numberOfMints <= maxSupply, "This would exceed the max number of allowed nft");
        require(numberOfMints * price <= msg.value, "Amount of ether is not enough");

        presaleWhitelist[msg.sender] = reserved - numberOfMints;
        currentSupply += numberOfMints;

        for(uint256 i; i < numberOfMints; i++){
            _mint(msg.sender, supply + i);
        }
    }

    function mint(uint256 numberOfMints) public payable {
        uint256 supply = currentSupply;
        require(saleActive, "Sale must be active to mint");
        require(numberOfMints <= 10, "Invalid purchase amount");
        require(supply + numberOfMints <= maxSupply, "Mint would exceed max supply of nft");
        require(numberOfMints * price <= msg.value, "Amount of ether is not enough");

        currentSupply += numberOfMints;

        for(uint256 i; i < numberOfMints; i++) {
            _mint(msg.sender, supply + i);
        }
    }

        function ownerMint(uint256 numberOfMints) public payable {
        uint256 supply = currentSupply;
        require(ownerActive, "Owner Sale must be active to mint");
        require(balanceOf(msg.sender) >= 3);
        require(numberOfMints <= 2, "Invalid purchase amount");
        require(supply + numberOfMints <= maxSupply, "Mint would exceed max supply of nft");
        require(numberOfMints * price <= msg.value, "Amount of ether is not enough");

        currentSupply += numberOfMints;

        for(uint256 i; i < numberOfMints; i++) {
            _mint(msg.sender, supply + i);
        }
    }

    function airdrop(address[] calldata addresses) external onlyOwner {
        uint256 supply = currentSupply;
        require(supply+ addresses.length <= maxSupply,  "This would exceed the max number of allowed nft");
        currentSupply += addresses.length;
        for (uint256 i; i < addresses.length ; i++) {
            _mint(addresses[i], supply + i);
        }
    }
    
    function editPresale(address[] calldata presaleAddresses, uint256[] calldata amount) external onlyOwner {
        for(uint256 i; i < presaleAddresses.length; i++){
            presaleWhitelist[presaleAddresses[i]] = amount[i];
        }
    }
    
    function editPresaleSingle(address[] calldata presaleAddresses, uint256 amount) external onlyOwner {
        for(uint256 i; i < presaleAddresses.length; i++){
            presaleWhitelist[presaleAddresses[i]] = amount;
        }
    }

    function togglePresale() external onlyOwner {
        presaleActive = !presaleActive;
    }

    function toggleSale() external onlyOwner {
        saleActive = !saleActive;
    }
    function toggleOwner() external onlyOwner {
        ownerActive = !ownerActive;
    }
    function setPrice(uint256 newPrice) external onlyOwner {
        price = newPrice;
    }
    function setSupply(uint256 supply) external onlyOwner {
        require(supply < 10000);
        maxSupply = supply;
    }

    
    function withdrawAll() external onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "Balance is 0");
        payable(ADDRESS_1).transfer(balance * 50 / 1000);
        payable(ADDRESS_2).transfer(balance * 150 / 1000);
        payable(ADDRESS_3).transfer(balance * 150 / 1000);
        payable(ADDRESS_4).transfer(balance * 75 / 1000);
        payable(ADDRESS_5).transfer(balance * 400 / 1000);
        payable(ADDRESS_6).transfer(balance * 175 / 1000);

    }

    function setBaseURI(string memory _uri) external onlyOwner {
        baseURI = _uri;
    }

    function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) {
        require(_exists(tokenId), "Cannot query non-existent token");
        return string(abi.encodePacked(baseURI, Strings.toString(tokenId)));
    }

    function tokensOfOwner(address _owner, uint startId, uint endId) external view returns(uint256[] memory ) {
      uint256 tokenCount = balanceOf(_owner);
      if (tokenCount == 0) {
        return new uint256[](0);
      } else {
        uint256[] memory result = new uint256[](tokenCount);
        uint256 index = 0;
        for (uint256 tokenId = startId; tokenId < endId; tokenId++) {
            if (index == tokenCount) break;

            if (ownerOf(tokenId) == _owner) {
                result[index] = tokenId;
                index++;
            }
        }

        return result;
      }
    }

    function walletOfOwner(address _owner) external view returns(uint256[] memory ) {
      return this.tokensOfOwner(_owner, 0, currentSupply);
    }
    function burn(
        address _owner,
        uint256 token1,
        uint256 token2,
        uint256 token3,
        uint256 token4

    ) external  {
        require(
            ownerOf(token1) == _owner &&
                ownerOf(token2) == _owner &&
                ownerOf(token3) == _owner &&
                ownerOf(token4) == _owner,
            "Invalid owner for given tokens."
        );

        _burn(token1);
        _burn(token2);
        _burn(token3);
        _burn(token4);

        burnedTokens[token1] = true;
        burnedTokens[token2] = true;
        burnedTokens[token3] = true;
        burnedTokens[token4] = true;
        _safeMint(_msgSender(), bC + 1);
        bC += 1;


    
    }



}

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 : 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 4 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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

File 5 of 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 6 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 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);
    }

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

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

File 8 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 9 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 10 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 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
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ADDRESS_1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ADDRESS_2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ADDRESS_3","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ADDRESS_4","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ADDRESS_5","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ADDRESS_6","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"bC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"token1","type":"uint256"},{"internalType":"uint256","name":"token2","type":"uint256"},{"internalType":"uint256","name":"token3","type":"uint256"},{"internalType":"uint256","name":"token4","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"presaleAddresses","type":"address[]"},{"internalType":"uint256[]","name":"amount","type":"uint256[]"}],"name":"editPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"presaleAddresses","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"editPresaleSingle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfMints","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfMints","type":"uint256"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownerActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfMints","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"payable","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":"presaleWhitelist","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":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"name":"setSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"startId","type":"uint256"},{"internalType":"uint256","name":"endId","type":"uint256"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600960006101000a81548160ff0219169083151502179055506000600960016101000a81548160ff0219169083151502179055506000600960026101000a81548160ff02191690831515021790555067016345785d8a0000600c5561270f600d5560405180602001604052806000815250600e90805190602001906200008e92919062000231565b503480156200009c57600080fd5b506040518060400160405280600781526020017f5468654e656564000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4e4545440000000000000000000000000000000000000000000000000000000081525081600090805190602001906200012192919062000231565b5080600190805190602001906200013a92919062000231565b5050506200015d620001516200016360201b60201c565b6200016b60201b60201c565b62000346565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200023f9062000310565b90600052602060002090601f016020900481019282620002635760008555620002af565b82601f106200027e57805160ff1916838001178555620002af565b82800160010185558215620002af579182015b82811115620002ae57825182559160200191906001019062000291565b5b509050620002be9190620002c2565b5090565b5b80821115620002dd576000816000905550600101620002c3565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200032957607f821691505b6020821081141562000340576200033f620002e1565b5b50919050565b6154ff80620003566000396000f3fe6080604052600436106102885760003560e01c8063771282f61161015a578063b88d4fde116100c1578063eb8835ab1161007a578063eb8835ab14610975578063ed73bda9146109b2578063edc2ac02146109dd578063f19e75d414610a08578063f2fde38b14610a24578063f759867a14610a4d57610288565b8063b88d4fde1461083f578063c839fe9414610868578063c87b56dd146108a5578063d5abeb01146108e2578063de97536b1461090d578063e985e9c51461093857610288565b806391b7f5ed1161011357806391b7f5ed1461075057806395d89b4114610779578063a035b1fe146107a4578063a0712d68146107cf578063a22cb465146107eb578063b08da3421461081457610288565b8063771282f61461068a5780637a9ec6ec146106b55780637d8966e4146106cc5780638369788d146106e3578063853828b61461070e5780638da5cb5b1461072557610288565b80633812a379116101fe57806355f804b3116101b757806355f804b31461057c5780636352211e146105a557806368428a1b146105e257806370a082311461060d578063715018a61461064a578063729ad39e1461066157610288565b80633812a3791461046c5780633b4c4b251461049757806342842e0e146104c0578063438b6300146104e957806353135ca0146105265780635493ada21461055157610288565b806318160ddd1161025057806318160ddd146103845780631a116511146103af57806323b872dd146103d857806326ed7155146104015780632b01e68d1461042a578063343937431461045557610288565b806301ffc9a71461028d57806306fdde03146102ca57806308026366146102f5578063081812fc1461031e578063095ea7b31461035b575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190613767565b610a69565b6040516102c191906137af565b60405180910390f35b3480156102d657600080fd5b506102df610b4b565b6040516102ec9190613863565b60405180910390f35b34801561030157600080fd5b5061031c60048036038101906103179190613920565b610bdd565b005b34801561032a57600080fd5b5061034560048036038101906103409190613980565b610ceb565b60405161035291906139ee565b60405180910390f35b34801561036757600080fd5b50610382600480360381019061037d9190613a35565b610d70565b005b34801561039057600080fd5b50610399610e88565b6040516103a69190613a84565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190613a9f565b610e92565b005b3480156103e457600080fd5b506103ff60048036038101906103fa9190613b1a565b6110d9565b005b34801561040d57600080fd5b5061042860048036038101906104239190613bc3565b611139565b005b34801561043657600080fd5b5061043f611261565b60405161044c91906139ee565b60405180910390f35b34801561046157600080fd5b5061046a611279565b005b34801561047857600080fd5b50610481611321565b60405161048e91906137af565b60405180910390f35b3480156104a357600080fd5b506104be60048036038101906104b99190613980565b611334565b005b3480156104cc57600080fd5b506104e760048036038101906104e29190613b1a565b6113c8565b005b3480156104f557600080fd5b50610510600480360381019061050b9190613c44565b6113e8565b60405161051d9190613d2f565b60405180910390f35b34801561053257600080fd5b5061053b611477565b60405161054891906137af565b60405180910390f35b34801561055d57600080fd5b5061056661148a565b60405161057391906139ee565b60405180910390f35b34801561058857600080fd5b506105a3600480360381019061059e9190613e81565b6114a2565b005b3480156105b157600080fd5b506105cc60048036038101906105c79190613980565b611538565b6040516105d991906139ee565b60405180910390f35b3480156105ee57600080fd5b506105f76115ea565b60405161060491906137af565b60405180910390f35b34801561061957600080fd5b50610634600480360381019061062f9190613c44565b6115fd565b6040516106419190613a84565b60405180910390f35b34801561065657600080fd5b5061065f6116b5565b005b34801561066d57600080fd5b5061068860048036038101906106839190613eca565b61173d565b005b34801561069657600080fd5b5061069f611892565b6040516106ac9190613a84565b60405180910390f35b3480156106c157600080fd5b506106ca611898565b005b3480156106d857600080fd5b506106e1611940565b005b3480156106ef57600080fd5b506106f86119e8565b60405161070591906139ee565b60405180910390f35b34801561071a57600080fd5b50610723611a00565b005b34801561073157600080fd5b5061073a611d80565b60405161074791906139ee565b60405180910390f35b34801561075c57600080fd5b5061077760048036038101906107729190613980565b611daa565b005b34801561078557600080fd5b5061078e611e30565b60405161079b9190613863565b60405180910390f35b3480156107b057600080fd5b506107b9611ec2565b6040516107c69190613a84565b60405180910390f35b6107e960048036038101906107e49190613980565b611ec8565b005b3480156107f757600080fd5b50610812600480360381019061080d9190613f43565b612053565b005b34801561082057600080fd5b506108296121d4565b60405161083691906139ee565b60405180910390f35b34801561084b57600080fd5b5061086660048036038101906108619190614024565b6121ec565b005b34801561087457600080fd5b5061088f600480360381019061088a91906140a7565b61224e565b60405161089c9190613d2f565b60405180910390f35b3480156108b157600080fd5b506108cc60048036038101906108c79190613980565b6123ae565b6040516108d99190613863565b60405180910390f35b3480156108ee57600080fd5b506108f761242a565b6040516109049190613a84565b60405180910390f35b34801561091957600080fd5b50610922612430565b60405161092f91906139ee565b60405180910390f35b34801561094457600080fd5b5061095f600480360381019061095a91906140fa565b612448565b60405161096c91906137af565b60405180910390f35b34801561098157600080fd5b5061099c60048036038101906109979190613c44565b6124dc565b6040516109a99190613a84565b60405180910390f35b3480156109be57600080fd5b506109c76124f4565b6040516109d49190613a84565b60405180910390f35b3480156109e957600080fd5b506109f26124fa565b6040516109ff91906139ee565b60405180910390f35b610a226004803603810190610a1d9190613980565b612512565b005b348015610a3057600080fd5b50610a4b6004803603810190610a469190613c44565b6126b3565b005b610a676004803603810190610a629190613980565b6127ab565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b3457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b445750610b4382612a0c565b5b9050919050565b606060008054610b5a90614169565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8690614169565b8015610bd35780601f10610ba857610100808354040283529160200191610bd3565b820191906000526020600020905b815481529060010190602001808311610bb657829003601f168201915b5050505050905090565b610be5612a76565b73ffffffffffffffffffffffffffffffffffffffff16610c03611d80565b73ffffffffffffffffffffffffffffffffffffffff1614610c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c50906141e7565b60405180910390fd5b60005b83839050811015610ce5578160086000868685818110610c7f57610c7e614207565b5b9050602002016020810190610c949190613c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080610cdd90614265565b915050610c5c565b50505050565b6000610cf682612a7e565b610d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2c90614320565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d7b82611538565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de3906143b2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e0b612a76565b73ffffffffffffffffffffffffffffffffffffffff161480610e3a5750610e3981610e34612a76565b612448565b5b610e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7090614444565b60405180910390fd5b610e838383612aea565b505050565b6000600a54905090565b8473ffffffffffffffffffffffffffffffffffffffff16610eb285611538565b73ffffffffffffffffffffffffffffffffffffffff16148015610f0857508473ffffffffffffffffffffffffffffffffffffffff16610ef084611538565b73ffffffffffffffffffffffffffffffffffffffff16145b8015610f4757508473ffffffffffffffffffffffffffffffffffffffff16610f2f83611538565b73ffffffffffffffffffffffffffffffffffffffff16145b8015610f8657508473ffffffffffffffffffffffffffffffffffffffff16610f6e82611538565b73ffffffffffffffffffffffffffffffffffffffff16145b610fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbc906144b0565b60405180910390fd5b610fce84612ba3565b610fd783612ba3565b610fe082612ba3565b610fe981612ba3565b60016007600086815260200190815260200160002060006101000a81548160ff02191690831515021790555060016007600085815260200190815260200160002060006101000a81548160ff02191690831515021790555060016007600084815260200190815260200160002060006101000a81548160ff02191690831515021790555060016007600083815260200190815260200160002060006101000a81548160ff0219169083151502179055506110b86110a4612a76565b6001600d546110b391906144d0565b612cb4565b6001600d60008282546110cb91906144d0565b925050819055505050505050565b6110ea6110e4612a76565b82612cd2565b611129576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112090614598565b60405180910390fd5b611134838383612db0565b505050565b611141612a76565b73ffffffffffffffffffffffffffffffffffffffff1661115f611d80565b73ffffffffffffffffffffffffffffffffffffffff16146111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ac906141e7565b60405180910390fd5b60005b8484905081101561125a578282828181106111d6576111d5614207565b5b90506020020135600860008787858181106111f4576111f3614207565b5b90506020020160208101906112099190613c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061125290614265565b9150506111b8565b5050505050565b73c5aa93ff62c372e1097b8c04a313a7d9c16dd30181565b611281612a76565b73ffffffffffffffffffffffffffffffffffffffff1661129f611d80565b73ffffffffffffffffffffffffffffffffffffffff16146112f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ec906141e7565b60405180910390fd5b600960009054906101000a900460ff1615600960006101000a81548160ff021916908315150217905550565b600960029054906101000a900460ff1681565b61133c612a76565b73ffffffffffffffffffffffffffffffffffffffff1661135a611d80565b73ffffffffffffffffffffffffffffffffffffffff16146113b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a7906141e7565b60405180910390fd5b61271081106113be57600080fd5b80600b8190555050565b6113e3838383604051806020016040528060008152506121ec565b505050565b60603073ffffffffffffffffffffffffffffffffffffffff1663c839fe94836000600a546040518463ffffffff1660e01b815260040161142a939291906145fd565b600060405180830381865afa158015611447573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611470919061470c565b9050919050565b600960009054906101000a900460ff1681565b73dedfa9de0bbca5234a4fc4500f7070048188533d81565b6114aa612a76565b73ffffffffffffffffffffffffffffffffffffffff166114c8611d80565b73ffffffffffffffffffffffffffffffffffffffff161461151e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611515906141e7565b60405180910390fd5b80600e9080519060200190611534929190613658565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d8906147c7565b60405180910390fd5b80915050919050565b600960019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561166e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166590614859565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116bd612a76565b73ffffffffffffffffffffffffffffffffffffffff166116db611d80565b73ffffffffffffffffffffffffffffffffffffffff1614611731576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611728906141e7565b60405180910390fd5b61173b600061300c565b565b611745612a76565b73ffffffffffffffffffffffffffffffffffffffff16611763611d80565b73ffffffffffffffffffffffffffffffffffffffff16146117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b0906141e7565b60405180910390fd5b6000600a549050600b5483839050826117d291906144d0565b1115611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180a906148eb565b60405180910390fd5b82829050600a600082825461182891906144d0565b9250508190555060005b8383905081101561188c5761187984848381811061185357611852614207565b5b90506020020160208101906118689190613c44565b828461187491906144d0565b6130d2565b808061188490614265565b915050611832565b50505050565b600a5481565b6118a0612a76565b73ffffffffffffffffffffffffffffffffffffffff166118be611d80565b73ffffffffffffffffffffffffffffffffffffffff1614611914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190b906141e7565b60405180910390fd5b600960029054906101000a900460ff1615600960026101000a81548160ff021916908315150217905550565b611948612a76565b73ffffffffffffffffffffffffffffffffffffffff16611966611d80565b73ffffffffffffffffffffffffffffffffffffffff16146119bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b3906141e7565b60405180910390fd5b600960019054906101000a900460ff1615600960016101000a81548160ff021916908315150217905550565b7303313d6cd88874a9c4344b6da1f8f77a652a463b81565b611a08612a76565b73ffffffffffffffffffffffffffffffffffffffff16611a26611d80565b73ffffffffffffffffffffffffffffffffffffffff1614611a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a73906141e7565b60405180910390fd5b600047905060008111611ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abb90614957565b60405180910390fd5b73b61bec1c7da88d905b8b749f1222ce5d889b98b873ffffffffffffffffffffffffffffffffffffffff166108fc6103e8603284611b029190614977565b611b0c9190614a00565b9081150290604051600060405180830381858888f19350505050158015611b37573d6000803e3d6000fd5b507322ae23bf8a61301e9fc36a23a759d681ba31547073ffffffffffffffffffffffffffffffffffffffff166108fc6103e8609684611b769190614977565b611b809190614a00565b9081150290604051600060405180830381858888f19350505050158015611bab573d6000803e3d6000fd5b5073a9441365eaf746560c6c7525b8e0cf2d238e37bf73ffffffffffffffffffffffffffffffffffffffff166108fc6103e8609684611bea9190614977565b611bf49190614a00565b9081150290604051600060405180830381858888f19350505050158015611c1f573d6000803e3d6000fd5b507303313d6cd88874a9c4344b6da1f8f77a652a463b73ffffffffffffffffffffffffffffffffffffffff166108fc6103e8604b84611c5e9190614977565b611c689190614a00565b9081150290604051600060405180830381858888f19350505050158015611c93573d6000803e3d6000fd5b5073c5aa93ff62c372e1097b8c04a313a7d9c16dd30173ffffffffffffffffffffffffffffffffffffffff166108fc6103e861019084611cd39190614977565b611cdd9190614a00565b9081150290604051600060405180830381858888f19350505050158015611d08573d6000803e3d6000fd5b5073dedfa9de0bbca5234a4fc4500f7070048188533d73ffffffffffffffffffffffffffffffffffffffff166108fc6103e860af84611d479190614977565b611d519190614a00565b9081150290604051600060405180830381858888f19350505050158015611d7c573d6000803e3d6000fd5b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611db2612a76565b73ffffffffffffffffffffffffffffffffffffffff16611dd0611d80565b73ffffffffffffffffffffffffffffffffffffffff1614611e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1d906141e7565b60405180910390fd5b80600c8190555050565b606060018054611e3f90614169565b80601f0160208091040260200160405190810160405280929190818152602001828054611e6b90614169565b8015611eb85780601f10611e8d57610100808354040283529160200191611eb8565b820191906000526020600020905b815481529060010190602001808311611e9b57829003601f168201915b5050505050905090565b600c5481565b6000600a549050600960019054906101000a900460ff16611f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1590614a7d565b60405180910390fd5b600a821115611f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5990614ae9565b60405180910390fd5b600b548282611f7191906144d0565b1115611fb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa990614b7b565b60405180910390fd5b34600c5483611fc19190614977565b1115612002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff990614be7565b60405180910390fd5b81600a600082825461201491906144d0565b9250508190555060005b8281101561204e5761203b33828461203691906144d0565b6130d2565b808061204690614265565b91505061201e565b505050565b61205b612a76565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c090614c53565b60405180910390fd5b80600560006120d6612a76565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612183612a76565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121c891906137af565b60405180910390a35050565b73b61bec1c7da88d905b8b749f1222ce5d889b98b881565b6121fd6121f7612a76565b83612cd2565b61223c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223390614598565b60405180910390fd5b612248848484846132a0565b50505050565b6060600061225b856115fd565b905060008114156122b857600067ffffffffffffffff81111561228157612280613d56565b5b6040519080825280602002602001820160405280156122af5781602001602082028036833780820191505090505b509150506123a7565b60008167ffffffffffffffff8111156122d4576122d3613d56565b5b6040519080825280602002602001820160405280156123025781602001602082028036833780820191505090505b5090506000808690505b8581101561239f57838214156123215761239f565b8773ffffffffffffffffffffffffffffffffffffffff1661234182611538565b73ffffffffffffffffffffffffffffffffffffffff16141561238c578083838151811061237157612370614207565b5b602002602001018181525050818061238890614265565b9250505b808061239790614265565b91505061230c565b508193505050505b9392505050565b60606123b982612a7e565b6123f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ef90614cbf565b60405180910390fd5b600e612403836132fc565b604051602001612414929190614daf565b6040516020818303038152906040529050919050565b600b5481565b7322ae23bf8a61301e9fc36a23a759d681ba31547081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60086020528060005260406000206000915090505481565b600d5481565b73a9441365eaf746560c6c7525b8e0cf2d238e37bf81565b6000600a549050600960029054906101000a900460ff16612568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255f90614e45565b60405180910390fd5b6003612573336115fd565b101561257e57600080fd5b60028211156125c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b990614ae9565b60405180910390fd5b600b5482826125d191906144d0565b1115612612576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260990614b7b565b60405180910390fd5b34600c54836126219190614977565b1115612662576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265990614be7565b60405180910390fd5b81600a600082825461267491906144d0565b9250508190555060005b828110156126ae5761269b33828461269691906144d0565b6130d2565b80806126a690614265565b91505061267e565b505050565b6126bb612a76565b73ffffffffffffffffffffffffffffffffffffffff166126d9611d80565b73ffffffffffffffffffffffffffffffffffffffff161461272f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612726906141e7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561279f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279690614ed7565b60405180910390fd5b6127a88161300c565b50565b6000600a5490506000600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600960009054906101000a900460ff16612845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283c90614f43565b60405180910390fd5b60008111612888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287f90614fd5565b60405180910390fd5b808311156128cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c290615041565b60405180910390fd5b600b5483836128da91906144d0565b111561291b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612912906148eb565b60405180910390fd5b34600c548461292a9190614977565b111561296b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296290614be7565b60405180910390fd5b82816129779190615061565b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555082600a60008282546129cc91906144d0565b9250508190555060005b83811015612a06576129f33382856129ee91906144d0565b6130d2565b80806129fe90614265565b9150506129d6565b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612b5d83611538565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612bae82611538565b9050612bbc8160008461345d565b612bc7600083612aea565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c179190615061565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b612cce828260405180602001604052806000815250613462565b5050565b6000612cdd82612a7e565b612d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1390615107565b60405180910390fd5b6000612d2783611538565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612d9657508373ffffffffffffffffffffffffffffffffffffffff16612d7e84610ceb565b73ffffffffffffffffffffffffffffffffffffffff16145b80612da75750612da68185612448565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612dd082611538565b73ffffffffffffffffffffffffffffffffffffffff1614612e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1d90615199565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8d9061522b565b60405180910390fd5b612ea183838361345d565b612eac600082612aea565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612efc9190615061565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f5391906144d0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613142576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313990615297565b60405180910390fd5b61314b81612a7e565b1561318b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318290615303565b60405180910390fd5b6131976000838361345d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131e791906144d0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6132ab848484612db0565b6132b7848484846134bd565b6132f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ed90615395565b60405180910390fd5b50505050565b60606000821415613344576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613458565b600082905060005b6000821461337657808061335f90614265565b915050600a8261336f9190614a00565b915061334c565b60008167ffffffffffffffff81111561339257613391613d56565b5b6040519080825280601f01601f1916602001820160405280156133c45781602001600182028036833780820191505090505b5090505b60008514613451576001826133dd9190615061565b9150600a856133ec91906153b5565b60306133f891906144d0565b60f81b81838151811061340e5761340d614207565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561344a9190614a00565b94506133c8565b8093505050505b919050565b505050565b61346c83836130d2565b61347960008484846134bd565b6134b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134af90615395565b60405180910390fd5b505050565b60006134de8473ffffffffffffffffffffffffffffffffffffffff16613645565b15613638578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613507612a76565b8786866040518563ffffffff1660e01b8152600401613529949392919061543b565b6020604051808303816000875af192505050801561356557506040513d601f19601f82011682018060405250810190613562919061549c565b60015b6135e8573d8060008114613595576040519150601f19603f3d011682016040523d82523d6000602084013e61359a565b606091505b506000815114156135e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135d790615395565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061363d565b600190505b949350505050565b600080823b905060008111915050919050565b82805461366490614169565b90600052602060002090601f01602090048101928261368657600085556136cd565b82601f1061369f57805160ff19168380011785556136cd565b828001600101855582156136cd579182015b828111156136cc5782518255916020019190600101906136b1565b5b5090506136da91906136de565b5090565b5b808211156136f75760008160009055506001016136df565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6137448161370f565b811461374f57600080fd5b50565b6000813590506137618161373b565b92915050565b60006020828403121561377d5761377c613705565b5b600061378b84828501613752565b91505092915050565b60008115159050919050565b6137a981613794565b82525050565b60006020820190506137c460008301846137a0565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156138045780820151818401526020810190506137e9565b83811115613813576000848401525b50505050565b6000601f19601f8301169050919050565b6000613835826137ca565b61383f81856137d5565b935061384f8185602086016137e6565b61385881613819565b840191505092915050565b6000602082019050818103600083015261387d818461382a565b905092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126138aa576138a9613885565b5b8235905067ffffffffffffffff8111156138c7576138c661388a565b5b6020830191508360208202830111156138e3576138e261388f565b5b9250929050565b6000819050919050565b6138fd816138ea565b811461390857600080fd5b50565b60008135905061391a816138f4565b92915050565b60008060006040848603121561393957613938613705565b5b600084013567ffffffffffffffff8111156139575761395661370a565b5b61396386828701613894565b935093505060206139768682870161390b565b9150509250925092565b60006020828403121561399657613995613705565b5b60006139a48482850161390b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006139d8826139ad565b9050919050565b6139e8816139cd565b82525050565b6000602082019050613a0360008301846139df565b92915050565b613a12816139cd565b8114613a1d57600080fd5b50565b600081359050613a2f81613a09565b92915050565b60008060408385031215613a4c57613a4b613705565b5b6000613a5a85828601613a20565b9250506020613a6b8582860161390b565b9150509250929050565b613a7e816138ea565b82525050565b6000602082019050613a996000830184613a75565b92915050565b600080600080600060a08688031215613abb57613aba613705565b5b6000613ac988828901613a20565b9550506020613ada8882890161390b565b9450506040613aeb8882890161390b565b9350506060613afc8882890161390b565b9250506080613b0d8882890161390b565b9150509295509295909350565b600080600060608486031215613b3357613b32613705565b5b6000613b4186828701613a20565b9350506020613b5286828701613a20565b9250506040613b638682870161390b565b9150509250925092565b60008083601f840112613b8357613b82613885565b5b8235905067ffffffffffffffff811115613ba057613b9f61388a565b5b602083019150836020820283011115613bbc57613bbb61388f565b5b9250929050565b60008060008060408587031215613bdd57613bdc613705565b5b600085013567ffffffffffffffff811115613bfb57613bfa61370a565b5b613c0787828801613894565b9450945050602085013567ffffffffffffffff811115613c2a57613c2961370a565b5b613c3687828801613b6d565b925092505092959194509250565b600060208284031215613c5a57613c59613705565b5b6000613c6884828501613a20565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613ca6816138ea565b82525050565b6000613cb88383613c9d565b60208301905092915050565b6000602082019050919050565b6000613cdc82613c71565b613ce68185613c7c565b9350613cf183613c8d565b8060005b83811015613d22578151613d098882613cac565b9750613d1483613cc4565b925050600181019050613cf5565b5085935050505092915050565b60006020820190508181036000830152613d498184613cd1565b905092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613d8e82613819565b810181811067ffffffffffffffff82111715613dad57613dac613d56565b5b80604052505050565b6000613dc06136fb565b9050613dcc8282613d85565b919050565b600067ffffffffffffffff821115613dec57613deb613d56565b5b613df582613819565b9050602081019050919050565b82818337600083830152505050565b6000613e24613e1f84613dd1565b613db6565b905082815260208101848484011115613e4057613e3f613d51565b5b613e4b848285613e02565b509392505050565b600082601f830112613e6857613e67613885565b5b8135613e78848260208601613e11565b91505092915050565b600060208284031215613e9757613e96613705565b5b600082013567ffffffffffffffff811115613eb557613eb461370a565b5b613ec184828501613e53565b91505092915050565b60008060208385031215613ee157613ee0613705565b5b600083013567ffffffffffffffff811115613eff57613efe61370a565b5b613f0b85828601613894565b92509250509250929050565b613f2081613794565b8114613f2b57600080fd5b50565b600081359050613f3d81613f17565b92915050565b60008060408385031215613f5a57613f59613705565b5b6000613f6885828601613a20565b9250506020613f7985828601613f2e565b9150509250929050565b600067ffffffffffffffff821115613f9e57613f9d613d56565b5b613fa782613819565b9050602081019050919050565b6000613fc7613fc284613f83565b613db6565b905082815260208101848484011115613fe357613fe2613d51565b5b613fee848285613e02565b509392505050565b600082601f83011261400b5761400a613885565b5b813561401b848260208601613fb4565b91505092915050565b6000806000806080858703121561403e5761403d613705565b5b600061404c87828801613a20565b945050602061405d87828801613a20565b935050604061406e8782880161390b565b925050606085013567ffffffffffffffff81111561408f5761408e61370a565b5b61409b87828801613ff6565b91505092959194509250565b6000806000606084860312156140c0576140bf613705565b5b60006140ce86828701613a20565b93505060206140df8682870161390b565b92505060406140f08682870161390b565b9150509250925092565b6000806040838503121561411157614110613705565b5b600061411f85828601613a20565b925050602061413085828601613a20565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061418157607f821691505b602082108114156141955761419461413a565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141d16020836137d5565b91506141dc8261419b565b602082019050919050565b60006020820190508181036000830152614200816141c4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614270826138ea565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142a3576142a2614236565b5b600182019050919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061430a602c836137d5565b9150614315826142ae565b604082019050919050565b60006020820190508181036000830152614339816142fd565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061439c6021836137d5565b91506143a782614340565b604082019050919050565b600060208201905081810360008301526143cb8161438f565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061442e6038836137d5565b9150614439826143d2565b604082019050919050565b6000602082019050818103600083015261445d81614421565b9050919050565b7f496e76616c6964206f776e657220666f7220676976656e20746f6b656e732e00600082015250565b600061449a601f836137d5565b91506144a582614464565b602082019050919050565b600060208201905081810360008301526144c98161448d565b9050919050565b60006144db826138ea565b91506144e6836138ea565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561451b5761451a614236565b5b828201905092915050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006145826031836137d5565b915061458d82614526565b604082019050919050565b600060208201905081810360008301526145b181614575565b9050919050565b6000819050919050565b6000819050919050565b60006145e76145e26145dd846145b8565b6145c2565b6138ea565b9050919050565b6145f7816145cc565b82525050565b600060608201905061461260008301866139df565b61461f60208301856145ee565b61462c6040830184613a75565b949350505050565b600067ffffffffffffffff82111561464f5761464e613d56565b5b602082029050602081019050919050565b60008151905061466f816138f4565b92915050565b600061468861468384614634565b613db6565b905080838252602082019050602084028301858111156146ab576146aa61388f565b5b835b818110156146d457806146c08882614660565b8452602084019350506020810190506146ad565b5050509392505050565b600082601f8301126146f3576146f2613885565b5b8151614703848260208601614675565b91505092915050565b60006020828403121561472257614721613705565b5b600082015167ffffffffffffffff8111156147405761473f61370a565b5b61474c848285016146de565b91505092915050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006147b16029836137d5565b91506147bc82614755565b604082019050919050565b600060208201905081810360008301526147e0816147a4565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614843602a836137d5565b915061484e826147e7565b604082019050919050565b6000602082019050818103600083015261487281614836565b9050919050565b7f5468697320776f756c642065786365656420746865206d6178206e756d62657260008201527f206f6620616c6c6f776564206e66740000000000000000000000000000000000602082015250565b60006148d5602f836137d5565b91506148e082614879565b604082019050919050565b60006020820190508181036000830152614904816148c8565b9050919050565b7f42616c616e636520697320300000000000000000000000000000000000000000600082015250565b6000614941600c836137d5565b915061494c8261490b565b602082019050919050565b6000602082019050818103600083015261497081614934565b9050919050565b6000614982826138ea565b915061498d836138ea565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149c6576149c5614236565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614a0b826138ea565b9150614a16836138ea565b925082614a2657614a256149d1565b5b828204905092915050565b7f53616c65206d7573742062652061637469766520746f206d696e740000000000600082015250565b6000614a67601b836137d5565b9150614a7282614a31565b602082019050919050565b60006020820190508181036000830152614a9681614a5a565b9050919050565b7f496e76616c696420707572636861736520616d6f756e74000000000000000000600082015250565b6000614ad36017836137d5565b9150614ade82614a9d565b602082019050919050565b60006020820190508181036000830152614b0281614ac6565b9050919050565b7f4d696e7420776f756c6420657863656564206d617820737570706c79206f662060008201527f6e66740000000000000000000000000000000000000000000000000000000000602082015250565b6000614b656023836137d5565b9150614b7082614b09565b604082019050919050565b60006020820190508181036000830152614b9481614b58565b9050919050565b7f416d6f756e74206f66206574686572206973206e6f7420656e6f756768000000600082015250565b6000614bd1601d836137d5565b9150614bdc82614b9b565b602082019050919050565b60006020820190508181036000830152614c0081614bc4565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614c3d6019836137d5565b9150614c4882614c07565b602082019050919050565b60006020820190508181036000830152614c6c81614c30565b9050919050565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b6000614ca9601f836137d5565b9150614cb482614c73565b602082019050919050565b60006020820190508181036000830152614cd881614c9c565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154614d0c81614169565b614d168186614cdf565b94506001821660008114614d315760018114614d4257614d75565b60ff19831686528186019350614d75565b614d4b85614cea565b60005b83811015614d6d57815481890152600182019150602081019050614d4e565b838801955050505b50505092915050565b6000614d89826137ca565b614d938185614cdf565b9350614da38185602086016137e6565b80840191505092915050565b6000614dbb8285614cff565b9150614dc78284614d7e565b91508190509392505050565b7f4f776e65722053616c65206d7573742062652061637469766520746f206d696e60008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b6000614e2f6021836137d5565b9150614e3a82614dd3565b604082019050919050565b60006020820190508181036000830152614e5e81614e22565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614ec16026836137d5565b9150614ecc82614e65565b604082019050919050565b60006020820190508181036000830152614ef081614eb4565b9050919050565b7f4e6f2070726573616c6520616374697665000000000000000000000000000000600082015250565b6000614f2d6011836137d5565b9150614f3882614ef7565b602082019050919050565b60006020820190508181036000830152614f5c81614f20565b9050919050565b7f546869732061646472657373206973206e6f7420617574686f72697a6564206660008201527f6f722070726573616c6500000000000000000000000000000000000000000000602082015250565b6000614fbf602a836137d5565b9150614fca82614f63565b604082019050919050565b60006020820190508181036000830152614fee81614fb2565b9050919050565b7f457863656564656420616c6c6f77656420616d6f756e74000000000000000000600082015250565b600061502b6017836137d5565b915061503682614ff5565b602082019050919050565b6000602082019050818103600083015261505a8161501e565b9050919050565b600061506c826138ea565b9150615077836138ea565b92508282101561508a57615089614236565b5b828203905092915050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006150f1602c836137d5565b91506150fc82615095565b604082019050919050565b60006020820190508181036000830152615120816150e4565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006151836029836137d5565b915061518e82615127565b604082019050919050565b600060208201905081810360008301526151b281615176565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006152156024836137d5565b9150615220826151b9565b604082019050919050565b6000602082019050818103600083015261524481615208565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006152816020836137d5565b915061528c8261524b565b602082019050919050565b600060208201905081810360008301526152b081615274565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006152ed601c836137d5565b91506152f8826152b7565b602082019050919050565b6000602082019050818103600083015261531c816152e0565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061537f6032836137d5565b915061538a82615323565b604082019050919050565b600060208201905081810360008301526153ae81615372565b9050919050565b60006153c0826138ea565b91506153cb836138ea565b9250826153db576153da6149d1565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b600061540d826153e6565b61541781856153f1565b93506154278185602086016137e6565b61543081613819565b840191505092915050565b600060808201905061545060008301876139df565b61545d60208301866139df565b61546a6040830185613a75565b818103606083015261547c8184615402565b905095945050505050565b6000815190506154968161373b565b92915050565b6000602082840312156154b2576154b1613705565b5b60006154c084828501615487565b9150509291505056fea26469706673582212200ea782639ea7f56182a12a6059607da1f36e743ad91e15015490c740b50ab50464736f6c634300080b0033

Deployed Bytecode

0x6080604052600436106102885760003560e01c8063771282f61161015a578063b88d4fde116100c1578063eb8835ab1161007a578063eb8835ab14610975578063ed73bda9146109b2578063edc2ac02146109dd578063f19e75d414610a08578063f2fde38b14610a24578063f759867a14610a4d57610288565b8063b88d4fde1461083f578063c839fe9414610868578063c87b56dd146108a5578063d5abeb01146108e2578063de97536b1461090d578063e985e9c51461093857610288565b806391b7f5ed1161011357806391b7f5ed1461075057806395d89b4114610779578063a035b1fe146107a4578063a0712d68146107cf578063a22cb465146107eb578063b08da3421461081457610288565b8063771282f61461068a5780637a9ec6ec146106b55780637d8966e4146106cc5780638369788d146106e3578063853828b61461070e5780638da5cb5b1461072557610288565b80633812a379116101fe57806355f804b3116101b757806355f804b31461057c5780636352211e146105a557806368428a1b146105e257806370a082311461060d578063715018a61461064a578063729ad39e1461066157610288565b80633812a3791461046c5780633b4c4b251461049757806342842e0e146104c0578063438b6300146104e957806353135ca0146105265780635493ada21461055157610288565b806318160ddd1161025057806318160ddd146103845780631a116511146103af57806323b872dd146103d857806326ed7155146104015780632b01e68d1461042a578063343937431461045557610288565b806301ffc9a71461028d57806306fdde03146102ca57806308026366146102f5578063081812fc1461031e578063095ea7b31461035b575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190613767565b610a69565b6040516102c191906137af565b60405180910390f35b3480156102d657600080fd5b506102df610b4b565b6040516102ec9190613863565b60405180910390f35b34801561030157600080fd5b5061031c60048036038101906103179190613920565b610bdd565b005b34801561032a57600080fd5b5061034560048036038101906103409190613980565b610ceb565b60405161035291906139ee565b60405180910390f35b34801561036757600080fd5b50610382600480360381019061037d9190613a35565b610d70565b005b34801561039057600080fd5b50610399610e88565b6040516103a69190613a84565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190613a9f565b610e92565b005b3480156103e457600080fd5b506103ff60048036038101906103fa9190613b1a565b6110d9565b005b34801561040d57600080fd5b5061042860048036038101906104239190613bc3565b611139565b005b34801561043657600080fd5b5061043f611261565b60405161044c91906139ee565b60405180910390f35b34801561046157600080fd5b5061046a611279565b005b34801561047857600080fd5b50610481611321565b60405161048e91906137af565b60405180910390f35b3480156104a357600080fd5b506104be60048036038101906104b99190613980565b611334565b005b3480156104cc57600080fd5b506104e760048036038101906104e29190613b1a565b6113c8565b005b3480156104f557600080fd5b50610510600480360381019061050b9190613c44565b6113e8565b60405161051d9190613d2f565b60405180910390f35b34801561053257600080fd5b5061053b611477565b60405161054891906137af565b60405180910390f35b34801561055d57600080fd5b5061056661148a565b60405161057391906139ee565b60405180910390f35b34801561058857600080fd5b506105a3600480360381019061059e9190613e81565b6114a2565b005b3480156105b157600080fd5b506105cc60048036038101906105c79190613980565b611538565b6040516105d991906139ee565b60405180910390f35b3480156105ee57600080fd5b506105f76115ea565b60405161060491906137af565b60405180910390f35b34801561061957600080fd5b50610634600480360381019061062f9190613c44565b6115fd565b6040516106419190613a84565b60405180910390f35b34801561065657600080fd5b5061065f6116b5565b005b34801561066d57600080fd5b5061068860048036038101906106839190613eca565b61173d565b005b34801561069657600080fd5b5061069f611892565b6040516106ac9190613a84565b60405180910390f35b3480156106c157600080fd5b506106ca611898565b005b3480156106d857600080fd5b506106e1611940565b005b3480156106ef57600080fd5b506106f86119e8565b60405161070591906139ee565b60405180910390f35b34801561071a57600080fd5b50610723611a00565b005b34801561073157600080fd5b5061073a611d80565b60405161074791906139ee565b60405180910390f35b34801561075c57600080fd5b5061077760048036038101906107729190613980565b611daa565b005b34801561078557600080fd5b5061078e611e30565b60405161079b9190613863565b60405180910390f35b3480156107b057600080fd5b506107b9611ec2565b6040516107c69190613a84565b60405180910390f35b6107e960048036038101906107e49190613980565b611ec8565b005b3480156107f757600080fd5b50610812600480360381019061080d9190613f43565b612053565b005b34801561082057600080fd5b506108296121d4565b60405161083691906139ee565b60405180910390f35b34801561084b57600080fd5b5061086660048036038101906108619190614024565b6121ec565b005b34801561087457600080fd5b5061088f600480360381019061088a91906140a7565b61224e565b60405161089c9190613d2f565b60405180910390f35b3480156108b157600080fd5b506108cc60048036038101906108c79190613980565b6123ae565b6040516108d99190613863565b60405180910390f35b3480156108ee57600080fd5b506108f761242a565b6040516109049190613a84565b60405180910390f35b34801561091957600080fd5b50610922612430565b60405161092f91906139ee565b60405180910390f35b34801561094457600080fd5b5061095f600480360381019061095a91906140fa565b612448565b60405161096c91906137af565b60405180910390f35b34801561098157600080fd5b5061099c60048036038101906109979190613c44565b6124dc565b6040516109a99190613a84565b60405180910390f35b3480156109be57600080fd5b506109c76124f4565b6040516109d49190613a84565b60405180910390f35b3480156109e957600080fd5b506109f26124fa565b6040516109ff91906139ee565b60405180910390f35b610a226004803603810190610a1d9190613980565b612512565b005b348015610a3057600080fd5b50610a4b6004803603810190610a469190613c44565b6126b3565b005b610a676004803603810190610a629190613980565b6127ab565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b3457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b445750610b4382612a0c565b5b9050919050565b606060008054610b5a90614169565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8690614169565b8015610bd35780601f10610ba857610100808354040283529160200191610bd3565b820191906000526020600020905b815481529060010190602001808311610bb657829003601f168201915b5050505050905090565b610be5612a76565b73ffffffffffffffffffffffffffffffffffffffff16610c03611d80565b73ffffffffffffffffffffffffffffffffffffffff1614610c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c50906141e7565b60405180910390fd5b60005b83839050811015610ce5578160086000868685818110610c7f57610c7e614207565b5b9050602002016020810190610c949190613c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080610cdd90614265565b915050610c5c565b50505050565b6000610cf682612a7e565b610d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2c90614320565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d7b82611538565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de3906143b2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e0b612a76565b73ffffffffffffffffffffffffffffffffffffffff161480610e3a5750610e3981610e34612a76565b612448565b5b610e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7090614444565b60405180910390fd5b610e838383612aea565b505050565b6000600a54905090565b8473ffffffffffffffffffffffffffffffffffffffff16610eb285611538565b73ffffffffffffffffffffffffffffffffffffffff16148015610f0857508473ffffffffffffffffffffffffffffffffffffffff16610ef084611538565b73ffffffffffffffffffffffffffffffffffffffff16145b8015610f4757508473ffffffffffffffffffffffffffffffffffffffff16610f2f83611538565b73ffffffffffffffffffffffffffffffffffffffff16145b8015610f8657508473ffffffffffffffffffffffffffffffffffffffff16610f6e82611538565b73ffffffffffffffffffffffffffffffffffffffff16145b610fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbc906144b0565b60405180910390fd5b610fce84612ba3565b610fd783612ba3565b610fe082612ba3565b610fe981612ba3565b60016007600086815260200190815260200160002060006101000a81548160ff02191690831515021790555060016007600085815260200190815260200160002060006101000a81548160ff02191690831515021790555060016007600084815260200190815260200160002060006101000a81548160ff02191690831515021790555060016007600083815260200190815260200160002060006101000a81548160ff0219169083151502179055506110b86110a4612a76565b6001600d546110b391906144d0565b612cb4565b6001600d60008282546110cb91906144d0565b925050819055505050505050565b6110ea6110e4612a76565b82612cd2565b611129576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112090614598565b60405180910390fd5b611134838383612db0565b505050565b611141612a76565b73ffffffffffffffffffffffffffffffffffffffff1661115f611d80565b73ffffffffffffffffffffffffffffffffffffffff16146111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ac906141e7565b60405180910390fd5b60005b8484905081101561125a578282828181106111d6576111d5614207565b5b90506020020135600860008787858181106111f4576111f3614207565b5b90506020020160208101906112099190613c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061125290614265565b9150506111b8565b5050505050565b73c5aa93ff62c372e1097b8c04a313a7d9c16dd30181565b611281612a76565b73ffffffffffffffffffffffffffffffffffffffff1661129f611d80565b73ffffffffffffffffffffffffffffffffffffffff16146112f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ec906141e7565b60405180910390fd5b600960009054906101000a900460ff1615600960006101000a81548160ff021916908315150217905550565b600960029054906101000a900460ff1681565b61133c612a76565b73ffffffffffffffffffffffffffffffffffffffff1661135a611d80565b73ffffffffffffffffffffffffffffffffffffffff16146113b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a7906141e7565b60405180910390fd5b61271081106113be57600080fd5b80600b8190555050565b6113e3838383604051806020016040528060008152506121ec565b505050565b60603073ffffffffffffffffffffffffffffffffffffffff1663c839fe94836000600a546040518463ffffffff1660e01b815260040161142a939291906145fd565b600060405180830381865afa158015611447573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611470919061470c565b9050919050565b600960009054906101000a900460ff1681565b73dedfa9de0bbca5234a4fc4500f7070048188533d81565b6114aa612a76565b73ffffffffffffffffffffffffffffffffffffffff166114c8611d80565b73ffffffffffffffffffffffffffffffffffffffff161461151e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611515906141e7565b60405180910390fd5b80600e9080519060200190611534929190613658565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d8906147c7565b60405180910390fd5b80915050919050565b600960019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561166e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166590614859565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116bd612a76565b73ffffffffffffffffffffffffffffffffffffffff166116db611d80565b73ffffffffffffffffffffffffffffffffffffffff1614611731576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611728906141e7565b60405180910390fd5b61173b600061300c565b565b611745612a76565b73ffffffffffffffffffffffffffffffffffffffff16611763611d80565b73ffffffffffffffffffffffffffffffffffffffff16146117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b0906141e7565b60405180910390fd5b6000600a549050600b5483839050826117d291906144d0565b1115611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180a906148eb565b60405180910390fd5b82829050600a600082825461182891906144d0565b9250508190555060005b8383905081101561188c5761187984848381811061185357611852614207565b5b90506020020160208101906118689190613c44565b828461187491906144d0565b6130d2565b808061188490614265565b915050611832565b50505050565b600a5481565b6118a0612a76565b73ffffffffffffffffffffffffffffffffffffffff166118be611d80565b73ffffffffffffffffffffffffffffffffffffffff1614611914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190b906141e7565b60405180910390fd5b600960029054906101000a900460ff1615600960026101000a81548160ff021916908315150217905550565b611948612a76565b73ffffffffffffffffffffffffffffffffffffffff16611966611d80565b73ffffffffffffffffffffffffffffffffffffffff16146119bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b3906141e7565b60405180910390fd5b600960019054906101000a900460ff1615600960016101000a81548160ff021916908315150217905550565b7303313d6cd88874a9c4344b6da1f8f77a652a463b81565b611a08612a76565b73ffffffffffffffffffffffffffffffffffffffff16611a26611d80565b73ffffffffffffffffffffffffffffffffffffffff1614611a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a73906141e7565b60405180910390fd5b600047905060008111611ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abb90614957565b60405180910390fd5b73b61bec1c7da88d905b8b749f1222ce5d889b98b873ffffffffffffffffffffffffffffffffffffffff166108fc6103e8603284611b029190614977565b611b0c9190614a00565b9081150290604051600060405180830381858888f19350505050158015611b37573d6000803e3d6000fd5b507322ae23bf8a61301e9fc36a23a759d681ba31547073ffffffffffffffffffffffffffffffffffffffff166108fc6103e8609684611b769190614977565b611b809190614a00565b9081150290604051600060405180830381858888f19350505050158015611bab573d6000803e3d6000fd5b5073a9441365eaf746560c6c7525b8e0cf2d238e37bf73ffffffffffffffffffffffffffffffffffffffff166108fc6103e8609684611bea9190614977565b611bf49190614a00565b9081150290604051600060405180830381858888f19350505050158015611c1f573d6000803e3d6000fd5b507303313d6cd88874a9c4344b6da1f8f77a652a463b73ffffffffffffffffffffffffffffffffffffffff166108fc6103e8604b84611c5e9190614977565b611c689190614a00565b9081150290604051600060405180830381858888f19350505050158015611c93573d6000803e3d6000fd5b5073c5aa93ff62c372e1097b8c04a313a7d9c16dd30173ffffffffffffffffffffffffffffffffffffffff166108fc6103e861019084611cd39190614977565b611cdd9190614a00565b9081150290604051600060405180830381858888f19350505050158015611d08573d6000803e3d6000fd5b5073dedfa9de0bbca5234a4fc4500f7070048188533d73ffffffffffffffffffffffffffffffffffffffff166108fc6103e860af84611d479190614977565b611d519190614a00565b9081150290604051600060405180830381858888f19350505050158015611d7c573d6000803e3d6000fd5b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611db2612a76565b73ffffffffffffffffffffffffffffffffffffffff16611dd0611d80565b73ffffffffffffffffffffffffffffffffffffffff1614611e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1d906141e7565b60405180910390fd5b80600c8190555050565b606060018054611e3f90614169565b80601f0160208091040260200160405190810160405280929190818152602001828054611e6b90614169565b8015611eb85780601f10611e8d57610100808354040283529160200191611eb8565b820191906000526020600020905b815481529060010190602001808311611e9b57829003601f168201915b5050505050905090565b600c5481565b6000600a549050600960019054906101000a900460ff16611f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1590614a7d565b60405180910390fd5b600a821115611f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5990614ae9565b60405180910390fd5b600b548282611f7191906144d0565b1115611fb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa990614b7b565b60405180910390fd5b34600c5483611fc19190614977565b1115612002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff990614be7565b60405180910390fd5b81600a600082825461201491906144d0565b9250508190555060005b8281101561204e5761203b33828461203691906144d0565b6130d2565b808061204690614265565b91505061201e565b505050565b61205b612a76565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c090614c53565b60405180910390fd5b80600560006120d6612a76565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612183612a76565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121c891906137af565b60405180910390a35050565b73b61bec1c7da88d905b8b749f1222ce5d889b98b881565b6121fd6121f7612a76565b83612cd2565b61223c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223390614598565b60405180910390fd5b612248848484846132a0565b50505050565b6060600061225b856115fd565b905060008114156122b857600067ffffffffffffffff81111561228157612280613d56565b5b6040519080825280602002602001820160405280156122af5781602001602082028036833780820191505090505b509150506123a7565b60008167ffffffffffffffff8111156122d4576122d3613d56565b5b6040519080825280602002602001820160405280156123025781602001602082028036833780820191505090505b5090506000808690505b8581101561239f57838214156123215761239f565b8773ffffffffffffffffffffffffffffffffffffffff1661234182611538565b73ffffffffffffffffffffffffffffffffffffffff16141561238c578083838151811061237157612370614207565b5b602002602001018181525050818061238890614265565b9250505b808061239790614265565b91505061230c565b508193505050505b9392505050565b60606123b982612a7e565b6123f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ef90614cbf565b60405180910390fd5b600e612403836132fc565b604051602001612414929190614daf565b6040516020818303038152906040529050919050565b600b5481565b7322ae23bf8a61301e9fc36a23a759d681ba31547081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60086020528060005260406000206000915090505481565b600d5481565b73a9441365eaf746560c6c7525b8e0cf2d238e37bf81565b6000600a549050600960029054906101000a900460ff16612568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255f90614e45565b60405180910390fd5b6003612573336115fd565b101561257e57600080fd5b60028211156125c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b990614ae9565b60405180910390fd5b600b5482826125d191906144d0565b1115612612576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260990614b7b565b60405180910390fd5b34600c54836126219190614977565b1115612662576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265990614be7565b60405180910390fd5b81600a600082825461267491906144d0565b9250508190555060005b828110156126ae5761269b33828461269691906144d0565b6130d2565b80806126a690614265565b91505061267e565b505050565b6126bb612a76565b73ffffffffffffffffffffffffffffffffffffffff166126d9611d80565b73ffffffffffffffffffffffffffffffffffffffff161461272f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612726906141e7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561279f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279690614ed7565b60405180910390fd5b6127a88161300c565b50565b6000600a5490506000600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600960009054906101000a900460ff16612845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283c90614f43565b60405180910390fd5b60008111612888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287f90614fd5565b60405180910390fd5b808311156128cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c290615041565b60405180910390fd5b600b5483836128da91906144d0565b111561291b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612912906148eb565b60405180910390fd5b34600c548461292a9190614977565b111561296b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296290614be7565b60405180910390fd5b82816129779190615061565b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555082600a60008282546129cc91906144d0565b9250508190555060005b83811015612a06576129f33382856129ee91906144d0565b6130d2565b80806129fe90614265565b9150506129d6565b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612b5d83611538565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612bae82611538565b9050612bbc8160008461345d565b612bc7600083612aea565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c179190615061565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b612cce828260405180602001604052806000815250613462565b5050565b6000612cdd82612a7e565b612d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1390615107565b60405180910390fd5b6000612d2783611538565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612d9657508373ffffffffffffffffffffffffffffffffffffffff16612d7e84610ceb565b73ffffffffffffffffffffffffffffffffffffffff16145b80612da75750612da68185612448565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612dd082611538565b73ffffffffffffffffffffffffffffffffffffffff1614612e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1d90615199565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8d9061522b565b60405180910390fd5b612ea183838361345d565b612eac600082612aea565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612efc9190615061565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f5391906144d0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613142576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313990615297565b60405180910390fd5b61314b81612a7e565b1561318b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318290615303565b60405180910390fd5b6131976000838361345d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131e791906144d0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6132ab848484612db0565b6132b7848484846134bd565b6132f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ed90615395565b60405180910390fd5b50505050565b60606000821415613344576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613458565b600082905060005b6000821461337657808061335f90614265565b915050600a8261336f9190614a00565b915061334c565b60008167ffffffffffffffff81111561339257613391613d56565b5b6040519080825280601f01601f1916602001820160405280156133c45781602001600182028036833780820191505090505b5090505b60008514613451576001826133dd9190615061565b9150600a856133ec91906153b5565b60306133f891906144d0565b60f81b81838151811061340e5761340d614207565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561344a9190614a00565b94506133c8565b8093505050505b919050565b505050565b61346c83836130d2565b61347960008484846134bd565b6134b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134af90615395565b60405180910390fd5b505050565b60006134de8473ffffffffffffffffffffffffffffffffffffffff16613645565b15613638578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613507612a76565b8786866040518563ffffffff1660e01b8152600401613529949392919061543b565b6020604051808303816000875af192505050801561356557506040513d601f19601f82011682018060405250810190613562919061549c565b60015b6135e8573d8060008114613595576040519150601f19603f3d011682016040523d82523d6000602084013e61359a565b606091505b506000815114156135e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135d790615395565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061363d565b600190505b949350505050565b600080823b905060008111915050919050565b82805461366490614169565b90600052602060002090601f01602090048101928261368657600085556136cd565b82601f1061369f57805160ff19168380011785556136cd565b828001600101855582156136cd579182015b828111156136cc5782518255916020019190600101906136b1565b5b5090506136da91906136de565b5090565b5b808211156136f75760008160009055506001016136df565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6137448161370f565b811461374f57600080fd5b50565b6000813590506137618161373b565b92915050565b60006020828403121561377d5761377c613705565b5b600061378b84828501613752565b91505092915050565b60008115159050919050565b6137a981613794565b82525050565b60006020820190506137c460008301846137a0565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156138045780820151818401526020810190506137e9565b83811115613813576000848401525b50505050565b6000601f19601f8301169050919050565b6000613835826137ca565b61383f81856137d5565b935061384f8185602086016137e6565b61385881613819565b840191505092915050565b6000602082019050818103600083015261387d818461382a565b905092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126138aa576138a9613885565b5b8235905067ffffffffffffffff8111156138c7576138c661388a565b5b6020830191508360208202830111156138e3576138e261388f565b5b9250929050565b6000819050919050565b6138fd816138ea565b811461390857600080fd5b50565b60008135905061391a816138f4565b92915050565b60008060006040848603121561393957613938613705565b5b600084013567ffffffffffffffff8111156139575761395661370a565b5b61396386828701613894565b935093505060206139768682870161390b565b9150509250925092565b60006020828403121561399657613995613705565b5b60006139a48482850161390b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006139d8826139ad565b9050919050565b6139e8816139cd565b82525050565b6000602082019050613a0360008301846139df565b92915050565b613a12816139cd565b8114613a1d57600080fd5b50565b600081359050613a2f81613a09565b92915050565b60008060408385031215613a4c57613a4b613705565b5b6000613a5a85828601613a20565b9250506020613a6b8582860161390b565b9150509250929050565b613a7e816138ea565b82525050565b6000602082019050613a996000830184613a75565b92915050565b600080600080600060a08688031215613abb57613aba613705565b5b6000613ac988828901613a20565b9550506020613ada8882890161390b565b9450506040613aeb8882890161390b565b9350506060613afc8882890161390b565b9250506080613b0d8882890161390b565b9150509295509295909350565b600080600060608486031215613b3357613b32613705565b5b6000613b4186828701613a20565b9350506020613b5286828701613a20565b9250506040613b638682870161390b565b9150509250925092565b60008083601f840112613b8357613b82613885565b5b8235905067ffffffffffffffff811115613ba057613b9f61388a565b5b602083019150836020820283011115613bbc57613bbb61388f565b5b9250929050565b60008060008060408587031215613bdd57613bdc613705565b5b600085013567ffffffffffffffff811115613bfb57613bfa61370a565b5b613c0787828801613894565b9450945050602085013567ffffffffffffffff811115613c2a57613c2961370a565b5b613c3687828801613b6d565b925092505092959194509250565b600060208284031215613c5a57613c59613705565b5b6000613c6884828501613a20565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613ca6816138ea565b82525050565b6000613cb88383613c9d565b60208301905092915050565b6000602082019050919050565b6000613cdc82613c71565b613ce68185613c7c565b9350613cf183613c8d565b8060005b83811015613d22578151613d098882613cac565b9750613d1483613cc4565b925050600181019050613cf5565b5085935050505092915050565b60006020820190508181036000830152613d498184613cd1565b905092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613d8e82613819565b810181811067ffffffffffffffff82111715613dad57613dac613d56565b5b80604052505050565b6000613dc06136fb565b9050613dcc8282613d85565b919050565b600067ffffffffffffffff821115613dec57613deb613d56565b5b613df582613819565b9050602081019050919050565b82818337600083830152505050565b6000613e24613e1f84613dd1565b613db6565b905082815260208101848484011115613e4057613e3f613d51565b5b613e4b848285613e02565b509392505050565b600082601f830112613e6857613e67613885565b5b8135613e78848260208601613e11565b91505092915050565b600060208284031215613e9757613e96613705565b5b600082013567ffffffffffffffff811115613eb557613eb461370a565b5b613ec184828501613e53565b91505092915050565b60008060208385031215613ee157613ee0613705565b5b600083013567ffffffffffffffff811115613eff57613efe61370a565b5b613f0b85828601613894565b92509250509250929050565b613f2081613794565b8114613f2b57600080fd5b50565b600081359050613f3d81613f17565b92915050565b60008060408385031215613f5a57613f59613705565b5b6000613f6885828601613a20565b9250506020613f7985828601613f2e565b9150509250929050565b600067ffffffffffffffff821115613f9e57613f9d613d56565b5b613fa782613819565b9050602081019050919050565b6000613fc7613fc284613f83565b613db6565b905082815260208101848484011115613fe357613fe2613d51565b5b613fee848285613e02565b509392505050565b600082601f83011261400b5761400a613885565b5b813561401b848260208601613fb4565b91505092915050565b6000806000806080858703121561403e5761403d613705565b5b600061404c87828801613a20565b945050602061405d87828801613a20565b935050604061406e8782880161390b565b925050606085013567ffffffffffffffff81111561408f5761408e61370a565b5b61409b87828801613ff6565b91505092959194509250565b6000806000606084860312156140c0576140bf613705565b5b60006140ce86828701613a20565b93505060206140df8682870161390b565b92505060406140f08682870161390b565b9150509250925092565b6000806040838503121561411157614110613705565b5b600061411f85828601613a20565b925050602061413085828601613a20565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061418157607f821691505b602082108114156141955761419461413a565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141d16020836137d5565b91506141dc8261419b565b602082019050919050565b60006020820190508181036000830152614200816141c4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614270826138ea565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142a3576142a2614236565b5b600182019050919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061430a602c836137d5565b9150614315826142ae565b604082019050919050565b60006020820190508181036000830152614339816142fd565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061439c6021836137d5565b91506143a782614340565b604082019050919050565b600060208201905081810360008301526143cb8161438f565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061442e6038836137d5565b9150614439826143d2565b604082019050919050565b6000602082019050818103600083015261445d81614421565b9050919050565b7f496e76616c6964206f776e657220666f7220676976656e20746f6b656e732e00600082015250565b600061449a601f836137d5565b91506144a582614464565b602082019050919050565b600060208201905081810360008301526144c98161448d565b9050919050565b60006144db826138ea565b91506144e6836138ea565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561451b5761451a614236565b5b828201905092915050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006145826031836137d5565b915061458d82614526565b604082019050919050565b600060208201905081810360008301526145b181614575565b9050919050565b6000819050919050565b6000819050919050565b60006145e76145e26145dd846145b8565b6145c2565b6138ea565b9050919050565b6145f7816145cc565b82525050565b600060608201905061461260008301866139df565b61461f60208301856145ee565b61462c6040830184613a75565b949350505050565b600067ffffffffffffffff82111561464f5761464e613d56565b5b602082029050602081019050919050565b60008151905061466f816138f4565b92915050565b600061468861468384614634565b613db6565b905080838252602082019050602084028301858111156146ab576146aa61388f565b5b835b818110156146d457806146c08882614660565b8452602084019350506020810190506146ad565b5050509392505050565b600082601f8301126146f3576146f2613885565b5b8151614703848260208601614675565b91505092915050565b60006020828403121561472257614721613705565b5b600082015167ffffffffffffffff8111156147405761473f61370a565b5b61474c848285016146de565b91505092915050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006147b16029836137d5565b91506147bc82614755565b604082019050919050565b600060208201905081810360008301526147e0816147a4565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614843602a836137d5565b915061484e826147e7565b604082019050919050565b6000602082019050818103600083015261487281614836565b9050919050565b7f5468697320776f756c642065786365656420746865206d6178206e756d62657260008201527f206f6620616c6c6f776564206e66740000000000000000000000000000000000602082015250565b60006148d5602f836137d5565b91506148e082614879565b604082019050919050565b60006020820190508181036000830152614904816148c8565b9050919050565b7f42616c616e636520697320300000000000000000000000000000000000000000600082015250565b6000614941600c836137d5565b915061494c8261490b565b602082019050919050565b6000602082019050818103600083015261497081614934565b9050919050565b6000614982826138ea565b915061498d836138ea565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149c6576149c5614236565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614a0b826138ea565b9150614a16836138ea565b925082614a2657614a256149d1565b5b828204905092915050565b7f53616c65206d7573742062652061637469766520746f206d696e740000000000600082015250565b6000614a67601b836137d5565b9150614a7282614a31565b602082019050919050565b60006020820190508181036000830152614a9681614a5a565b9050919050565b7f496e76616c696420707572636861736520616d6f756e74000000000000000000600082015250565b6000614ad36017836137d5565b9150614ade82614a9d565b602082019050919050565b60006020820190508181036000830152614b0281614ac6565b9050919050565b7f4d696e7420776f756c6420657863656564206d617820737570706c79206f662060008201527f6e66740000000000000000000000000000000000000000000000000000000000602082015250565b6000614b656023836137d5565b9150614b7082614b09565b604082019050919050565b60006020820190508181036000830152614b9481614b58565b9050919050565b7f416d6f756e74206f66206574686572206973206e6f7420656e6f756768000000600082015250565b6000614bd1601d836137d5565b9150614bdc82614b9b565b602082019050919050565b60006020820190508181036000830152614c0081614bc4565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614c3d6019836137d5565b9150614c4882614c07565b602082019050919050565b60006020820190508181036000830152614c6c81614c30565b9050919050565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b6000614ca9601f836137d5565b9150614cb482614c73565b602082019050919050565b60006020820190508181036000830152614cd881614c9c565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154614d0c81614169565b614d168186614cdf565b94506001821660008114614d315760018114614d4257614d75565b60ff19831686528186019350614d75565b614d4b85614cea565b60005b83811015614d6d57815481890152600182019150602081019050614d4e565b838801955050505b50505092915050565b6000614d89826137ca565b614d938185614cdf565b9350614da38185602086016137e6565b80840191505092915050565b6000614dbb8285614cff565b9150614dc78284614d7e565b91508190509392505050565b7f4f776e65722053616c65206d7573742062652061637469766520746f206d696e60008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b6000614e2f6021836137d5565b9150614e3a82614dd3565b604082019050919050565b60006020820190508181036000830152614e5e81614e22565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614ec16026836137d5565b9150614ecc82614e65565b604082019050919050565b60006020820190508181036000830152614ef081614eb4565b9050919050565b7f4e6f2070726573616c6520616374697665000000000000000000000000000000600082015250565b6000614f2d6011836137d5565b9150614f3882614ef7565b602082019050919050565b60006020820190508181036000830152614f5c81614f20565b9050919050565b7f546869732061646472657373206973206e6f7420617574686f72697a6564206660008201527f6f722070726573616c6500000000000000000000000000000000000000000000602082015250565b6000614fbf602a836137d5565b9150614fca82614f63565b604082019050919050565b60006020820190508181036000830152614fee81614fb2565b9050919050565b7f457863656564656420616c6c6f77656420616d6f756e74000000000000000000600082015250565b600061502b6017836137d5565b915061503682614ff5565b602082019050919050565b6000602082019050818103600083015261505a8161501e565b9050919050565b600061506c826138ea565b9150615077836138ea565b92508282101561508a57615089614236565b5b828203905092915050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006150f1602c836137d5565b91506150fc82615095565b604082019050919050565b60006020820190508181036000830152615120816150e4565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006151836029836137d5565b915061518e82615127565b604082019050919050565b600060208201905081810360008301526151b281615176565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006152156024836137d5565b9150615220826151b9565b604082019050919050565b6000602082019050818103600083015261524481615208565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006152816020836137d5565b915061528c8261524b565b602082019050919050565b600060208201905081810360008301526152b081615274565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006152ed601c836137d5565b91506152f8826152b7565b602082019050919050565b6000602082019050818103600083015261531c816152e0565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061537f6032836137d5565b915061538a82615323565b604082019050919050565b600060208201905081810360008301526153ae81615372565b9050919050565b60006153c0826138ea565b91506153cb836138ea565b9250826153db576153da6149d1565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b600061540d826153e6565b61541781856153f1565b93506154278185602086016137e6565b61543081613819565b840191505092915050565b600060808201905061545060008301876139df565b61545d60208301866139df565b61546a6040830185613a75565b818103606083015261547c8184615402565b905095945050505050565b6000815190506154968161373b565b92915050565b6000602082840312156154b2576154b1613705565b5b60006154c084828501615487565b9150509291505056fea26469706673582212200ea782639ea7f56182a12a6059607da1f36e743ad91e15015490c740b50ab50464736f6c634300080b0033

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.