ETH Price: $3,452.80 (-1.14%)
Gas: 10 Gwei

Token

Bunks NFT (BUNKS)
 

Overview

Max Total Supply

1,380 BUNKS

Holders

82

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
91087.eth
Balance
2 BUNKS
0xeb89007481990d739c1ed98d210bddfb60e8f3bf
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:
MyNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : MyNft.sol
// SPDX-License-Identifier: GPL-3.0

pragma solidity >=0.7.0 <0.9.0;

import "erc721a/contracts/ERC721A.sol";

contract MyNFT is ERC721A {
    using Strings for uint256;

    address public owner;
    string public baseURI = "https://bunks-nft-bhm.herokuapp.com/";
    string public baseExtension = ".json";
    string public notRevealedUri = "https://bunks-nft-bhm.herokuapp.com";
    uint256 public cost = .035 ether;
    uint256 public maxSupply = 7000;
    uint256 public maxMintAmount = 20;
    uint256 public nftPerAddressLimit = 100000;
    uint256 public freeBunks = 500;

    bool public paused = false;
    bool public revealed = false;

    mapping(address => uint256) public addressMintedBalance;

    constructor() ERC721A("Bunks NFT", "BUNKS") {
        owner = msg.sender;
    }

    modifier onlyOwner() {
        require(msg.sender == owner, "you are not the owner");
        _;
    }

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

    // public
    function freeMint(uint256 _mintAmount) public payable {
        require(!paused, "the contract is paused");
        uint256 supply = totalSupply();
        require(_mintAmount > 0, "need to mint at least 1 NFT");
        require(
            _mintAmount <= maxMintAmount,
            "max mint amount per session exceeded"
        );
        require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");
        require(supply + _mintAmount <= freeBunks, "Free bunks are sold out");
        _safeMint(msg.sender, _mintAmount);
        delete supply;
    }

    function mint(uint256 _mintAmount) public payable {
        require(!paused, "the contract is paused");
        uint256 supply = totalSupply();
        require(_mintAmount > 0, "need to mint at least 1 NFT");
        require(
            _mintAmount <= maxMintAmount,
            "max mint amount per session exceeded"
        );
        require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");
        require(msg.value >= cost * _mintAmount, "insufficient funds");
        _safeMint(msg.sender, _mintAmount);
        delete supply;
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

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

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

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

    function reveal() public onlyOwner {
        revealed = true;
    }

    function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
        nftPerAddressLimit = _limit;
    }

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

    function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmount = _newmaxMintAmount;
    }

    function setTotalFree(uint256 _totalFree) public onlyOwner {
        freeBunks = _totalFree;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

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

    function setMaxLimit(uint256 _state) public onlyOwner {
        maxSupply = _state;
    }

    function withdraw() public payable onlyOwner {
        uint256 totalBalance = address(this).balance;

        payable(owner).transfer((totalBalance * 19) / 100);

        payable(0x63a3f55523F61DA9d77721f03eD2774fEB8df78d).transfer(
            (totalBalance * 10) / 100
        );
        payable(0x5D110dbCc5c0d07A460Ee604902AC4223CB99d3c).transfer(
            (totalBalance * 10) / 100
        );
        payable(0x82111fB488c0c327734baf2A415838B14490F9BB).transfer(
            (totalBalance * 20) / 100
        );
        payable(0xCca632bCeA6ab08ddE0E444711371548783E2D39).transfer(
            (totalBalance * 21) / 100
        );
    }

    function withdrawByOwner() public payable onlyOwner {
        payable(owner).transfer(address(this).balance);
    }
}

File 2 of 11 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.0;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex = 0;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        for (uint256 curr = tokenId; ; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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 override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: 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 override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), 'ERC721A: token already minted');
        require(quantity > 0, 'ERC721A: quantity must be greater 0');

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                'ERC721A: transfer to non ERC721Receiver implementer'
            );
            updatedIndex++;
        }

        currentIndex = updatedIndex;
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;
        }

        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

        // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
        // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
        uint256 nextTokenId = tokenId + 1;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(prevOwnership.addr, prevOwnership.startTimestamp);
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

File 3 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 4 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 5 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 6 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 7 of 11 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeBunks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_state","type":"uint256"}],"name":"setMaxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_totalFree","type":"uint256"}],"name":"setTotalFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawByOwner","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052600080556040518060600160405280602481526020016200537d60249139600890805190602001906200003992919062000208565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600990805190602001906200008792919062000208565b50604051806060016040528060238152602001620053a160239139600a9080519060200190620000b992919062000208565b50667c585087238000600b55611b58600c556014600d55620186a0600e556101f4600f556000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055503480156200012057600080fd5b506040518060400160405280600981526020017f42756e6b73204e465400000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f42554e4b530000000000000000000000000000000000000000000000000000008152508160019080519060200190620001a592919062000208565b508060029080519060200190620001be92919062000208565b50505033600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200031d565b8280546200021690620002b8565b90600052602060002090601f0160209004810192826200023a576000855562000286565b82601f106200025557805160ff191683800117855562000286565b8280016001018555821562000286579182015b828111156200028557825182559160200191906001019062000268565b5b50905062000295919062000299565b5090565b5b80821115620002b45760008160009055506001016200029a565b5090565b60006002820490506001821680620002d157607f821691505b60208210811415620002e857620002e7620002ee565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b615050806200032d6000396000f3fe60806040526004361061025c5760003560e01c8063563aaf1111610144578063a475b5dd116100b6578063c87b56dd1161007a578063c87b56dd1461089e578063d0eb26b0146108db578063d5abeb0114610904578063da3ef23f1461092f578063e985e9c514610958578063f2c4ce1e146109955761025c565b8063a475b5dd146107df578063b88d4fde146107f6578063ba7d2c761461081f578063bf8bcee41461084a578063c6682862146108735761025c565b80637c928fe9116101085780637c928fe9146106ff5780637f00c7a61461071b5780638da5cb5b1461074457806395d89b411461076f578063a0712d681461079a578063a22cb465146107b65761025c565b8063563aaf11146106065780635c975abb1461062f5780636352211e1461065a5780636c0360eb1461069757806370a08231146106c25761025c565b806318cae269116101dd57806342842e0e116101a157806342842e0e146104e6578063438b63001461050f57806344a0d68a1461054c5780634f6ccce71461057557806351830227146105b257806355f804b3146105dd5761025c565b806318cae2691461040e578063239c70ae1461044b57806323b872dd146104765780632f745c591461049f5780633ccfd60b146104dc5761025c565b8063081812fc11610224578063081812fc14610327578063081c8c4414610364578063095ea7b31461038f57806313faede6146103b857806318160ddd146103e35761025c565b806301ffc9a71461026157806302329a291461029e57806305f2327e146102c7578063065f5cc1146102d157806306fdde03146102fc575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190613a2c565b6109be565b60405161029591906140d2565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c091906139ff565b610b08565b005b6102cf610bb5565b005b3480156102dd57600080fd5b506102e6610cb0565b6040516102f3919061440f565b60405180910390f35b34801561030857600080fd5b50610311610cb6565b60405161031e91906140ed565b60405180910390f35b34801561033357600080fd5b5061034e60048036038101906103499190613acf565b610d48565b60405161035b9190614049565b60405180910390f35b34801561037057600080fd5b50610379610dcd565b60405161038691906140ed565b60405180910390f35b34801561039b57600080fd5b506103b660048036038101906103b191906139bf565b610e5b565b005b3480156103c457600080fd5b506103cd610f74565b6040516103da919061440f565b60405180910390f35b3480156103ef57600080fd5b506103f8610f7a565b604051610405919061440f565b60405180910390f35b34801561041a57600080fd5b506104356004803603810190610430919061383c565b610f83565b604051610442919061440f565b60405180910390f35b34801561045757600080fd5b50610460610f9b565b60405161046d919061440f565b60405180910390f35b34801561048257600080fd5b5061049d600480360381019061049891906138a9565b610fa1565b005b3480156104ab57600080fd5b506104c660048036038101906104c191906139bf565b610fb1565b6040516104d3919061440f565b60405180910390f35b6104e46111af565b005b3480156104f257600080fd5b5061050d600480360381019061050891906138a9565b611494565b005b34801561051b57600080fd5b506105366004803603810190610531919061383c565b6114b4565b60405161054391906140b0565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e9190613acf565b611562565b005b34801561058157600080fd5b5061059c60048036038101906105979190613acf565b6115fc565b6040516105a9919061440f565b60405180910390f35b3480156105be57600080fd5b506105c761164f565b6040516105d491906140d2565b60405180910390f35b3480156105e957600080fd5b5061060460048036038101906105ff9190613a86565b611662565b005b34801561061257600080fd5b5061062d60048036038101906106289190613acf565b61170c565b005b34801561063b57600080fd5b506106446117a6565b60405161065191906140d2565b60405180910390f35b34801561066657600080fd5b50610681600480360381019061067c9190613acf565b6117b9565b60405161068e9190614049565b60405180910390f35b3480156106a357600080fd5b506106ac6117cf565b6040516106b991906140ed565b60405180910390f35b3480156106ce57600080fd5b506106e960048036038101906106e4919061383c565b61185d565b6040516106f6919061440f565b60405180910390f35b61071960048036038101906107149190613acf565b611946565b005b34801561072757600080fd5b50610742600480360381019061073d9190613acf565b611adc565b005b34801561075057600080fd5b50610759611b76565b6040516107669190614049565b60405180910390f35b34801561077b57600080fd5b50610784611b9c565b60405161079191906140ed565b60405180910390f35b6107b460048036038101906107af9190613acf565b611c2e565b005b3480156107c257600080fd5b506107dd60048036038101906107d8919061397f565b611dc4565b005b3480156107eb57600080fd5b506107f4611f45565b005b34801561080257600080fd5b5061081d600480360381019061081891906138fc565b611ff2565b005b34801561082b57600080fd5b5061083461204e565b604051610841919061440f565b60405180910390f35b34801561085657600080fd5b50610871600480360381019061086c9190613acf565b612054565b005b34801561087f57600080fd5b506108886120ee565b60405161089591906140ed565b60405180910390f35b3480156108aa57600080fd5b506108c560048036038101906108c09190613acf565b61217c565b6040516108d291906140ed565b60405180910390f35b3480156108e757600080fd5b5061090260048036038101906108fd9190613acf565b6122d5565b005b34801561091057600080fd5b5061091961236f565b604051610926919061440f565b60405180910390f35b34801561093b57600080fd5b5061095660048036038101906109519190613a86565b612375565b005b34801561096457600080fd5b5061097f600480360381019061097a9190613869565b61241f565b60405161098c91906140d2565b60405180910390f35b3480156109a157600080fd5b506109bc60048036038101906109b79190613a86565b6124b3565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a8957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610af157507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b015750610b008261255d565b5b9050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f9061422f565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3c9061422f565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610cad573d6000803e3d6000fd5b50565b600f5481565b606060018054610cc590614799565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf190614799565b8015610d3e5780601f10610d1357610100808354040283529160200191610d3e565b820191906000526020600020905b815481529060010190602001808311610d2157829003601f168201915b5050505050905090565b6000610d53826125c7565b610d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d89906143cf565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600a8054610dda90614799565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0690614799565b8015610e535780601f10610e2857610100808354040283529160200191610e53565b820191906000526020600020905b815481529060010190602001808311610e3657829003601f168201915b505050505081565b6000610e66826117b9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ed7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ece906142ef565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ef66125d4565b73ffffffffffffffffffffffffffffffffffffffff161480610f255750610f2481610f1f6125d4565b61241f565b5b610f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5b906141af565b60405180910390fd5b610f6f8383836125dc565b505050565b600b5481565b60008054905090565b60116020528060005260406000206000915090505481565b600d5481565b610fac83838361268e565b505050565b6000610fbc8361185d565b8210610ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff49061410f565b60405180910390fd5b6000611007610f7a565b905060008060005b8381101561116d576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461110157806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611159578684141561114a5781955050505050506111a9565b8380611155906147fc565b9450505b508080611165906147fc565b91505061100f565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a0906143af565b60405180910390fd5b92915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461123f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112369061422f565b60405180910390fd5b6000479050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc606460138461128f919061460f565b61129991906145de565b9081150290604051600060405180830381858888f193505050501580156112c4573d6000803e3d6000fd5b507363a3f55523f61da9d77721f03ed2774feb8df78d73ffffffffffffffffffffffffffffffffffffffff166108fc6064600a84611302919061460f565b61130c91906145de565b9081150290604051600060405180830381858888f19350505050158015611337573d6000803e3d6000fd5b50735d110dbcc5c0d07a460ee604902ac4223cb99d3c73ffffffffffffffffffffffffffffffffffffffff166108fc6064600a84611375919061460f565b61137f91906145de565b9081150290604051600060405180830381858888f193505050501580156113aa573d6000803e3d6000fd5b507382111fb488c0c327734baf2a415838b14490f9bb73ffffffffffffffffffffffffffffffffffffffff166108fc60646014846113e8919061460f565b6113f291906145de565b9081150290604051600060405180830381858888f1935050505015801561141d573d6000803e3d6000fd5b5073cca632bcea6ab08dde0e444711371548783e2d3973ffffffffffffffffffffffffffffffffffffffff166108fc606460158461145b919061460f565b61146591906145de565b9081150290604051600060405180830381858888f19350505050158015611490573d6000803e3d6000fd5b5050565b6114af83838360405180602001604052806000815250611ff2565b505050565b606060006114c18361185d565b905060008167ffffffffffffffff8111156114df576114de614932565b5b60405190808252806020026020018201604052801561150d5781602001602082028036833780820191505090505b50905060005b82811015611557576115258582610fb1565b82828151811061153857611537614903565b5b602002602001018181525050808061154f906147fc565b915050611513565b508092505050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e99061422f565b60405180910390fd5b80600b8190555050565b6000611606610f7a565b8210611647576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163e9061414f565b60405180910390fd5b819050919050565b601060019054906101000a900460ff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146116f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e99061422f565b60405180910390fd5b8060089080519060200190611708929190613616565b5050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461179c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117939061422f565b60405180910390fd5b80600f8190555050565b601060009054906101000a900460ff1681565b60006117c482612c35565b600001519050919050565b600880546117dc90614799565b80601f016020809104026020016040519081016040528092919081815260200182805461180890614799565b80156118555780601f1061182a57610100808354040283529160200191611855565b820191906000526020600020905b81548152906001019060200180831161183857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c59061420f565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b601060009054906101000a900460ff1615611996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198d9061426f565b60405180910390fd5b60006119a0610f7a565b9050600082116119e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119dc906143ef565b60405180910390fd5b600d54821115611a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a21906141ef565b60405180910390fd5b600c548282611a399190614588565b1115611a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a71906141cf565b60405180910390fd5b600f548282611a899190614588565b1115611aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac19061418f565b60405180910390fd5b611ad43383612d90565b600090505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b639061422f565b60405180910390fd5b80600d8190555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060028054611bab90614799565b80601f0160208091040260200160405190810160405280929190818152602001828054611bd790614799565b8015611c245780601f10611bf957610100808354040283529160200191611c24565b820191906000526020600020905b815481529060010190602001808311611c0757829003601f168201915b5050505050905090565b601060009054906101000a900460ff1615611c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c759061426f565b60405180910390fd5b6000611c88610f7a565b905060008211611ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc4906143ef565b60405180910390fd5b600d54821115611d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d09906141ef565b60405180910390fd5b600c548282611d219190614588565b1115611d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d59906141cf565b60405180910390fd5b81600b54611d70919061460f565b341015611db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da99061432f565b60405180910390fd5b611dbc3383612d90565b600090505050565b611dcc6125d4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e31906142af565b60405180910390fd5b8060066000611e476125d4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ef46125d4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f3991906140d2565b60405180910390a35050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcc9061422f565b60405180910390fd5b6001601060016101000a81548160ff021916908315150217905550565b611ffd84848461268e565b61200984848484612dae565b612048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203f9061434f565b60405180910390fd5b50505050565b600e5481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146120e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120db9061422f565b60405180910390fd5b80600c8190555050565b600980546120fb90614799565b80601f016020809104026020016040519081016040528092919081815260200182805461212790614799565b80156121745780601f1061214957610100808354040283529160200191612174565b820191906000526020600020905b81548152906001019060200180831161215757829003601f168201915b505050505081565b6060612187826125c7565b6121c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bd9061428f565b60405180910390fd5b60001515601060019054906101000a900460ff161515141561227457600a80546121ef90614799565b80601f016020809104026020016040519081016040528092919081815260200182805461221b90614799565b80156122685780601f1061223d57610100808354040283529160200191612268565b820191906000526020600020905b81548152906001019060200180831161224b57829003601f168201915b505050505090506122d0565b600061227e612f45565b9050600081511161229e57604051806020016040528060008152506122cc565b806122a884612fd7565b60096040516020016122bc93929190614018565b6040516020818303038152906040525b9150505b919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235c9061422f565b60405180910390fd5b80600e8190555050565b600c5481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fc9061422f565b60405180910390fd5b806009908051906020019061241b929190613616565b5050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253a9061422f565b60405180910390fd5b80600a9080519060200190612559929190613616565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061269982612c35565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166126c06125d4565b73ffffffffffffffffffffffffffffffffffffffff16148061271c57506126e56125d4565b73ffffffffffffffffffffffffffffffffffffffff1661270484610d48565b73ffffffffffffffffffffffffffffffffffffffff16145b80612738575061273782600001516127326125d4565b61241f565b5b90508061277a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612771906142cf565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146127ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e39061424f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561285c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128539061416f565b60405180910390fd5b6128698585856001613138565b61287960008484600001516125dc565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612a7f9190614588565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612bc557612af5816125c7565b15612bc4576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c2d868686600161313e565b505050505050565b612c3d61369c565b612c46826125c7565b612c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7c9061412f565b60405180910390fd5b60008290505b6000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612d77578092505050612d8b565b508080612d839061476f565b915050612c8b565b919050565b612daa828260405180602001604052806000815250613144565b5050565b6000612dcf8473ffffffffffffffffffffffffffffffffffffffff16613603565b15612f38578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612df86125d4565b8786866040518563ffffffff1660e01b8152600401612e1a9493929190614064565b602060405180830381600087803b158015612e3457600080fd5b505af1925050508015612e6557506040513d601f19601f82011682018060405250810190612e629190613a59565b60015b612ee8573d8060008114612e95576040519150601f19603f3d011682016040523d82523d6000602084013e612e9a565b606091505b50600081511415612ee0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed79061434f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f3d565b600190505b949350505050565b606060088054612f5490614799565b80601f0160208091040260200160405190810160405280929190818152602001828054612f8090614799565b8015612fcd5780601f10612fa257610100808354040283529160200191612fcd565b820191906000526020600020905b815481529060010190602001808311612fb057829003601f168201915b5050505050905090565b6060600082141561301f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613133565b600082905060005b6000821461305157808061303a906147fc565b915050600a8261304a91906145de565b9150613027565b60008167ffffffffffffffff81111561306d5761306c614932565b5b6040519080825280601f01601f19166020018201604052801561309f5781602001600182028036833780820191505090505b5090505b6000851461312c576001826130b89190614669565b9150600a856130c79190614845565b60306130d39190614588565b60f81b8183815181106130e9576130e8614903565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561312591906145de565b94506130a3565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156131ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b19061438f565b60405180910390fd5b6131c3816125c7565b15613203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131fa9061436f565b60405180910390fd5b60008311613246576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161323d9061430f565b60405180910390fd5b6132536000858386613138565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516133509190614542565b6fffffffffffffffffffffffffffffffff1681526020018583602001516133779190614542565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156135e657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135866000888488612dae565b6135c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135bc9061434f565b60405180910390fd5b81806135d0906147fc565b92505080806135de906147fc565b915050613515565b50806000819055506135fb600087858861313e565b505050505050565b600080823b905060008111915050919050565b82805461362290614799565b90600052602060002090601f016020900481019282613644576000855561368b565b82601f1061365d57805160ff191683800117855561368b565b8280016001018555821561368b579182015b8281111561368a57825182559160200191906001019061366f565b5b50905061369891906136d6565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156136ef5760008160009055506001016136d7565b5090565b60006137066137018461444f565b61442a565b90508281526020810184848401111561372257613721614966565b5b61372d84828561472d565b509392505050565b600061374861374384614480565b61442a565b90508281526020810184848401111561376457613763614966565b5b61376f84828561472d565b509392505050565b60008135905061378681614fbe565b92915050565b60008135905061379b81614fd5565b92915050565b6000813590506137b081614fec565b92915050565b6000815190506137c581614fec565b92915050565b600082601f8301126137e0576137df614961565b5b81356137f08482602086016136f3565b91505092915050565b600082601f83011261380e5761380d614961565b5b813561381e848260208601613735565b91505092915050565b60008135905061383681615003565b92915050565b60006020828403121561385257613851614970565b5b600061386084828501613777565b91505092915050565b600080604083850312156138805761387f614970565b5b600061388e85828601613777565b925050602061389f85828601613777565b9150509250929050565b6000806000606084860312156138c2576138c1614970565b5b60006138d086828701613777565b93505060206138e186828701613777565b92505060406138f286828701613827565b9150509250925092565b6000806000806080858703121561391657613915614970565b5b600061392487828801613777565b945050602061393587828801613777565b935050604061394687828801613827565b925050606085013567ffffffffffffffff8111156139675761396661496b565b5b613973878288016137cb565b91505092959194509250565b6000806040838503121561399657613995614970565b5b60006139a485828601613777565b92505060206139b58582860161378c565b9150509250929050565b600080604083850312156139d6576139d5614970565b5b60006139e485828601613777565b92505060206139f585828601613827565b9150509250929050565b600060208284031215613a1557613a14614970565b5b6000613a238482850161378c565b91505092915050565b600060208284031215613a4257613a41614970565b5b6000613a50848285016137a1565b91505092915050565b600060208284031215613a6f57613a6e614970565b5b6000613a7d848285016137b6565b91505092915050565b600060208284031215613a9c57613a9b614970565b5b600082013567ffffffffffffffff811115613aba57613ab961496b565b5b613ac6848285016137f9565b91505092915050565b600060208284031215613ae557613ae4614970565b5b6000613af384828501613827565b91505092915050565b6000613b088383613ffa565b60208301905092915050565b613b1d8161469d565b82525050565b6000613b2e826144d6565b613b388185614504565b9350613b43836144b1565b8060005b83811015613b74578151613b5b8882613afc565b9750613b66836144f7565b925050600181019050613b47565b5085935050505092915050565b613b8a816146af565b82525050565b6000613b9b826144e1565b613ba58185614515565b9350613bb581856020860161473c565b613bbe81614975565b840191505092915050565b6000613bd4826144ec565b613bde8185614526565b9350613bee81856020860161473c565b613bf781614975565b840191505092915050565b6000613c0d826144ec565b613c178185614537565b9350613c2781856020860161473c565b80840191505092915050565b60008154613c4081614799565b613c4a8186614537565b94506001821660008114613c655760018114613c7657613ca9565b60ff19831686528186019350613ca9565b613c7f856144c1565b60005b83811015613ca157815481890152600182019150602081019050613c82565b838801955050505b50505092915050565b6000613cbf602283614526565b9150613cca82614986565b604082019050919050565b6000613ce2602a83614526565b9150613ced826149d5565b604082019050919050565b6000613d05602383614526565b9150613d1082614a24565b604082019050919050565b6000613d28602583614526565b9150613d3382614a73565b604082019050919050565b6000613d4b601783614526565b9150613d5682614ac2565b602082019050919050565b6000613d6e603983614526565b9150613d7982614aeb565b604082019050919050565b6000613d91601683614526565b9150613d9c82614b3a565b602082019050919050565b6000613db4602483614526565b9150613dbf82614b63565b604082019050919050565b6000613dd7602b83614526565b9150613de282614bb2565b604082019050919050565b6000613dfa601583614526565b9150613e0582614c01565b602082019050919050565b6000613e1d602683614526565b9150613e2882614c2a565b604082019050919050565b6000613e40601683614526565b9150613e4b82614c79565b602082019050919050565b6000613e63602f83614526565b9150613e6e82614ca2565b604082019050919050565b6000613e86601a83614526565b9150613e9182614cf1565b602082019050919050565b6000613ea9603283614526565b9150613eb482614d1a565b604082019050919050565b6000613ecc602283614526565b9150613ed782614d69565b604082019050919050565b6000613eef602383614526565b9150613efa82614db8565b604082019050919050565b6000613f12601283614526565b9150613f1d82614e07565b602082019050919050565b6000613f35603383614526565b9150613f4082614e30565b604082019050919050565b6000613f58601d83614526565b9150613f6382614e7f565b602082019050919050565b6000613f7b602183614526565b9150613f8682614ea8565b604082019050919050565b6000613f9e602e83614526565b9150613fa982614ef7565b604082019050919050565b6000613fc1602d83614526565b9150613fcc82614f46565b604082019050919050565b6000613fe4601b83614526565b9150613fef82614f95565b602082019050919050565b61400381614723565b82525050565b61401281614723565b82525050565b60006140248286613c02565b91506140308285613c02565b915061403c8284613c33565b9150819050949350505050565b600060208201905061405e6000830184613b14565b92915050565b60006080820190506140796000830187613b14565b6140866020830186613b14565b6140936040830185614009565b81810360608301526140a58184613b90565b905095945050505050565b600060208201905081810360008301526140ca8184613b23565b905092915050565b60006020820190506140e76000830184613b81565b92915050565b600060208201905081810360008301526141078184613bc9565b905092915050565b6000602082019050818103600083015261412881613cb2565b9050919050565b6000602082019050818103600083015261414881613cd5565b9050919050565b6000602082019050818103600083015261416881613cf8565b9050919050565b6000602082019050818103600083015261418881613d1b565b9050919050565b600060208201905081810360008301526141a881613d3e565b9050919050565b600060208201905081810360008301526141c881613d61565b9050919050565b600060208201905081810360008301526141e881613d84565b9050919050565b6000602082019050818103600083015261420881613da7565b9050919050565b6000602082019050818103600083015261422881613dca565b9050919050565b6000602082019050818103600083015261424881613ded565b9050919050565b6000602082019050818103600083015261426881613e10565b9050919050565b6000602082019050818103600083015261428881613e33565b9050919050565b600060208201905081810360008301526142a881613e56565b9050919050565b600060208201905081810360008301526142c881613e79565b9050919050565b600060208201905081810360008301526142e881613e9c565b9050919050565b6000602082019050818103600083015261430881613ebf565b9050919050565b6000602082019050818103600083015261432881613ee2565b9050919050565b6000602082019050818103600083015261434881613f05565b9050919050565b6000602082019050818103600083015261436881613f28565b9050919050565b6000602082019050818103600083015261438881613f4b565b9050919050565b600060208201905081810360008301526143a881613f6e565b9050919050565b600060208201905081810360008301526143c881613f91565b9050919050565b600060208201905081810360008301526143e881613fb4565b9050919050565b6000602082019050818103600083015261440881613fd7565b9050919050565b60006020820190506144246000830184614009565b92915050565b6000614434614445565b905061444082826147cb565b919050565b6000604051905090565b600067ffffffffffffffff82111561446a57614469614932565b5b61447382614975565b9050602081019050919050565b600067ffffffffffffffff82111561449b5761449a614932565b5b6144a482614975565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061454d826146e7565b9150614558836146e7565b9250826fffffffffffffffffffffffffffffffff0382111561457d5761457c614876565b5b828201905092915050565b600061459382614723565b915061459e83614723565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145d3576145d2614876565b5b828201905092915050565b60006145e982614723565b91506145f483614723565b925082614604576146036148a5565b5b828204905092915050565b600061461a82614723565b915061462583614723565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561465e5761465d614876565b5b828202905092915050565b600061467482614723565b915061467f83614723565b92508282101561469257614691614876565b5b828203905092915050565b60006146a882614703565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561475a57808201518184015260208101905061473f565b83811115614769576000848401525b50505050565b600061477a82614723565b9150600082141561478e5761478d614876565b5b600182039050919050565b600060028204905060018216806147b157607f821691505b602082108114156147c5576147c46148d4565b5b50919050565b6147d482614975565b810181811067ffffffffffffffff821117156147f3576147f2614932565b5b80604052505050565b600061480782614723565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561483a57614839614876565b5b600182019050919050565b600061485082614723565b915061485b83614723565b92508261486b5761486a6148a5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f467265652062756e6b732061726520736f6c64206f7574000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f796f7520617265206e6f7420746865206f776e65720000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f7220300000000000000000000000000000000000000000000000000000000000602082015250565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b614fc78161469d565b8114614fd257600080fd5b50565b614fde816146af565b8114614fe957600080fd5b50565b614ff5816146bb565b811461500057600080fd5b50565b61500c81614723565b811461501757600080fd5b5056fea2646970667358221220401eccc8acf73363b37f2c01a7898d8f57e3d4b7a94a70051beffa90080217c164736f6c6343000807003368747470733a2f2f62756e6b732d6e66742d62686d2e6865726f6b756170702e636f6d2f68747470733a2f2f62756e6b732d6e66742d62686d2e6865726f6b756170702e636f6d

Deployed Bytecode

0x60806040526004361061025c5760003560e01c8063563aaf1111610144578063a475b5dd116100b6578063c87b56dd1161007a578063c87b56dd1461089e578063d0eb26b0146108db578063d5abeb0114610904578063da3ef23f1461092f578063e985e9c514610958578063f2c4ce1e146109955761025c565b8063a475b5dd146107df578063b88d4fde146107f6578063ba7d2c761461081f578063bf8bcee41461084a578063c6682862146108735761025c565b80637c928fe9116101085780637c928fe9146106ff5780637f00c7a61461071b5780638da5cb5b1461074457806395d89b411461076f578063a0712d681461079a578063a22cb465146107b65761025c565b8063563aaf11146106065780635c975abb1461062f5780636352211e1461065a5780636c0360eb1461069757806370a08231146106c25761025c565b806318cae269116101dd57806342842e0e116101a157806342842e0e146104e6578063438b63001461050f57806344a0d68a1461054c5780634f6ccce71461057557806351830227146105b257806355f804b3146105dd5761025c565b806318cae2691461040e578063239c70ae1461044b57806323b872dd146104765780632f745c591461049f5780633ccfd60b146104dc5761025c565b8063081812fc11610224578063081812fc14610327578063081c8c4414610364578063095ea7b31461038f57806313faede6146103b857806318160ddd146103e35761025c565b806301ffc9a71461026157806302329a291461029e57806305f2327e146102c7578063065f5cc1146102d157806306fdde03146102fc575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190613a2c565b6109be565b60405161029591906140d2565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c091906139ff565b610b08565b005b6102cf610bb5565b005b3480156102dd57600080fd5b506102e6610cb0565b6040516102f3919061440f565b60405180910390f35b34801561030857600080fd5b50610311610cb6565b60405161031e91906140ed565b60405180910390f35b34801561033357600080fd5b5061034e60048036038101906103499190613acf565b610d48565b60405161035b9190614049565b60405180910390f35b34801561037057600080fd5b50610379610dcd565b60405161038691906140ed565b60405180910390f35b34801561039b57600080fd5b506103b660048036038101906103b191906139bf565b610e5b565b005b3480156103c457600080fd5b506103cd610f74565b6040516103da919061440f565b60405180910390f35b3480156103ef57600080fd5b506103f8610f7a565b604051610405919061440f565b60405180910390f35b34801561041a57600080fd5b506104356004803603810190610430919061383c565b610f83565b604051610442919061440f565b60405180910390f35b34801561045757600080fd5b50610460610f9b565b60405161046d919061440f565b60405180910390f35b34801561048257600080fd5b5061049d600480360381019061049891906138a9565b610fa1565b005b3480156104ab57600080fd5b506104c660048036038101906104c191906139bf565b610fb1565b6040516104d3919061440f565b60405180910390f35b6104e46111af565b005b3480156104f257600080fd5b5061050d600480360381019061050891906138a9565b611494565b005b34801561051b57600080fd5b506105366004803603810190610531919061383c565b6114b4565b60405161054391906140b0565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e9190613acf565b611562565b005b34801561058157600080fd5b5061059c60048036038101906105979190613acf565b6115fc565b6040516105a9919061440f565b60405180910390f35b3480156105be57600080fd5b506105c761164f565b6040516105d491906140d2565b60405180910390f35b3480156105e957600080fd5b5061060460048036038101906105ff9190613a86565b611662565b005b34801561061257600080fd5b5061062d60048036038101906106289190613acf565b61170c565b005b34801561063b57600080fd5b506106446117a6565b60405161065191906140d2565b60405180910390f35b34801561066657600080fd5b50610681600480360381019061067c9190613acf565b6117b9565b60405161068e9190614049565b60405180910390f35b3480156106a357600080fd5b506106ac6117cf565b6040516106b991906140ed565b60405180910390f35b3480156106ce57600080fd5b506106e960048036038101906106e4919061383c565b61185d565b6040516106f6919061440f565b60405180910390f35b61071960048036038101906107149190613acf565b611946565b005b34801561072757600080fd5b50610742600480360381019061073d9190613acf565b611adc565b005b34801561075057600080fd5b50610759611b76565b6040516107669190614049565b60405180910390f35b34801561077b57600080fd5b50610784611b9c565b60405161079191906140ed565b60405180910390f35b6107b460048036038101906107af9190613acf565b611c2e565b005b3480156107c257600080fd5b506107dd60048036038101906107d8919061397f565b611dc4565b005b3480156107eb57600080fd5b506107f4611f45565b005b34801561080257600080fd5b5061081d600480360381019061081891906138fc565b611ff2565b005b34801561082b57600080fd5b5061083461204e565b604051610841919061440f565b60405180910390f35b34801561085657600080fd5b50610871600480360381019061086c9190613acf565b612054565b005b34801561087f57600080fd5b506108886120ee565b60405161089591906140ed565b60405180910390f35b3480156108aa57600080fd5b506108c560048036038101906108c09190613acf565b61217c565b6040516108d291906140ed565b60405180910390f35b3480156108e757600080fd5b5061090260048036038101906108fd9190613acf565b6122d5565b005b34801561091057600080fd5b5061091961236f565b604051610926919061440f565b60405180910390f35b34801561093b57600080fd5b5061095660048036038101906109519190613a86565b612375565b005b34801561096457600080fd5b5061097f600480360381019061097a9190613869565b61241f565b60405161098c91906140d2565b60405180910390f35b3480156109a157600080fd5b506109bc60048036038101906109b79190613a86565b6124b3565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a8957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610af157507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b015750610b008261255d565b5b9050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f9061422f565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3c9061422f565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610cad573d6000803e3d6000fd5b50565b600f5481565b606060018054610cc590614799565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf190614799565b8015610d3e5780601f10610d1357610100808354040283529160200191610d3e565b820191906000526020600020905b815481529060010190602001808311610d2157829003601f168201915b5050505050905090565b6000610d53826125c7565b610d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d89906143cf565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600a8054610dda90614799565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0690614799565b8015610e535780601f10610e2857610100808354040283529160200191610e53565b820191906000526020600020905b815481529060010190602001808311610e3657829003601f168201915b505050505081565b6000610e66826117b9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ed7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ece906142ef565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ef66125d4565b73ffffffffffffffffffffffffffffffffffffffff161480610f255750610f2481610f1f6125d4565b61241f565b5b610f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5b906141af565b60405180910390fd5b610f6f8383836125dc565b505050565b600b5481565b60008054905090565b60116020528060005260406000206000915090505481565b600d5481565b610fac83838361268e565b505050565b6000610fbc8361185d565b8210610ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff49061410f565b60405180910390fd5b6000611007610f7a565b905060008060005b8381101561116d576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461110157806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611159578684141561114a5781955050505050506111a9565b8380611155906147fc565b9450505b508080611165906147fc565b91505061100f565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a0906143af565b60405180910390fd5b92915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461123f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112369061422f565b60405180910390fd5b6000479050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc606460138461128f919061460f565b61129991906145de565b9081150290604051600060405180830381858888f193505050501580156112c4573d6000803e3d6000fd5b507363a3f55523f61da9d77721f03ed2774feb8df78d73ffffffffffffffffffffffffffffffffffffffff166108fc6064600a84611302919061460f565b61130c91906145de565b9081150290604051600060405180830381858888f19350505050158015611337573d6000803e3d6000fd5b50735d110dbcc5c0d07a460ee604902ac4223cb99d3c73ffffffffffffffffffffffffffffffffffffffff166108fc6064600a84611375919061460f565b61137f91906145de565b9081150290604051600060405180830381858888f193505050501580156113aa573d6000803e3d6000fd5b507382111fb488c0c327734baf2a415838b14490f9bb73ffffffffffffffffffffffffffffffffffffffff166108fc60646014846113e8919061460f565b6113f291906145de565b9081150290604051600060405180830381858888f1935050505015801561141d573d6000803e3d6000fd5b5073cca632bcea6ab08dde0e444711371548783e2d3973ffffffffffffffffffffffffffffffffffffffff166108fc606460158461145b919061460f565b61146591906145de565b9081150290604051600060405180830381858888f19350505050158015611490573d6000803e3d6000fd5b5050565b6114af83838360405180602001604052806000815250611ff2565b505050565b606060006114c18361185d565b905060008167ffffffffffffffff8111156114df576114de614932565b5b60405190808252806020026020018201604052801561150d5781602001602082028036833780820191505090505b50905060005b82811015611557576115258582610fb1565b82828151811061153857611537614903565b5b602002602001018181525050808061154f906147fc565b915050611513565b508092505050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e99061422f565b60405180910390fd5b80600b8190555050565b6000611606610f7a565b8210611647576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163e9061414f565b60405180910390fd5b819050919050565b601060019054906101000a900460ff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146116f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e99061422f565b60405180910390fd5b8060089080519060200190611708929190613616565b5050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461179c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117939061422f565b60405180910390fd5b80600f8190555050565b601060009054906101000a900460ff1681565b60006117c482612c35565b600001519050919050565b600880546117dc90614799565b80601f016020809104026020016040519081016040528092919081815260200182805461180890614799565b80156118555780601f1061182a57610100808354040283529160200191611855565b820191906000526020600020905b81548152906001019060200180831161183857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c59061420f565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b601060009054906101000a900460ff1615611996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198d9061426f565b60405180910390fd5b60006119a0610f7a565b9050600082116119e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119dc906143ef565b60405180910390fd5b600d54821115611a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a21906141ef565b60405180910390fd5b600c548282611a399190614588565b1115611a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a71906141cf565b60405180910390fd5b600f548282611a899190614588565b1115611aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac19061418f565b60405180910390fd5b611ad43383612d90565b600090505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b639061422f565b60405180910390fd5b80600d8190555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060028054611bab90614799565b80601f0160208091040260200160405190810160405280929190818152602001828054611bd790614799565b8015611c245780601f10611bf957610100808354040283529160200191611c24565b820191906000526020600020905b815481529060010190602001808311611c0757829003601f168201915b5050505050905090565b601060009054906101000a900460ff1615611c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c759061426f565b60405180910390fd5b6000611c88610f7a565b905060008211611ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc4906143ef565b60405180910390fd5b600d54821115611d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d09906141ef565b60405180910390fd5b600c548282611d219190614588565b1115611d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d59906141cf565b60405180910390fd5b81600b54611d70919061460f565b341015611db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da99061432f565b60405180910390fd5b611dbc3383612d90565b600090505050565b611dcc6125d4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e31906142af565b60405180910390fd5b8060066000611e476125d4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ef46125d4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f3991906140d2565b60405180910390a35050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcc9061422f565b60405180910390fd5b6001601060016101000a81548160ff021916908315150217905550565b611ffd84848461268e565b61200984848484612dae565b612048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203f9061434f565b60405180910390fd5b50505050565b600e5481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146120e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120db9061422f565b60405180910390fd5b80600c8190555050565b600980546120fb90614799565b80601f016020809104026020016040519081016040528092919081815260200182805461212790614799565b80156121745780601f1061214957610100808354040283529160200191612174565b820191906000526020600020905b81548152906001019060200180831161215757829003601f168201915b505050505081565b6060612187826125c7565b6121c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bd9061428f565b60405180910390fd5b60001515601060019054906101000a900460ff161515141561227457600a80546121ef90614799565b80601f016020809104026020016040519081016040528092919081815260200182805461221b90614799565b80156122685780601f1061223d57610100808354040283529160200191612268565b820191906000526020600020905b81548152906001019060200180831161224b57829003601f168201915b505050505090506122d0565b600061227e612f45565b9050600081511161229e57604051806020016040528060008152506122cc565b806122a884612fd7565b60096040516020016122bc93929190614018565b6040516020818303038152906040525b9150505b919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235c9061422f565b60405180910390fd5b80600e8190555050565b600c5481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fc9061422f565b60405180910390fd5b806009908051906020019061241b929190613616565b5050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253a9061422f565b60405180910390fd5b80600a9080519060200190612559929190613616565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061269982612c35565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166126c06125d4565b73ffffffffffffffffffffffffffffffffffffffff16148061271c57506126e56125d4565b73ffffffffffffffffffffffffffffffffffffffff1661270484610d48565b73ffffffffffffffffffffffffffffffffffffffff16145b80612738575061273782600001516127326125d4565b61241f565b5b90508061277a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612771906142cf565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146127ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e39061424f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561285c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128539061416f565b60405180910390fd5b6128698585856001613138565b61287960008484600001516125dc565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612a7f9190614588565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612bc557612af5816125c7565b15612bc4576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c2d868686600161313e565b505050505050565b612c3d61369c565b612c46826125c7565b612c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7c9061412f565b60405180910390fd5b60008290505b6000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612d77578092505050612d8b565b508080612d839061476f565b915050612c8b565b919050565b612daa828260405180602001604052806000815250613144565b5050565b6000612dcf8473ffffffffffffffffffffffffffffffffffffffff16613603565b15612f38578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612df86125d4565b8786866040518563ffffffff1660e01b8152600401612e1a9493929190614064565b602060405180830381600087803b158015612e3457600080fd5b505af1925050508015612e6557506040513d601f19601f82011682018060405250810190612e629190613a59565b60015b612ee8573d8060008114612e95576040519150601f19603f3d011682016040523d82523d6000602084013e612e9a565b606091505b50600081511415612ee0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed79061434f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f3d565b600190505b949350505050565b606060088054612f5490614799565b80601f0160208091040260200160405190810160405280929190818152602001828054612f8090614799565b8015612fcd5780601f10612fa257610100808354040283529160200191612fcd565b820191906000526020600020905b815481529060010190602001808311612fb057829003601f168201915b5050505050905090565b6060600082141561301f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613133565b600082905060005b6000821461305157808061303a906147fc565b915050600a8261304a91906145de565b9150613027565b60008167ffffffffffffffff81111561306d5761306c614932565b5b6040519080825280601f01601f19166020018201604052801561309f5781602001600182028036833780820191505090505b5090505b6000851461312c576001826130b89190614669565b9150600a856130c79190614845565b60306130d39190614588565b60f81b8183815181106130e9576130e8614903565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561312591906145de565b94506130a3565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156131ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b19061438f565b60405180910390fd5b6131c3816125c7565b15613203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131fa9061436f565b60405180910390fd5b60008311613246576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161323d9061430f565b60405180910390fd5b6132536000858386613138565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516133509190614542565b6fffffffffffffffffffffffffffffffff1681526020018583602001516133779190614542565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156135e657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135866000888488612dae565b6135c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135bc9061434f565b60405180910390fd5b81806135d0906147fc565b92505080806135de906147fc565b915050613515565b50806000819055506135fb600087858861313e565b505050505050565b600080823b905060008111915050919050565b82805461362290614799565b90600052602060002090601f016020900481019282613644576000855561368b565b82601f1061365d57805160ff191683800117855561368b565b8280016001018555821561368b579182015b8281111561368a57825182559160200191906001019061366f565b5b50905061369891906136d6565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156136ef5760008160009055506001016136d7565b5090565b60006137066137018461444f565b61442a565b90508281526020810184848401111561372257613721614966565b5b61372d84828561472d565b509392505050565b600061374861374384614480565b61442a565b90508281526020810184848401111561376457613763614966565b5b61376f84828561472d565b509392505050565b60008135905061378681614fbe565b92915050565b60008135905061379b81614fd5565b92915050565b6000813590506137b081614fec565b92915050565b6000815190506137c581614fec565b92915050565b600082601f8301126137e0576137df614961565b5b81356137f08482602086016136f3565b91505092915050565b600082601f83011261380e5761380d614961565b5b813561381e848260208601613735565b91505092915050565b60008135905061383681615003565b92915050565b60006020828403121561385257613851614970565b5b600061386084828501613777565b91505092915050565b600080604083850312156138805761387f614970565b5b600061388e85828601613777565b925050602061389f85828601613777565b9150509250929050565b6000806000606084860312156138c2576138c1614970565b5b60006138d086828701613777565b93505060206138e186828701613777565b92505060406138f286828701613827565b9150509250925092565b6000806000806080858703121561391657613915614970565b5b600061392487828801613777565b945050602061393587828801613777565b935050604061394687828801613827565b925050606085013567ffffffffffffffff8111156139675761396661496b565b5b613973878288016137cb565b91505092959194509250565b6000806040838503121561399657613995614970565b5b60006139a485828601613777565b92505060206139b58582860161378c565b9150509250929050565b600080604083850312156139d6576139d5614970565b5b60006139e485828601613777565b92505060206139f585828601613827565b9150509250929050565b600060208284031215613a1557613a14614970565b5b6000613a238482850161378c565b91505092915050565b600060208284031215613a4257613a41614970565b5b6000613a50848285016137a1565b91505092915050565b600060208284031215613a6f57613a6e614970565b5b6000613a7d848285016137b6565b91505092915050565b600060208284031215613a9c57613a9b614970565b5b600082013567ffffffffffffffff811115613aba57613ab961496b565b5b613ac6848285016137f9565b91505092915050565b600060208284031215613ae557613ae4614970565b5b6000613af384828501613827565b91505092915050565b6000613b088383613ffa565b60208301905092915050565b613b1d8161469d565b82525050565b6000613b2e826144d6565b613b388185614504565b9350613b43836144b1565b8060005b83811015613b74578151613b5b8882613afc565b9750613b66836144f7565b925050600181019050613b47565b5085935050505092915050565b613b8a816146af565b82525050565b6000613b9b826144e1565b613ba58185614515565b9350613bb581856020860161473c565b613bbe81614975565b840191505092915050565b6000613bd4826144ec565b613bde8185614526565b9350613bee81856020860161473c565b613bf781614975565b840191505092915050565b6000613c0d826144ec565b613c178185614537565b9350613c2781856020860161473c565b80840191505092915050565b60008154613c4081614799565b613c4a8186614537565b94506001821660008114613c655760018114613c7657613ca9565b60ff19831686528186019350613ca9565b613c7f856144c1565b60005b83811015613ca157815481890152600182019150602081019050613c82565b838801955050505b50505092915050565b6000613cbf602283614526565b9150613cca82614986565b604082019050919050565b6000613ce2602a83614526565b9150613ced826149d5565b604082019050919050565b6000613d05602383614526565b9150613d1082614a24565b604082019050919050565b6000613d28602583614526565b9150613d3382614a73565b604082019050919050565b6000613d4b601783614526565b9150613d5682614ac2565b602082019050919050565b6000613d6e603983614526565b9150613d7982614aeb565b604082019050919050565b6000613d91601683614526565b9150613d9c82614b3a565b602082019050919050565b6000613db4602483614526565b9150613dbf82614b63565b604082019050919050565b6000613dd7602b83614526565b9150613de282614bb2565b604082019050919050565b6000613dfa601583614526565b9150613e0582614c01565b602082019050919050565b6000613e1d602683614526565b9150613e2882614c2a565b604082019050919050565b6000613e40601683614526565b9150613e4b82614c79565b602082019050919050565b6000613e63602f83614526565b9150613e6e82614ca2565b604082019050919050565b6000613e86601a83614526565b9150613e9182614cf1565b602082019050919050565b6000613ea9603283614526565b9150613eb482614d1a565b604082019050919050565b6000613ecc602283614526565b9150613ed782614d69565b604082019050919050565b6000613eef602383614526565b9150613efa82614db8565b604082019050919050565b6000613f12601283614526565b9150613f1d82614e07565b602082019050919050565b6000613f35603383614526565b9150613f4082614e30565b604082019050919050565b6000613f58601d83614526565b9150613f6382614e7f565b602082019050919050565b6000613f7b602183614526565b9150613f8682614ea8565b604082019050919050565b6000613f9e602e83614526565b9150613fa982614ef7565b604082019050919050565b6000613fc1602d83614526565b9150613fcc82614f46565b604082019050919050565b6000613fe4601b83614526565b9150613fef82614f95565b602082019050919050565b61400381614723565b82525050565b61401281614723565b82525050565b60006140248286613c02565b91506140308285613c02565b915061403c8284613c33565b9150819050949350505050565b600060208201905061405e6000830184613b14565b92915050565b60006080820190506140796000830187613b14565b6140866020830186613b14565b6140936040830185614009565b81810360608301526140a58184613b90565b905095945050505050565b600060208201905081810360008301526140ca8184613b23565b905092915050565b60006020820190506140e76000830184613b81565b92915050565b600060208201905081810360008301526141078184613bc9565b905092915050565b6000602082019050818103600083015261412881613cb2565b9050919050565b6000602082019050818103600083015261414881613cd5565b9050919050565b6000602082019050818103600083015261416881613cf8565b9050919050565b6000602082019050818103600083015261418881613d1b565b9050919050565b600060208201905081810360008301526141a881613d3e565b9050919050565b600060208201905081810360008301526141c881613d61565b9050919050565b600060208201905081810360008301526141e881613d84565b9050919050565b6000602082019050818103600083015261420881613da7565b9050919050565b6000602082019050818103600083015261422881613dca565b9050919050565b6000602082019050818103600083015261424881613ded565b9050919050565b6000602082019050818103600083015261426881613e10565b9050919050565b6000602082019050818103600083015261428881613e33565b9050919050565b600060208201905081810360008301526142a881613e56565b9050919050565b600060208201905081810360008301526142c881613e79565b9050919050565b600060208201905081810360008301526142e881613e9c565b9050919050565b6000602082019050818103600083015261430881613ebf565b9050919050565b6000602082019050818103600083015261432881613ee2565b9050919050565b6000602082019050818103600083015261434881613f05565b9050919050565b6000602082019050818103600083015261436881613f28565b9050919050565b6000602082019050818103600083015261438881613f4b565b9050919050565b600060208201905081810360008301526143a881613f6e565b9050919050565b600060208201905081810360008301526143c881613f91565b9050919050565b600060208201905081810360008301526143e881613fb4565b9050919050565b6000602082019050818103600083015261440881613fd7565b9050919050565b60006020820190506144246000830184614009565b92915050565b6000614434614445565b905061444082826147cb565b919050565b6000604051905090565b600067ffffffffffffffff82111561446a57614469614932565b5b61447382614975565b9050602081019050919050565b600067ffffffffffffffff82111561449b5761449a614932565b5b6144a482614975565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061454d826146e7565b9150614558836146e7565b9250826fffffffffffffffffffffffffffffffff0382111561457d5761457c614876565b5b828201905092915050565b600061459382614723565b915061459e83614723565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145d3576145d2614876565b5b828201905092915050565b60006145e982614723565b91506145f483614723565b925082614604576146036148a5565b5b828204905092915050565b600061461a82614723565b915061462583614723565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561465e5761465d614876565b5b828202905092915050565b600061467482614723565b915061467f83614723565b92508282101561469257614691614876565b5b828203905092915050565b60006146a882614703565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561475a57808201518184015260208101905061473f565b83811115614769576000848401525b50505050565b600061477a82614723565b9150600082141561478e5761478d614876565b5b600182039050919050565b600060028204905060018216806147b157607f821691505b602082108114156147c5576147c46148d4565b5b50919050565b6147d482614975565b810181811067ffffffffffffffff821117156147f3576147f2614932565b5b80604052505050565b600061480782614723565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561483a57614839614876565b5b600182019050919050565b600061485082614723565b915061485b83614723565b92508261486b5761486a6148a5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f467265652062756e6b732061726520736f6c64206f7574000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f796f7520617265206e6f7420746865206f776e65720000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f7220300000000000000000000000000000000000000000000000000000000000602082015250565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b614fc78161469d565b8114614fd257600080fd5b50565b614fde816146af565b8114614fe957600080fd5b50565b614ff5816146bb565b811461500057600080fd5b50565b61500c81614723565b811461501757600080fd5b5056fea2646970667358221220401eccc8acf73363b37f2c01a7898d8f57e3d4b7a94a70051beffa90080217c164736f6c63430008070033

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.