ETH Price: $2,533.12 (-0.03%)

Token

K9 (K9)
 

Overview

Max Total Supply

1,111 K9

Holders

398

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 K9
0x17A67d4C4677cc1F781fCaE897cf3068AE6d87d0
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:
K9

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 22 : K9.sol
// SPDX-License-Identifier: BSD-3-Clause

pragma solidity ^0.8.0;

import "./utils/GDXERC721Batch.sol";
import "./utils/Signed.sol";

contract K9 is GDXERC721Batch, Signed {
    using Strings for uint256;

    uint256 public MAX_ORDER = 8;
    uint256 public MAX_SUPPLY = 4444;
    uint256 public PRICE = 0.06 ether;

    uint256 public MAX_PRESALE_AMOUNT = 4;
    uint256 public PRESALE_PRICE = 0.05 ether;

    bool public isPresaleActive = false;
    bool public isVerified = true;
    bool public isMainsaleActive = false;

    string private _baseTokenURI = "";
    string private _tokenURISuffix = "";

    mapping(address => uint256) public presaleMap;

    address[] addresses = [
        0xb0C72ADfb17Ab00d4e78915F5DeD36345537b04E,
        0x0af53dB501Bb544f2A95477eA01615DFfe7C3D99,
        0x14B98AaeE41ACFED1D860a310AAcC32a3DDd8e9A,
        0xB7edf3Cbb58ecb74BdE6298294c7AAb339F3cE4a
    ];
    uint256[] splits = [73, 10, 10, 7];

    constructor() GDXERC721("K9", "K9") {}

    //safety first
    fallback() external payable {}

    receive() external payable {}

    function withdraw() external onlyDelegates {
        require(address(this).balance > 0);
        uint256 bal = address(this).balance;
        for (uint256 i; i < addresses.length; i++) {
            require(payable(addresses[i]).send((bal / 100) * splits[i]));
        }
    }

    //view
    function getTokensByOwner(address owner)
        external
        view
        returns (uint256[] memory)
    {
        return walletOfOwner(owner);
    }

    function tokenURI(uint256 tokenId)
        external
        view
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        return
            string(
                abi.encodePacked(
                    _baseTokenURI,
                    tokenId.toString(),
                    _tokenURISuffix
                )
            );
    }

    //payable
    function mint(uint256 quantity, bytes calldata signature) external payable {
        require(quantity <= MAX_ORDER, "Order too big");

        uint256 supply = totalSupply();
        require(supply + quantity <= MAX_SUPPLY, "Mint/order exceeds supply");

        if (isMainsaleActive) {
            require(msg.value >= PRICE * quantity, "Ether sent is not correct");
            require(quantity <= MAX_ORDER, "Order too big");
        } else if (isPresaleActive) {
            require(
                msg.value >= PRESALE_PRICE * quantity,
                "Ether sent is not correct"
            );
            require(
                quantity + presaleMap[msg.sender] <= MAX_PRESALE_AMOUNT,
                "Order too big"
            );

            if (isVerified) verifySignature(quantity.toString(), signature);

            presaleMap[msg.sender] = presaleMap[msg.sender] + quantity;
        } else {
            revert("Sale is not active");
        }

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

    //onlyDelegates
    function mintTo(uint256[] calldata quantity, address[] calldata recipient)
        external
        payable
        onlyDelegates
    {
        require(
            quantity.length == recipient.length,
            "Must provide equal quantities and recipients"
        );

        uint256 totalQuantity;
        uint256 supply = totalSupply();
        for (uint256 i; i < quantity.length; i++) {
            totalQuantity += quantity[i];
        }
        require(
            supply + totalQuantity <= MAX_SUPPLY,
            "Mint/order exceeds supply"
        );

        unchecked {
            for (uint256 i = 0; i < recipient.length; i++) {
                for (uint256 j = 0; j < quantity[i]; j++) {
                    _mint(recipient[i], supply++);
                }
            }
        }
    }

    // In case of emergency
    function setWithdrawalData(
        address[] calldata _addr,
        uint256[] calldata _splits
    ) external onlyDelegates {
        require(
            _addr.length == splits.length,
            "Mismatched number of addresses and splits."
        );
        addresses = _addr;
        splits = _splits;
    }

    function setActive(
        bool isPresaleActive_,
        bool isMainsaleActive_,
        bool isVerified_
    ) external onlyDelegates {
        if (isPresaleActive != isPresaleActive_)
            isPresaleActive = isPresaleActive_;

        if (isMainsaleActive != isMainsaleActive_)
            isMainsaleActive = isMainsaleActive_;

        if (isVerified != isVerified_) isVerified = isVerified_;
    }

    function setBaseURI(string calldata _newBaseURI, string calldata _newSuffix)
        external
        onlyDelegates
    {
        _baseTokenURI = _newBaseURI;
        _tokenURISuffix = _newSuffix;
    }

    function setMax(uint256 maxOrder, uint256 maxSupply)
        external
        onlyDelegates
    {
        require(
            maxSupply >= totalSupply(),
            "Specified supply is lower than current balance"
        );

        if (MAX_ORDER != maxOrder) MAX_ORDER = maxOrder;

        if (MAX_SUPPLY != maxSupply) MAX_SUPPLY = maxSupply;
    }

    function setPrice(uint256 price) external onlyDelegates {
        if (PRICE != price) PRICE = price;
    }

    //internal
    function _mint(address to, uint256 tokenId) internal override {
        _owners.push(to);
        emit Transfer(address(0), to, tokenId);
    }
}

File 2 of 22 : GDXERC721Batch.sol
// SPDX-License-Identifier: BSD-3-Clause

pragma solidity ^0.8.0;

/****************************************
 * @author: squeebo_nft                 *
 * @team:   GoldenXNFT                     *
 ****************************************/

import "./GDXERC721Enumerable.sol";
import "./IERC721Batch.sol";

abstract contract GDXERC721Batch is GDXERC721Enumerable, IERC721Batch {
    function isOwnerOf(address account, uint256[] calldata tokenIds)
        external
        view
        override
        returns (bool)
    {
        for (uint256 i; i < tokenIds.length; ++i) {
            if (_owners[tokenIds[i]] != account) return false;
        }

        return true;
    }

    function transferBatch(
        address from,
        address to,
        uint256[] calldata tokenIds,
        bytes calldata data
    ) external override {
        for (uint256 i; i < tokenIds.length; ++i) {
            safeTransferFrom(from, to, tokenIds[i], data);
        }
    }

    function walletOfOwner(address account)
        public
        view
        override
        returns (uint256[] memory)
    {
        uint256 quantity = balanceOf(account);

        uint256 count;
        uint256[] memory wallet = new uint256[](quantity);
        for (uint256 i; i < _owners.length; ++i) {
            if (account == _owners[i]) {
                wallet[count++] = i;
                if (count == quantity) break;
            }
        }
        return wallet;
    }
}

File 3 of 22 : Signed.sol
// SPDX-License-Identifier: BSD-3-Clause

pragma solidity ^0.8.0;

import "./Delegated.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";

contract Signed is Delegated{
  using Strings for uint256;
  using ECDSA for bytes32;

  string private _secret;
  address private _signer;


  function setSecret( string calldata secret ) external onlyOwner{
    _secret = secret;
  }

  function setSigner( address signer ) external onlyOwner{
    _signer = signer;
  }


  function createHash( string memory data ) internal view returns ( bytes32 ){
    return keccak256( abi.encodePacked( address(this), msg.sender, data, _secret ) );
  }

  function getSigner( bytes32 hash, bytes memory signature ) internal pure returns( address ){
    return hash.toEthSignedMessageHash().recover( signature );
  }

  function isAuthorizedSigner( address extracted ) internal view virtual returns( bool ){
    return extracted == _signer;
  }

  function verifySignature( string memory data, bytes calldata signature ) internal view {
    address extracted = getSigner( createHash( data ), signature );
    require( isAuthorizedSigner( extracted ), "Signature verification failed" );
  }


}

File 4 of 22 : GDXERC721Enumerable.sol
// SPDX-License-Identifier: BSD-3-Clause

pragma solidity ^0.8.0;

import "./GDXERC721.sol";
import "@openzeppelin/contracts/interfaces/IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract GDXERC721Enumerable is GDXERC721, IERC721Enumerable {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, GDXERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view override returns (uint256 tokenId) {
        uint count;
        for( uint i; i < _owners.length; ++i ){
            if( owner == _owners[i] ){
                if( count == index )
                    return i;
                else
                    ++count;
            }
        }

        require(false, "ERC721Enumerable: owner index out of bounds");
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) external view override returns (uint256) {
        require(index < _owners.length, "ERC721: query for nonexistent token");
        return index;
    }
}

File 5 of 22 : IERC721Batch.sol
// SPDX-License-Identifier: BSD-3-Clause

pragma solidity ^0.8.0;

interface IERC721Batch {
  function isOwnerOf( address account, uint[] calldata tokenIds ) external view returns( bool );
  function transferBatch( address from, address to, uint[] calldata tokenIds, bytes calldata data ) external;
  function walletOfOwner( address account ) external view returns( uint[] memory );
}

File 6 of 22 : GDXERC721.sol
// SPDX-License-Identifier: BSD-3-Clause

pragma solidity ^0.8.0;

/****************************************
 * @author: squeebo_nft                 *
 * @team:   GoldenXNFT                     *
 ****************************************
 *   Blimpie-ERC721 provides low-gas    *
 *           mints + transfers          *
 ****************************************/

import "./Delegated.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";
import "@openzeppelin/contracts/interfaces/IERC721.sol";
import "@openzeppelin/contracts/interfaces/IERC721Metadata.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/interfaces/IERC721Receiver.sol";

abstract contract GDXERC721 is
    Context,
    Delegated,
    ERC165,
    IERC721,
    IERC721Metadata
{
    using Address for address;

    string private _name;
    string private _symbol;
    address[] internal _owners;

    mapping(uint256 => address) internal _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;

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

    //public
    function name() external view override returns (string memory) {
        return _name;
    }

    function balanceOf(address owner) public view override returns (uint256) {
        require(
            owner != address(0),
            "ERC721: balance query for the zero address"
        );

        uint256 count;
        for (uint256 i; i < _owners.length; ++i) {
            if (owner == _owners[i]) ++count;
        }
        return count;
    }

    function ownerOf(uint256 tokenId) public view override returns (address) {
        require(_exists(tokenId), "ERC721: query for nonexistent token");
        return _owners[tokenId];
    }

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

    function symbol() external view override returns (string memory) {
        return _symbol;
    }

    function approve(address to, uint256 tokenId) external override {
        address owner = ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

    function getApproved(uint256 tokenId)
        public
        view
        override
        returns (address)
    {
        require(_exists(tokenId), "ERC721: query for nonexistent token");
        return _tokenApprovals[tokenId];
    }

    function isApprovedForAll(address owner, address operator)
        public
        view
        override
        returns (bool)
    {
        return _operatorApprovals[owner][operator];
    }

    function setApprovalForAll(address operator, bool approved)
        external
        override
    {
        require(operator != _msgSender(), "ERC721: approve to caller");
        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external override {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );
        _transfer(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external override {
        safeTransferFrom(from, to, tokenId, "");
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );
        _safeTransfer(from, to, tokenId, _data);
    }

    //internal
    function _approve(address to, uint256 tokenId) internal {
        _tokenApprovals[tokenId] = to;
        emit Approval(ownerOf(tokenId), to, tokenId);
    }

    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try
                IERC721Receiver(to).onERC721Received(
                    _msgSender(),
                    from,
                    tokenId,
                    _data
                )
            returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "ERC721: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < _owners.length && _owners[tokenId] != address(0);
    }

    function _isApprovedOrOwner(address spender, uint256 tokenId)
        internal
        view
        returns (bool)
    {
        require(_exists(tokenId), "ERC721: query for nonexistent token");
        address owner = ownerOf(tokenId);
        return (spender == owner ||
            getApproved(tokenId) == spender ||
            isApprovedForAll(owner, spender));
    }

    function _mint(address to, uint256 tokenId) internal virtual;

    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal {
        require(
            ownerOf(tokenId) == from,
            "ERC721: transfer of token that is not own"
        );
        require(to != address(0), "ERC721: transfer to the zero address");

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);
        _owners[tokenId] = to;

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

File 7 of 22 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

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

File 8 of 22 : Delegated.sol
// SPDX-License-Identifier: BSD-3-Clause

pragma solidity ^0.8.0;

/***********************
* @author: squeebo_nft *
************************/

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

contract Delegated is Ownable {
  mapping(address => bool) internal _delegates;

  constructor(){
    _delegates[owner()] = true;
  }

  modifier onlyDelegates {
    require(_delegates[msg.sender], "Invalid delegate" );
    _;
  }

  //onlyOwner
  function isDelegate( address addr ) external view onlyOwner returns ( bool ){
    return _delegates[addr];
  }

  function setDelegate( address addr, bool isDelegate_ ) external onlyOwner{
    _delegates[addr] = isDelegate_;
  }

  function transferOwnership(address newOwner) public virtual override onlyOwner {
    _delegates[newOwner] = true;
    super.transferOwnership( newOwner );
  }
}

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 10 of 22 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC721.sol)

pragma solidity ^0.8.0;

import "../token/ERC721/IERC721.sol";

File 11 of 22 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../token/ERC721/extensions/IERC721Metadata.sol";

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 14 of 22 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC721Receiver.sol)

pragma solidity ^0.8.0;

import "../token/ERC721/IERC721Receiver.sol";

File 15 of 22 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

File 20 of 22 : 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 21 of 22 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 22 of 22 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"MAX_ORDER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PRESALE_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getTokensByOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isDelegate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMainsaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"isOwnerOf","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isVerified","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"quantity","type":"uint256[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"mintTo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleMap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isPresaleActive_","type":"bool"},{"internalType":"bool","name":"isMainsaleActive_","type":"bool"},{"internalType":"bool","name":"isVerified_","type":"bool"}],"name":"setActive","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":"_newBaseURI","type":"string"},{"internalType":"string","name":"_newSuffix","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"isDelegate_","type":"bool"}],"name":"setDelegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxOrder","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"}],"name":"setMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"secret","type":"string"}],"name":"setSecret","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"signer","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addr","type":"address[]"},{"internalType":"uint256[]","name":"_splits","type":"uint256[]"}],"name":"setWithdrawalData","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":"tokenId","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":"tokenIds","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600860095561115c600a5566d529ae9e860000600b556004600c5566b1a2bc2ec50000600d556000600e60006101000a81548160ff0219169083151502179055506001600e60016101000a81548160ff0219169083151502179055506000600e60026101000a81548160ff02191690831515021790555060405180602001604052806000815250600f9080519060200190620000a292919062000472565b506040518060200160405280600081525060109080519060200190620000ca92919062000472565b50604051806080016040528073b0c72adfb17ab00d4e78915f5ded36345537b04e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001730af53db501bb544f2a95477ea01615dffe7c3d9973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020017314b98aaee41acfed1d860a310aacc32a3ddd8e9a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173b7edf3cbb58ecb74bde6298294c7aab339f3ce4a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152506012906004620001fe92919062000503565b506040518060800160405280604960ff168152602001600a60ff168152602001600a60ff168152602001600760ff1681525060139060046200024292919062000592565b503480156200025057600080fd5b506040518060400160405280600281526020017f4b390000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4b39000000000000000000000000000000000000000000000000000000000000815250620002dd620002d16200037d60201b60201c565b6200038560201b60201c565b6001806000620002f26200044960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555081600290805190602001906200035b92919062000472565b5080600390805190602001906200037492919062000472565b5050506200066d565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620004809062000608565b90600052602060002090601f016020900481019282620004a45760008555620004f0565b82601f10620004bf57805160ff1916838001178555620004f0565b82800160010185558215620004f0579182015b82811115620004ef578251825591602001919060010190620004d2565b5b509050620004ff9190620005e9565b5090565b8280548282559060005260206000209081019282156200057f579160200282015b828111156200057e5782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019062000524565b5b5090506200058e9190620005e9565b5090565b828054828255906000526020600020908101928215620005d6579160200282015b82811115620005d5578251829060ff16905591602001919060010190620005b3565b5b509050620005e59190620005e9565b5090565b5b8082111562000604576000816000905550600101620005ea565b5090565b600060028204905060018216806200062157607f821691505b602082108114156200063857620006376200063e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b615b99806200067d6000396000f3fe60806040526004361061026b5760003560e01c806360d938dc116101445780638da5cb5b116100b6578063b88d4fde1161007a578063b88d4fde1461095a578063c87b56dd14610983578063db7fd408146109c0578063e966d512146109dc578063e985e9c5146109f8578063f2fde38b14610a3557610272565b80638da5cb5b1461088957806391b7f5ed146108b457806395d89b41146108dd578063a22cb46514610908578063b534a5c41461093157610272565b806370a082311161010857806370a082311461078b578063715018a6146107c85780637ed6c926146107df5780637f75c3151461080857806380007e83146108335780638d859f3e1461085e57610272565b806360d938dc146106a657806362dc6e21146106d15780636352211e146106fc5780636790a9de146107395780636c19e7831461076257610272565b80633b91ceef116101dd57806349231c4e116101a157806349231c4e146105865780634a994eef146105af5780634d44660c146105d85780634f6ccce7146106155780634ff855ca1461065257806350c5a00c1461067b57610272565b80633b91ceef146104a35780633ccfd60b146104cc57806340398d67146104e357806342842e0e14610520578063438b63001461054957610272565b806318160ddd1161022f57806318160ddd1461037f57806319d5398e146103aa57806323b872dd146103e75780632c6904bc146104105780632f745c591461043b57806332cb6b0c1461047857610272565b806301ffc9a71461027457806306fdde03146102b157806307779627146102dc578063081812fc14610319578063095ea7b31461035657610272565b3661027257005b005b34801561028057600080fd5b5061029b60048036038101906102969190614309565b610a5e565b6040516102a89190614bc9565b60405180910390f35b3480156102bd57600080fd5b506102c6610ad8565b6040516102d39190614c29565b60405180910390f35b3480156102e857600080fd5b5061030360048036038101906102fe9190613f36565b610b6a565b6040516103109190614bc9565b60405180910390f35b34801561032557600080fd5b50610340600480360381019061033b9190614415565b610c3c565b60405161034d9190614b40565b60405180910390f35b34801561036257600080fd5b5061037d60048036038101906103789190614194565b610cc1565b005b34801561038b57600080fd5b50610394610dd9565b6040516103a19190614f8b565b60405180910390f35b3480156103b657600080fd5b506103d160048036038101906103cc9190613f36565b610de6565b6040516103de9190614f8b565b60405180910390f35b3480156103f357600080fd5b5061040e60048036038101906104099190614036565b610dfe565b005b34801561041c57600080fd5b50610425610e5e565b6040516104329190614f8b565b60405180910390f35b34801561044757600080fd5b50610462600480360381019061045d9190614194565b610e64565b60405161046f9190614f8b565b60405180910390f35b34801561048457600080fd5b5061048d610f89565b60405161049a9190614f8b565b60405180910390f35b3480156104af57600080fd5b506104ca60048036038101906104c59190614496565b610f8f565b005b3480156104d857600080fd5b506104e161108b565b005b3480156104ef57600080fd5b5061050a60048036038101906105059190613f36565b61124d565b6040516105179190614ba7565b60405180910390f35b34801561052c57600080fd5b5061054760048036038101906105429190614036565b61125f565b005b34801561055557600080fd5b50610570600480360381019061056b9190613f36565b61127f565b60405161057d9190614ba7565b60405180910390f35b34801561059257600080fd5b506105ad60048036038101906105a891906141d0565b611427565b005b3480156105bb57600080fd5b506105d660048036038101906105d19190614158565b611527565b005b3480156105e457600080fd5b506105ff60048036038101906105fa9190614100565b6115fe565b60405161060c9190614bc9565b60405180910390f35b34801561062157600080fd5b5061063c60048036038101906106379190614415565b61170b565b6040516106499190614f8b565b60405180910390f35b34801561065e57600080fd5b50610679600480360381019061067491906142ba565b61175c565b005b34801561068757600080fd5b5061069061188c565b60405161069d9190614f8b565b60405180910390f35b3480156106b257600080fd5b506106bb611892565b6040516106c89190614bc9565b60405180910390f35b3480156106dd57600080fd5b506106e66118a5565b6040516106f39190614f8b565b60405180910390f35b34801561070857600080fd5b50610723600480360381019061071e9190614415565b6118ab565b6040516107309190614b40565b60405180910390f35b34801561074557600080fd5b50610760600480360381019061075b91906143a0565b611961565b005b34801561076e57600080fd5b5061078960048036038101906107849190613f36565b611a17565b005b34801561079757600080fd5b506107b260048036038101906107ad9190613f36565b611ad7565b6040516107bf9190614f8b565b60405180910390f35b3480156107d457600080fd5b506107dd611c19565b005b3480156107eb57600080fd5b506108066004803603810190610801919061435b565b611ca1565b005b34801561081457600080fd5b5061081d611d33565b60405161082a9190614bc9565b60405180910390f35b34801561083f57600080fd5b50610848611d46565b6040516108559190614bc9565b60405180910390f35b34801561086a57600080fd5b50610873611d59565b6040516108809190614f8b565b60405180910390f35b34801561089557600080fd5b5061089e611d5f565b6040516108ab9190614b40565b60405180910390f35b3480156108c057600080fd5b506108db60048036038101906108d69190614415565b611d88565b005b3480156108e957600080fd5b506108f2611e28565b6040516108ff9190614c29565b60405180910390f35b34801561091457600080fd5b5061092f600480360381019061092a9190614158565b611eba565b005b34801561093d57600080fd5b5061095860048036038101906109539190613f9b565b61203b565b005b34801561096657600080fd5b50610981600480360381019061097c9190614085565b6120f2565b005b34801561098f57600080fd5b506109aa60048036038101906109a59190614415565b612154565b6040516109b79190614c29565b60405180910390f35b6109da60048036038101906109d5919061443e565b6121d3565b005b6109f660048036038101906109f19190614245565b61253e565b005b348015610a0457600080fd5b50610a1f6004803603810190610a1a9190613f5f565b6127b7565b604051610a2c9190614bc9565b60405180910390f35b348015610a4157600080fd5b50610a5c6004803603810190610a579190613f36565b61284b565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ad15750610ad08261292a565b5b9050919050565b606060028054610ae79061526f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b139061526f565b8015610b605780601f10610b3557610100808354040283529160200191610b60565b820191906000526020600020905b815481529060010190602001808311610b4357829003601f168201915b5050505050905090565b6000610b74612a0c565b73ffffffffffffffffffffffffffffffffffffffff16610b92611d5f565b73ffffffffffffffffffffffffffffffffffffffff1614610be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdf90614e4b565b60405180910390fd5b600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000610c4782612a14565b610c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7d90614e2b565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ccc826118ab565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3490614eab565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d5c612a0c565b73ffffffffffffffffffffffffffffffffffffffff161480610d8b5750610d8a81610d85612a0c565b6127b7565b5b610dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc190614dab565b60405180910390fd5b610dd48383612ac2565b505050565b6000600480549050905090565b60116020528060005260406000206000915090505481565b610e0f610e09612a0c565b82612b7b565b610e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4590614f0b565b60405180910390fd5b610e59838383612c59565b505050565b600c5481565b60008060005b600480549050811015610f3f5760048181548110610eb1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610f2e5783821415610f21578092505050610f83565b81610f2b906152d2565b91505b80610f38906152d2565b9050610e6a565b506000610f81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7890614cab565b60405180910390fd5b505b92915050565b600a5481565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661101b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101290614c6b565b60405180910390fd5b611023610dd9565b811015611065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105c90614d0b565b60405180910390fd5b816009541461107657816009819055505b80600a54146110875780600a819055505b5050565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110e90614c6b565b60405180910390fd5b6000471161112457600080fd5b600047905060005b6012805490508110156112495760128181548110611173577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc601383815481106111f1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015460648561120991906150e3565b6112139190615114565b9081150290604051600060405180830381858888f1935050505061123657600080fd5b8080611241906152d2565b91505061112c565b5050565b60606112588261127f565b9050919050565b61127a838383604051806020016040528060008152506120f2565b505050565b6060600061128c83611ad7565b90506000808267ffffffffffffffff8111156112d1577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156112ff5781602001602082028036833780820191505090505b50905060005b60048054905081101561141b576004818154811061134c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16141561140a57808284806113b7906152d2565b9550815181106113f0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050838314156114095761141b565b5b80611414906152d2565b9050611305565b50809350505050919050565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa90614c6b565b60405180910390fd5b60138054905084849050146114fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f490614f2b565b60405180910390fd5b83836012919061150e929190613bad565b50818160139190611520929190613c4d565b5050505050565b61152f612a0c565b73ffffffffffffffffffffffffffffffffffffffff1661154d611d5f565b73ffffffffffffffffffffffffffffffffffffffff16146115a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159a90614e4b565b60405180910390fd5b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000805b838390508110156116fe578473ffffffffffffffffffffffffffffffffffffffff16600485858481811061165f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201358154811061169d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116ed576000915050611704565b806116f7906152d2565b9050611602565b50600190505b9392505050565b60006004805490508210611754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174b90614e2b565b60405180910390fd5b819050919050565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166117e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117df90614c6b565b60405180910390fd5b821515600e60009054906101000a900460ff1615151461181d5782600e60006101000a81548160ff0219169083151502179055505b811515600e60029054906101000a900460ff161515146118525781600e60026101000a81548160ff0219169083151502179055505b801515600e60019054906101000a900460ff161515146118875780600e60016101000a81548160ff0219169083151502179055505b505050565b60095481565b600e60009054906101000a900460ff1681565b600d5481565b60006118b682612a14565b6118f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ec90614e2b565b60405180910390fd5b6004828154811061192f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166119ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e490614c6b565b60405180910390fd5b8383600f91906119fe929190613c9a565b50818160109190611a10929190613c9a565b5050505050565b611a1f612a0c565b73ffffffffffffffffffffffffffffffffffffffff16611a3d611d5f565b73ffffffffffffffffffffffffffffffffffffffff1614611a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8a90614e4b565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3f90614dcb565b60405180910390fd5b6000805b600480549050811015611c0f5760048181548110611b93577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611bfe5781611bfb906152d2565b91505b80611c08906152d2565b9050611b4c565b5080915050919050565b611c21612a0c565b73ffffffffffffffffffffffffffffffffffffffff16611c3f611d5f565b73ffffffffffffffffffffffffffffffffffffffff1614611c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8c90614e4b565b60405180910390fd5b611c9f6000612e2d565b565b611ca9612a0c565b73ffffffffffffffffffffffffffffffffffffffff16611cc7611d5f565b73ffffffffffffffffffffffffffffffffffffffff1614611d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1490614e4b565b60405180910390fd5b818160079190611d2e929190613c9a565b505050565b600e60029054906101000a900460ff1681565b600e60019054906101000a900460ff1681565b600b5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0b90614c6b565b60405180910390fd5b80600b5414611e255780600b819055505b50565b606060038054611e379061526f565b80601f0160208091040260200160405190810160405280929190818152602001828054611e639061526f565b8015611eb05780601f10611e8557610100808354040283529160200191611eb0565b820191906000526020600020905b815481529060010190602001808311611e9357829003601f168201915b5050505050905090565b611ec2612a0c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2790614d4b565b60405180910390fd5b8060066000611f3d612a0c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611fea612a0c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161202f9190614bc9565b60405180910390a35050565b60005b848490508110156120e9576120d88787878785818110612087577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013586868080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506120f2565b806120e2906152d2565b905061203e565b50505050505050565b6121036120fd612a0c565b83612b7b565b612142576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213990614f0b565b60405180910390fd5b61214e84848484612ef1565b50505050565b606061215f82612a14565b61219e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219590614e8b565b60405180910390fd5b600f6121a983612f4d565b60106040516020016121bd93929190614ae9565b6040516020818303038152906040529050919050565b600954831115612218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220f90614deb565b60405180910390fd5b6000612222610dd9565b9050600a548482612233919061508d565b1115612274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226b90614f6b565b60405180910390fd5b600e60029054906101000a900460ff16156123235783600b546122979190615114565b3410156122d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d090614eeb565b60405180910390fd5b60095484111561231e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231590614deb565b60405180910390fd5b61250f565b600e60009054906101000a900460ff16156124d35783600d546123469190615114565b341015612388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237f90614eeb565b60405180910390fd5b600c54601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054856123d6919061508d565b1115612417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240e90614deb565b60405180910390fd5b600e60019054906101000a900460ff16156124405761243f61243885612f4d565b84846130fa565b5b83601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461248b919061508d565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061250e565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250590614d6b565b60405180910390fd5b5b60005b848110156125375761252a33838060010194506131a2565b8080600101915050612512565b5050505050565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166125ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c190614c6b565b60405180910390fd5b818190508484905014612612576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260990614f4b565b60405180910390fd5b60008061261d610dd9565b905060005b8686905081101561268d57868682818110612666577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013583612678919061508d565b92508080612685906152d2565b915050612622565b50600a54828261269d919061508d565b11156126de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d590614f6b565b60405180910390fd5b60005b848490508110156127ae5760005b878783818110612728577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201358110156127a057612793868684818110612772577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906127879190613f36565b848060010195506131a2565b80806001019150506126ef565b5080806001019150506126e1565b50505050505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612853612a0c565b73ffffffffffffffffffffffffffffffffffffffff16612871611d5f565b73ffffffffffffffffffffffffffffffffffffffff16146128c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128be90614e4b565b60405180910390fd5b60018060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061292781613265565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806129f557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612a055750612a048261335d565b5b9050919050565b600033905090565b600060048054905082108015612abb5750600073ffffffffffffffffffffffffffffffffffffffff1660048381548110612a77577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612b35836118ab565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612b8682612a14565b612bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbc90614e2b565b60405180910390fd5b6000612bd0836118ab565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612c3f57508373ffffffffffffffffffffffffffffffffffffffff16612c2784610c3c565b73ffffffffffffffffffffffffffffffffffffffff16145b80612c505750612c4f81856127b7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612c79826118ab565b73ffffffffffffffffffffffffffffffffffffffff1614612ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc690614e6b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3690614d2b565b60405180910390fd5b612d4a600082612ac2565b8160048281548110612d85577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612efc848484612c59565b612f08848484846133c7565b612f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3e90614ccb565b60405180910390fd5b50505050565b60606000821415612f95576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506130f5565b600082905060005b60008214612fc7578080612fb0906152d2565b915050600a82612fc091906150e3565b9150612f9d565b60008167ffffffffffffffff811115613009577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561303b5781602001600182028036833780820191505090505b5090505b600085146130ee57600182613054919061516e565b9150600a856130639190615349565b603061306f919061508d565b60f81b8183815181106130ab577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130e791906150e3565b945061303f565b8093505050505b919050565b60006131526131088561355e565b84848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050613595565b905061315d816135ba565b61319c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319390614ecb565b60405180910390fd5b50505050565b6004829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b61326d612a0c565b73ffffffffffffffffffffffffffffffffffffffff1661328b611d5f565b73ffffffffffffffffffffffffffffffffffffffff16146132e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132d890614e4b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613351576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334890614ceb565b60405180910390fd5b61335a81612e2d565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60006133e88473ffffffffffffffffffffffffffffffffffffffff16613614565b15613551578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613411612a0c565b8786866040518563ffffffff1660e01b81526004016134339493929190614b5b565b602060405180830381600087803b15801561344d57600080fd5b505af192505050801561347e57506040513d601f19601f8201168201806040525081019061347b9190614332565b60015b613501573d80600081146134ae576040519150601f19603f3d011682016040523d82523d6000602084013e6134b3565b606091505b506000815114156134f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134f090614ccb565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613556565b600190505b949350505050565b600030338360076040516020016135789493929190614aa3565b604051602081830303815290604052805190602001209050919050565b60006135b2826135a485613627565b61365790919063ffffffff16565b905092915050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16149050919050565b600080823b905060008111915050919050565b60008160405160200161363a9190614b1a565b604051602081830303815290604052805190602001209050919050565b6000806000613666858561367e565b9150915061367381613701565b819250505092915050565b6000806041835114156136c05760008060006020860151925060408601519150606086015160001a90506136b487828585613a52565b945094505050506136fa565b6040835114156136f15760008060208501519150604085015190506136e6868383613b5f565b9350935050506136fa565b60006002915091505b9250929050565b6000600481111561373b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613774577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561377f57613a4f565b600160048111156137b9577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156137f2577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613833576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161382a90614c4b565b60405180910390fd5b6002600481111561386d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156138a6577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156138e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138de90614c8b565b60405180910390fd5b60036004811115613921577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b81600481111561395a577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561399b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161399290614d8b565b60405180910390fd5b6004808111156139d4577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613a0d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a4590614e0b565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115613a8d576000600391509150613b56565b601b8560ff1614158015613aa55750601c8560ff1614155b15613ab7576000600491509150613b56565b600060018787878760405160008152602001604052604051613adc9493929190614be4565b6020604051602081039080840390855afa158015613afe573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613b4d57600060019250925050613b56565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050613b9f87828885613a52565b935093505050935093915050565b828054828255906000526020600020908101928215613c3c579160200282015b82811115613c3b57823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613bcd565b5b509050613c499190613d20565b5090565b828054828255906000526020600020908101928215613c89579160200282015b82811115613c88578235825591602001919060010190613c6d565b5b509050613c969190613d20565b5090565b828054613ca69061526f565b90600052602060002090601f016020900481019282613cc85760008555613d0f565b82601f10613ce157803560ff1916838001178555613d0f565b82800160010185558215613d0f579182015b82811115613d0e578235825591602001919060010190613cf3565b5b509050613d1c9190613d20565b5090565b5b80821115613d39576000816000905550600101613d21565b5090565b6000613d50613d4b84614fcb565b614fa6565b905082815260208101848484011115613d6857600080fd5b613d7384828561522d565b509392505050565b600081359050613d8a81615b07565b92915050565b60008083601f840112613da257600080fd5b8235905067ffffffffffffffff811115613dbb57600080fd5b602083019150836020820283011115613dd357600080fd5b9250929050565b60008083601f840112613dec57600080fd5b8235905067ffffffffffffffff811115613e0557600080fd5b602083019150836020820283011115613e1d57600080fd5b9250929050565b600081359050613e3381615b1e565b92915050565b600081359050613e4881615b35565b92915050565b600081519050613e5d81615b35565b92915050565b60008083601f840112613e7557600080fd5b8235905067ffffffffffffffff811115613e8e57600080fd5b602083019150836001820283011115613ea657600080fd5b9250929050565b600082601f830112613ebe57600080fd5b8135613ece848260208601613d3d565b91505092915050565b60008083601f840112613ee957600080fd5b8235905067ffffffffffffffff811115613f0257600080fd5b602083019150836001820283011115613f1a57600080fd5b9250929050565b600081359050613f3081615b4c565b92915050565b600060208284031215613f4857600080fd5b6000613f5684828501613d7b565b91505092915050565b60008060408385031215613f7257600080fd5b6000613f8085828601613d7b565b9250506020613f9185828601613d7b565b9150509250929050565b60008060008060008060808789031215613fb457600080fd5b6000613fc289828a01613d7b565b9650506020613fd389828a01613d7b565b955050604087013567ffffffffffffffff811115613ff057600080fd5b613ffc89828a01613dda565b9450945050606087013567ffffffffffffffff81111561401b57600080fd5b61402789828a01613e63565b92509250509295509295509295565b60008060006060848603121561404b57600080fd5b600061405986828701613d7b565b935050602061406a86828701613d7b565b925050604061407b86828701613f21565b9150509250925092565b6000806000806080858703121561409b57600080fd5b60006140a987828801613d7b565b94505060206140ba87828801613d7b565b93505060406140cb87828801613f21565b925050606085013567ffffffffffffffff8111156140e857600080fd5b6140f487828801613ead565b91505092959194509250565b60008060006040848603121561411557600080fd5b600061412386828701613d7b565b935050602084013567ffffffffffffffff81111561414057600080fd5b61414c86828701613dda565b92509250509250925092565b6000806040838503121561416b57600080fd5b600061417985828601613d7b565b925050602061418a85828601613e24565b9150509250929050565b600080604083850312156141a757600080fd5b60006141b585828601613d7b565b92505060206141c685828601613f21565b9150509250929050565b600080600080604085870312156141e657600080fd5b600085013567ffffffffffffffff81111561420057600080fd5b61420c87828801613d90565b9450945050602085013567ffffffffffffffff81111561422b57600080fd5b61423787828801613dda565b925092505092959194509250565b6000806000806040858703121561425b57600080fd5b600085013567ffffffffffffffff81111561427557600080fd5b61428187828801613dda565b9450945050602085013567ffffffffffffffff8111156142a057600080fd5b6142ac87828801613d90565b925092505092959194509250565b6000806000606084860312156142cf57600080fd5b60006142dd86828701613e24565b93505060206142ee86828701613e24565b92505060406142ff86828701613e24565b9150509250925092565b60006020828403121561431b57600080fd5b600061432984828501613e39565b91505092915050565b60006020828403121561434457600080fd5b600061435284828501613e4e565b91505092915050565b6000806020838503121561436e57600080fd5b600083013567ffffffffffffffff81111561438857600080fd5b61439485828601613ed7565b92509250509250929050565b600080600080604085870312156143b657600080fd5b600085013567ffffffffffffffff8111156143d057600080fd5b6143dc87828801613ed7565b9450945050602085013567ffffffffffffffff8111156143fb57600080fd5b61440787828801613ed7565b925092505092959194509250565b60006020828403121561442757600080fd5b600061443584828501613f21565b91505092915050565b60008060006040848603121561445357600080fd5b600061446186828701613f21565b935050602084013567ffffffffffffffff81111561447e57600080fd5b61448a86828701613e63565b92509250509250925092565b600080604083850312156144a957600080fd5b60006144b785828601613f21565b92505060206144c885828601613f21565b9150509250929050565b60006144de8383614a76565b60208301905092915050565b6144f3816151a2565b82525050565b61450a614505826151a2565b61531b565b82525050565b600061451b82615021565b614525818561504f565b935061453083614ffc565b8060005b8381101561456157815161454888826144d2565b975061455383615042565b925050600181019050614534565b5085935050505092915050565b614577816151b4565b82525050565b614586816151c0565b82525050565b61459d614598826151c0565b61532d565b82525050565b60006145ae8261502c565b6145b88185615060565b93506145c881856020860161523c565b6145d181615436565b840191505092915050565b60006145e782615037565b6145f18185615071565b935061460181856020860161523c565b61460a81615436565b840191505092915050565b600061462082615037565b61462a8185615082565b935061463a81856020860161523c565b80840191505092915050565b600081546146538161526f565b61465d8186615082565b945060018216600081146146785760018114614689576146bc565b60ff198316865281860193506146bc565b6146928561500c565b60005b838110156146b457815481890152600182019150602081019050614695565b838801955050505b50505092915050565b60006146d2601883615071565b91506146dd82615454565b602082019050919050565b60006146f5601083615071565b91506147008261547d565b602082019050919050565b6000614718601f83615071565b9150614723826154a6565b602082019050919050565b600061473b601c83615082565b9150614746826154cf565b601c82019050919050565b600061475e602b83615071565b9150614769826154f8565b604082019050919050565b6000614781603283615071565b915061478c82615547565b604082019050919050565b60006147a4602683615071565b91506147af82615596565b604082019050919050565b60006147c7602e83615071565b91506147d2826155e5565b604082019050919050565b60006147ea602483615071565b91506147f582615634565b604082019050919050565b600061480d601983615071565b915061481882615683565b602082019050919050565b6000614830601283615071565b915061483b826156ac565b602082019050919050565b6000614853602283615071565b915061485e826156d5565b604082019050919050565b6000614876603883615071565b915061488182615724565b604082019050919050565b6000614899602a83615071565b91506148a482615773565b604082019050919050565b60006148bc600d83615071565b91506148c7826157c2565b602082019050919050565b60006148df602283615071565b91506148ea826157eb565b604082019050919050565b6000614902602383615071565b915061490d8261583a565b604082019050919050565b6000614925602083615071565b915061493082615889565b602082019050919050565b6000614948602983615071565b9150614953826158b2565b604082019050919050565b600061496b602f83615071565b915061497682615901565b604082019050919050565b600061498e602183615071565b915061499982615950565b604082019050919050565b60006149b1601d83615071565b91506149bc8261599f565b602082019050919050565b60006149d4601983615071565b91506149df826159c8565b602082019050919050565b60006149f7603183615071565b9150614a02826159f1565b604082019050919050565b6000614a1a602a83615071565b9150614a2582615a40565b604082019050919050565b6000614a3d602c83615071565b9150614a4882615a8f565b604082019050919050565b6000614a60601983615071565b9150614a6b82615ade565b602082019050919050565b614a7f81615216565b82525050565b614a8e81615216565b82525050565b614a9d81615220565b82525050565b6000614aaf82876144f9565b601482019150614abf82866144f9565b601482019150614acf8285614615565b9150614adb8284614646565b915081905095945050505050565b6000614af58286614646565b9150614b018285614615565b9150614b0d8284614646565b9150819050949350505050565b6000614b258261472e565b9150614b31828461458c565b60208201915081905092915050565b6000602082019050614b5560008301846144ea565b92915050565b6000608082019050614b7060008301876144ea565b614b7d60208301866144ea565b614b8a6040830185614a85565b8181036060830152614b9c81846145a3565b905095945050505050565b60006020820190508181036000830152614bc18184614510565b905092915050565b6000602082019050614bde600083018461456e565b92915050565b6000608082019050614bf9600083018761457d565b614c066020830186614a94565b614c13604083018561457d565b614c20606083018461457d565b95945050505050565b60006020820190508181036000830152614c4381846145dc565b905092915050565b60006020820190508181036000830152614c64816146c5565b9050919050565b60006020820190508181036000830152614c84816146e8565b9050919050565b60006020820190508181036000830152614ca48161470b565b9050919050565b60006020820190508181036000830152614cc481614751565b9050919050565b60006020820190508181036000830152614ce481614774565b9050919050565b60006020820190508181036000830152614d0481614797565b9050919050565b60006020820190508181036000830152614d24816147ba565b9050919050565b60006020820190508181036000830152614d44816147dd565b9050919050565b60006020820190508181036000830152614d6481614800565b9050919050565b60006020820190508181036000830152614d8481614823565b9050919050565b60006020820190508181036000830152614da481614846565b9050919050565b60006020820190508181036000830152614dc481614869565b9050919050565b60006020820190508181036000830152614de48161488c565b9050919050565b60006020820190508181036000830152614e04816148af565b9050919050565b60006020820190508181036000830152614e24816148d2565b9050919050565b60006020820190508181036000830152614e44816148f5565b9050919050565b60006020820190508181036000830152614e6481614918565b9050919050565b60006020820190508181036000830152614e848161493b565b9050919050565b60006020820190508181036000830152614ea48161495e565b9050919050565b60006020820190508181036000830152614ec481614981565b9050919050565b60006020820190508181036000830152614ee4816149a4565b9050919050565b60006020820190508181036000830152614f04816149c7565b9050919050565b60006020820190508181036000830152614f24816149ea565b9050919050565b60006020820190508181036000830152614f4481614a0d565b9050919050565b60006020820190508181036000830152614f6481614a30565b9050919050565b60006020820190508181036000830152614f8481614a53565b9050919050565b6000602082019050614fa06000830184614a85565b92915050565b6000614fb0614fc1565b9050614fbc82826152a1565b919050565b6000604051905090565b600067ffffffffffffffff821115614fe657614fe5615407565b5b614fef82615436565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061509882615216565b91506150a383615216565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156150d8576150d761537a565b5b828201905092915050565b60006150ee82615216565b91506150f983615216565b925082615109576151086153a9565b5b828204905092915050565b600061511f82615216565b915061512a83615216565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156151635761516261537a565b5b828202905092915050565b600061517982615216565b915061518483615216565b9250828210156151975761519661537a565b5b828203905092915050565b60006151ad826151f6565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561525a57808201518184015260208101905061523f565b83811115615269576000848401525b50505050565b6000600282049050600182168061528757607f821691505b6020821081141561529b5761529a6153d8565b5b50919050565b6152aa82615436565b810181811067ffffffffffffffff821117156152c9576152c8615407565b5b80604052505050565b60006152dd82615216565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156153105761530f61537a565b5b600182019050919050565b600061532682615337565b9050919050565b6000819050919050565b600061534282615447565b9050919050565b600061535482615216565b915061535f83615216565b92508261536f5761536e6153a9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f496e76616c69642064656c656761746500000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f53706563696669656420737570706c79206973206c6f776572207468616e206360008201527f757272656e742062616c616e6365000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4f7264657220746f6f2062696700000000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20717565727920666f72206e6f6e6578697374656e7420746f60008201527f6b656e0000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f5369676e617475726520766572696669636174696f6e206661696c6564000000600082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d69736d617463686564206e756d626572206f6620616464726573736573206160008201527f6e642073706c6974732e00000000000000000000000000000000000000000000602082015250565b7f4d7573742070726f7669646520657175616c207175616e74697469657320616e60008201527f6420726563697069656e74730000000000000000000000000000000000000000602082015250565b7f4d696e742f6f72646572206578636565647320737570706c7900000000000000600082015250565b615b10816151a2565b8114615b1b57600080fd5b50565b615b27816151b4565b8114615b3257600080fd5b50565b615b3e816151ca565b8114615b4957600080fd5b50565b615b5581615216565b8114615b6057600080fd5b5056fea2646970667358221220205c64ea703276ed1c7090c1a33303eda09a10e8b84d7f68c108e2db1a03af2264736f6c63430008040033

Deployed Bytecode

0x60806040526004361061026b5760003560e01c806360d938dc116101445780638da5cb5b116100b6578063b88d4fde1161007a578063b88d4fde1461095a578063c87b56dd14610983578063db7fd408146109c0578063e966d512146109dc578063e985e9c5146109f8578063f2fde38b14610a3557610272565b80638da5cb5b1461088957806391b7f5ed146108b457806395d89b41146108dd578063a22cb46514610908578063b534a5c41461093157610272565b806370a082311161010857806370a082311461078b578063715018a6146107c85780637ed6c926146107df5780637f75c3151461080857806380007e83146108335780638d859f3e1461085e57610272565b806360d938dc146106a657806362dc6e21146106d15780636352211e146106fc5780636790a9de146107395780636c19e7831461076257610272565b80633b91ceef116101dd57806349231c4e116101a157806349231c4e146105865780634a994eef146105af5780634d44660c146105d85780634f6ccce7146106155780634ff855ca1461065257806350c5a00c1461067b57610272565b80633b91ceef146104a35780633ccfd60b146104cc57806340398d67146104e357806342842e0e14610520578063438b63001461054957610272565b806318160ddd1161022f57806318160ddd1461037f57806319d5398e146103aa57806323b872dd146103e75780632c6904bc146104105780632f745c591461043b57806332cb6b0c1461047857610272565b806301ffc9a71461027457806306fdde03146102b157806307779627146102dc578063081812fc14610319578063095ea7b31461035657610272565b3661027257005b005b34801561028057600080fd5b5061029b60048036038101906102969190614309565b610a5e565b6040516102a89190614bc9565b60405180910390f35b3480156102bd57600080fd5b506102c6610ad8565b6040516102d39190614c29565b60405180910390f35b3480156102e857600080fd5b5061030360048036038101906102fe9190613f36565b610b6a565b6040516103109190614bc9565b60405180910390f35b34801561032557600080fd5b50610340600480360381019061033b9190614415565b610c3c565b60405161034d9190614b40565b60405180910390f35b34801561036257600080fd5b5061037d60048036038101906103789190614194565b610cc1565b005b34801561038b57600080fd5b50610394610dd9565b6040516103a19190614f8b565b60405180910390f35b3480156103b657600080fd5b506103d160048036038101906103cc9190613f36565b610de6565b6040516103de9190614f8b565b60405180910390f35b3480156103f357600080fd5b5061040e60048036038101906104099190614036565b610dfe565b005b34801561041c57600080fd5b50610425610e5e565b6040516104329190614f8b565b60405180910390f35b34801561044757600080fd5b50610462600480360381019061045d9190614194565b610e64565b60405161046f9190614f8b565b60405180910390f35b34801561048457600080fd5b5061048d610f89565b60405161049a9190614f8b565b60405180910390f35b3480156104af57600080fd5b506104ca60048036038101906104c59190614496565b610f8f565b005b3480156104d857600080fd5b506104e161108b565b005b3480156104ef57600080fd5b5061050a60048036038101906105059190613f36565b61124d565b6040516105179190614ba7565b60405180910390f35b34801561052c57600080fd5b5061054760048036038101906105429190614036565b61125f565b005b34801561055557600080fd5b50610570600480360381019061056b9190613f36565b61127f565b60405161057d9190614ba7565b60405180910390f35b34801561059257600080fd5b506105ad60048036038101906105a891906141d0565b611427565b005b3480156105bb57600080fd5b506105d660048036038101906105d19190614158565b611527565b005b3480156105e457600080fd5b506105ff60048036038101906105fa9190614100565b6115fe565b60405161060c9190614bc9565b60405180910390f35b34801561062157600080fd5b5061063c60048036038101906106379190614415565b61170b565b6040516106499190614f8b565b60405180910390f35b34801561065e57600080fd5b50610679600480360381019061067491906142ba565b61175c565b005b34801561068757600080fd5b5061069061188c565b60405161069d9190614f8b565b60405180910390f35b3480156106b257600080fd5b506106bb611892565b6040516106c89190614bc9565b60405180910390f35b3480156106dd57600080fd5b506106e66118a5565b6040516106f39190614f8b565b60405180910390f35b34801561070857600080fd5b50610723600480360381019061071e9190614415565b6118ab565b6040516107309190614b40565b60405180910390f35b34801561074557600080fd5b50610760600480360381019061075b91906143a0565b611961565b005b34801561076e57600080fd5b5061078960048036038101906107849190613f36565b611a17565b005b34801561079757600080fd5b506107b260048036038101906107ad9190613f36565b611ad7565b6040516107bf9190614f8b565b60405180910390f35b3480156107d457600080fd5b506107dd611c19565b005b3480156107eb57600080fd5b506108066004803603810190610801919061435b565b611ca1565b005b34801561081457600080fd5b5061081d611d33565b60405161082a9190614bc9565b60405180910390f35b34801561083f57600080fd5b50610848611d46565b6040516108559190614bc9565b60405180910390f35b34801561086a57600080fd5b50610873611d59565b6040516108809190614f8b565b60405180910390f35b34801561089557600080fd5b5061089e611d5f565b6040516108ab9190614b40565b60405180910390f35b3480156108c057600080fd5b506108db60048036038101906108d69190614415565b611d88565b005b3480156108e957600080fd5b506108f2611e28565b6040516108ff9190614c29565b60405180910390f35b34801561091457600080fd5b5061092f600480360381019061092a9190614158565b611eba565b005b34801561093d57600080fd5b5061095860048036038101906109539190613f9b565b61203b565b005b34801561096657600080fd5b50610981600480360381019061097c9190614085565b6120f2565b005b34801561098f57600080fd5b506109aa60048036038101906109a59190614415565b612154565b6040516109b79190614c29565b60405180910390f35b6109da60048036038101906109d5919061443e565b6121d3565b005b6109f660048036038101906109f19190614245565b61253e565b005b348015610a0457600080fd5b50610a1f6004803603810190610a1a9190613f5f565b6127b7565b604051610a2c9190614bc9565b60405180910390f35b348015610a4157600080fd5b50610a5c6004803603810190610a579190613f36565b61284b565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ad15750610ad08261292a565b5b9050919050565b606060028054610ae79061526f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b139061526f565b8015610b605780601f10610b3557610100808354040283529160200191610b60565b820191906000526020600020905b815481529060010190602001808311610b4357829003601f168201915b5050505050905090565b6000610b74612a0c565b73ffffffffffffffffffffffffffffffffffffffff16610b92611d5f565b73ffffffffffffffffffffffffffffffffffffffff1614610be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdf90614e4b565b60405180910390fd5b600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000610c4782612a14565b610c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7d90614e2b565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ccc826118ab565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3490614eab565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d5c612a0c565b73ffffffffffffffffffffffffffffffffffffffff161480610d8b5750610d8a81610d85612a0c565b6127b7565b5b610dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc190614dab565b60405180910390fd5b610dd48383612ac2565b505050565b6000600480549050905090565b60116020528060005260406000206000915090505481565b610e0f610e09612a0c565b82612b7b565b610e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4590614f0b565b60405180910390fd5b610e59838383612c59565b505050565b600c5481565b60008060005b600480549050811015610f3f5760048181548110610eb1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610f2e5783821415610f21578092505050610f83565b81610f2b906152d2565b91505b80610f38906152d2565b9050610e6a565b506000610f81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7890614cab565b60405180910390fd5b505b92915050565b600a5481565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661101b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101290614c6b565b60405180910390fd5b611023610dd9565b811015611065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105c90614d0b565b60405180910390fd5b816009541461107657816009819055505b80600a54146110875780600a819055505b5050565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110e90614c6b565b60405180910390fd5b6000471161112457600080fd5b600047905060005b6012805490508110156112495760128181548110611173577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc601383815481106111f1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015460648561120991906150e3565b6112139190615114565b9081150290604051600060405180830381858888f1935050505061123657600080fd5b8080611241906152d2565b91505061112c565b5050565b60606112588261127f565b9050919050565b61127a838383604051806020016040528060008152506120f2565b505050565b6060600061128c83611ad7565b90506000808267ffffffffffffffff8111156112d1577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156112ff5781602001602082028036833780820191505090505b50905060005b60048054905081101561141b576004818154811061134c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16141561140a57808284806113b7906152d2565b9550815181106113f0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050838314156114095761141b565b5b80611414906152d2565b9050611305565b50809350505050919050565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa90614c6b565b60405180910390fd5b60138054905084849050146114fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f490614f2b565b60405180910390fd5b83836012919061150e929190613bad565b50818160139190611520929190613c4d565b5050505050565b61152f612a0c565b73ffffffffffffffffffffffffffffffffffffffff1661154d611d5f565b73ffffffffffffffffffffffffffffffffffffffff16146115a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159a90614e4b565b60405180910390fd5b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000805b838390508110156116fe578473ffffffffffffffffffffffffffffffffffffffff16600485858481811061165f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201358154811061169d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116ed576000915050611704565b806116f7906152d2565b9050611602565b50600190505b9392505050565b60006004805490508210611754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174b90614e2b565b60405180910390fd5b819050919050565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166117e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117df90614c6b565b60405180910390fd5b821515600e60009054906101000a900460ff1615151461181d5782600e60006101000a81548160ff0219169083151502179055505b811515600e60029054906101000a900460ff161515146118525781600e60026101000a81548160ff0219169083151502179055505b801515600e60019054906101000a900460ff161515146118875780600e60016101000a81548160ff0219169083151502179055505b505050565b60095481565b600e60009054906101000a900460ff1681565b600d5481565b60006118b682612a14565b6118f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ec90614e2b565b60405180910390fd5b6004828154811061192f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166119ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e490614c6b565b60405180910390fd5b8383600f91906119fe929190613c9a565b50818160109190611a10929190613c9a565b5050505050565b611a1f612a0c565b73ffffffffffffffffffffffffffffffffffffffff16611a3d611d5f565b73ffffffffffffffffffffffffffffffffffffffff1614611a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8a90614e4b565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3f90614dcb565b60405180910390fd5b6000805b600480549050811015611c0f5760048181548110611b93577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611bfe5781611bfb906152d2565b91505b80611c08906152d2565b9050611b4c565b5080915050919050565b611c21612a0c565b73ffffffffffffffffffffffffffffffffffffffff16611c3f611d5f565b73ffffffffffffffffffffffffffffffffffffffff1614611c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8c90614e4b565b60405180910390fd5b611c9f6000612e2d565b565b611ca9612a0c565b73ffffffffffffffffffffffffffffffffffffffff16611cc7611d5f565b73ffffffffffffffffffffffffffffffffffffffff1614611d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1490614e4b565b60405180910390fd5b818160079190611d2e929190613c9a565b505050565b600e60029054906101000a900460ff1681565b600e60019054906101000a900460ff1681565b600b5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0b90614c6b565b60405180910390fd5b80600b5414611e255780600b819055505b50565b606060038054611e379061526f565b80601f0160208091040260200160405190810160405280929190818152602001828054611e639061526f565b8015611eb05780601f10611e8557610100808354040283529160200191611eb0565b820191906000526020600020905b815481529060010190602001808311611e9357829003601f168201915b5050505050905090565b611ec2612a0c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2790614d4b565b60405180910390fd5b8060066000611f3d612a0c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611fea612a0c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161202f9190614bc9565b60405180910390a35050565b60005b848490508110156120e9576120d88787878785818110612087577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013586868080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506120f2565b806120e2906152d2565b905061203e565b50505050505050565b6121036120fd612a0c565b83612b7b565b612142576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213990614f0b565b60405180910390fd5b61214e84848484612ef1565b50505050565b606061215f82612a14565b61219e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219590614e8b565b60405180910390fd5b600f6121a983612f4d565b60106040516020016121bd93929190614ae9565b6040516020818303038152906040529050919050565b600954831115612218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220f90614deb565b60405180910390fd5b6000612222610dd9565b9050600a548482612233919061508d565b1115612274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226b90614f6b565b60405180910390fd5b600e60029054906101000a900460ff16156123235783600b546122979190615114565b3410156122d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d090614eeb565b60405180910390fd5b60095484111561231e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231590614deb565b60405180910390fd5b61250f565b600e60009054906101000a900460ff16156124d35783600d546123469190615114565b341015612388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237f90614eeb565b60405180910390fd5b600c54601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054856123d6919061508d565b1115612417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240e90614deb565b60405180910390fd5b600e60019054906101000a900460ff16156124405761243f61243885612f4d565b84846130fa565b5b83601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461248b919061508d565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061250e565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250590614d6b565b60405180910390fd5b5b60005b848110156125375761252a33838060010194506131a2565b8080600101915050612512565b5050505050565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166125ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c190614c6b565b60405180910390fd5b818190508484905014612612576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260990614f4b565b60405180910390fd5b60008061261d610dd9565b905060005b8686905081101561268d57868682818110612666577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013583612678919061508d565b92508080612685906152d2565b915050612622565b50600a54828261269d919061508d565b11156126de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d590614f6b565b60405180910390fd5b60005b848490508110156127ae5760005b878783818110612728577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201358110156127a057612793868684818110612772577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906127879190613f36565b848060010195506131a2565b80806001019150506126ef565b5080806001019150506126e1565b50505050505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612853612a0c565b73ffffffffffffffffffffffffffffffffffffffff16612871611d5f565b73ffffffffffffffffffffffffffffffffffffffff16146128c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128be90614e4b565b60405180910390fd5b60018060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061292781613265565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806129f557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612a055750612a048261335d565b5b9050919050565b600033905090565b600060048054905082108015612abb5750600073ffffffffffffffffffffffffffffffffffffffff1660048381548110612a77577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612b35836118ab565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612b8682612a14565b612bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbc90614e2b565b60405180910390fd5b6000612bd0836118ab565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612c3f57508373ffffffffffffffffffffffffffffffffffffffff16612c2784610c3c565b73ffffffffffffffffffffffffffffffffffffffff16145b80612c505750612c4f81856127b7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612c79826118ab565b73ffffffffffffffffffffffffffffffffffffffff1614612ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc690614e6b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3690614d2b565b60405180910390fd5b612d4a600082612ac2565b8160048281548110612d85577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612efc848484612c59565b612f08848484846133c7565b612f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3e90614ccb565b60405180910390fd5b50505050565b60606000821415612f95576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506130f5565b600082905060005b60008214612fc7578080612fb0906152d2565b915050600a82612fc091906150e3565b9150612f9d565b60008167ffffffffffffffff811115613009577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561303b5781602001600182028036833780820191505090505b5090505b600085146130ee57600182613054919061516e565b9150600a856130639190615349565b603061306f919061508d565b60f81b8183815181106130ab577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130e791906150e3565b945061303f565b8093505050505b919050565b60006131526131088561355e565b84848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050613595565b905061315d816135ba565b61319c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319390614ecb565b60405180910390fd5b50505050565b6004829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b61326d612a0c565b73ffffffffffffffffffffffffffffffffffffffff1661328b611d5f565b73ffffffffffffffffffffffffffffffffffffffff16146132e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132d890614e4b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613351576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334890614ceb565b60405180910390fd5b61335a81612e2d565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60006133e88473ffffffffffffffffffffffffffffffffffffffff16613614565b15613551578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613411612a0c565b8786866040518563ffffffff1660e01b81526004016134339493929190614b5b565b602060405180830381600087803b15801561344d57600080fd5b505af192505050801561347e57506040513d601f19601f8201168201806040525081019061347b9190614332565b60015b613501573d80600081146134ae576040519150601f19603f3d011682016040523d82523d6000602084013e6134b3565b606091505b506000815114156134f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134f090614ccb565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613556565b600190505b949350505050565b600030338360076040516020016135789493929190614aa3565b604051602081830303815290604052805190602001209050919050565b60006135b2826135a485613627565b61365790919063ffffffff16565b905092915050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16149050919050565b600080823b905060008111915050919050565b60008160405160200161363a9190614b1a565b604051602081830303815290604052805190602001209050919050565b6000806000613666858561367e565b9150915061367381613701565b819250505092915050565b6000806041835114156136c05760008060006020860151925060408601519150606086015160001a90506136b487828585613a52565b945094505050506136fa565b6040835114156136f15760008060208501519150604085015190506136e6868383613b5f565b9350935050506136fa565b60006002915091505b9250929050565b6000600481111561373b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613774577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561377f57613a4f565b600160048111156137b9577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156137f2577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613833576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161382a90614c4b565b60405180910390fd5b6002600481111561386d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156138a6577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156138e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138de90614c8b565b60405180910390fd5b60036004811115613921577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b81600481111561395a577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561399b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161399290614d8b565b60405180910390fd5b6004808111156139d4577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613a0d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a4590614e0b565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115613a8d576000600391509150613b56565b601b8560ff1614158015613aa55750601c8560ff1614155b15613ab7576000600491509150613b56565b600060018787878760405160008152602001604052604051613adc9493929190614be4565b6020604051602081039080840390855afa158015613afe573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613b4d57600060019250925050613b56565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050613b9f87828885613a52565b935093505050935093915050565b828054828255906000526020600020908101928215613c3c579160200282015b82811115613c3b57823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613bcd565b5b509050613c499190613d20565b5090565b828054828255906000526020600020908101928215613c89579160200282015b82811115613c88578235825591602001919060010190613c6d565b5b509050613c969190613d20565b5090565b828054613ca69061526f565b90600052602060002090601f016020900481019282613cc85760008555613d0f565b82601f10613ce157803560ff1916838001178555613d0f565b82800160010185558215613d0f579182015b82811115613d0e578235825591602001919060010190613cf3565b5b509050613d1c9190613d20565b5090565b5b80821115613d39576000816000905550600101613d21565b5090565b6000613d50613d4b84614fcb565b614fa6565b905082815260208101848484011115613d6857600080fd5b613d7384828561522d565b509392505050565b600081359050613d8a81615b07565b92915050565b60008083601f840112613da257600080fd5b8235905067ffffffffffffffff811115613dbb57600080fd5b602083019150836020820283011115613dd357600080fd5b9250929050565b60008083601f840112613dec57600080fd5b8235905067ffffffffffffffff811115613e0557600080fd5b602083019150836020820283011115613e1d57600080fd5b9250929050565b600081359050613e3381615b1e565b92915050565b600081359050613e4881615b35565b92915050565b600081519050613e5d81615b35565b92915050565b60008083601f840112613e7557600080fd5b8235905067ffffffffffffffff811115613e8e57600080fd5b602083019150836001820283011115613ea657600080fd5b9250929050565b600082601f830112613ebe57600080fd5b8135613ece848260208601613d3d565b91505092915050565b60008083601f840112613ee957600080fd5b8235905067ffffffffffffffff811115613f0257600080fd5b602083019150836001820283011115613f1a57600080fd5b9250929050565b600081359050613f3081615b4c565b92915050565b600060208284031215613f4857600080fd5b6000613f5684828501613d7b565b91505092915050565b60008060408385031215613f7257600080fd5b6000613f8085828601613d7b565b9250506020613f9185828601613d7b565b9150509250929050565b60008060008060008060808789031215613fb457600080fd5b6000613fc289828a01613d7b565b9650506020613fd389828a01613d7b565b955050604087013567ffffffffffffffff811115613ff057600080fd5b613ffc89828a01613dda565b9450945050606087013567ffffffffffffffff81111561401b57600080fd5b61402789828a01613e63565b92509250509295509295509295565b60008060006060848603121561404b57600080fd5b600061405986828701613d7b565b935050602061406a86828701613d7b565b925050604061407b86828701613f21565b9150509250925092565b6000806000806080858703121561409b57600080fd5b60006140a987828801613d7b565b94505060206140ba87828801613d7b565b93505060406140cb87828801613f21565b925050606085013567ffffffffffffffff8111156140e857600080fd5b6140f487828801613ead565b91505092959194509250565b60008060006040848603121561411557600080fd5b600061412386828701613d7b565b935050602084013567ffffffffffffffff81111561414057600080fd5b61414c86828701613dda565b92509250509250925092565b6000806040838503121561416b57600080fd5b600061417985828601613d7b565b925050602061418a85828601613e24565b9150509250929050565b600080604083850312156141a757600080fd5b60006141b585828601613d7b565b92505060206141c685828601613f21565b9150509250929050565b600080600080604085870312156141e657600080fd5b600085013567ffffffffffffffff81111561420057600080fd5b61420c87828801613d90565b9450945050602085013567ffffffffffffffff81111561422b57600080fd5b61423787828801613dda565b925092505092959194509250565b6000806000806040858703121561425b57600080fd5b600085013567ffffffffffffffff81111561427557600080fd5b61428187828801613dda565b9450945050602085013567ffffffffffffffff8111156142a057600080fd5b6142ac87828801613d90565b925092505092959194509250565b6000806000606084860312156142cf57600080fd5b60006142dd86828701613e24565b93505060206142ee86828701613e24565b92505060406142ff86828701613e24565b9150509250925092565b60006020828403121561431b57600080fd5b600061432984828501613e39565b91505092915050565b60006020828403121561434457600080fd5b600061435284828501613e4e565b91505092915050565b6000806020838503121561436e57600080fd5b600083013567ffffffffffffffff81111561438857600080fd5b61439485828601613ed7565b92509250509250929050565b600080600080604085870312156143b657600080fd5b600085013567ffffffffffffffff8111156143d057600080fd5b6143dc87828801613ed7565b9450945050602085013567ffffffffffffffff8111156143fb57600080fd5b61440787828801613ed7565b925092505092959194509250565b60006020828403121561442757600080fd5b600061443584828501613f21565b91505092915050565b60008060006040848603121561445357600080fd5b600061446186828701613f21565b935050602084013567ffffffffffffffff81111561447e57600080fd5b61448a86828701613e63565b92509250509250925092565b600080604083850312156144a957600080fd5b60006144b785828601613f21565b92505060206144c885828601613f21565b9150509250929050565b60006144de8383614a76565b60208301905092915050565b6144f3816151a2565b82525050565b61450a614505826151a2565b61531b565b82525050565b600061451b82615021565b614525818561504f565b935061453083614ffc565b8060005b8381101561456157815161454888826144d2565b975061455383615042565b925050600181019050614534565b5085935050505092915050565b614577816151b4565b82525050565b614586816151c0565b82525050565b61459d614598826151c0565b61532d565b82525050565b60006145ae8261502c565b6145b88185615060565b93506145c881856020860161523c565b6145d181615436565b840191505092915050565b60006145e782615037565b6145f18185615071565b935061460181856020860161523c565b61460a81615436565b840191505092915050565b600061462082615037565b61462a8185615082565b935061463a81856020860161523c565b80840191505092915050565b600081546146538161526f565b61465d8186615082565b945060018216600081146146785760018114614689576146bc565b60ff198316865281860193506146bc565b6146928561500c565b60005b838110156146b457815481890152600182019150602081019050614695565b838801955050505b50505092915050565b60006146d2601883615071565b91506146dd82615454565b602082019050919050565b60006146f5601083615071565b91506147008261547d565b602082019050919050565b6000614718601f83615071565b9150614723826154a6565b602082019050919050565b600061473b601c83615082565b9150614746826154cf565b601c82019050919050565b600061475e602b83615071565b9150614769826154f8565b604082019050919050565b6000614781603283615071565b915061478c82615547565b604082019050919050565b60006147a4602683615071565b91506147af82615596565b604082019050919050565b60006147c7602e83615071565b91506147d2826155e5565b604082019050919050565b60006147ea602483615071565b91506147f582615634565b604082019050919050565b600061480d601983615071565b915061481882615683565b602082019050919050565b6000614830601283615071565b915061483b826156ac565b602082019050919050565b6000614853602283615071565b915061485e826156d5565b604082019050919050565b6000614876603883615071565b915061488182615724565b604082019050919050565b6000614899602a83615071565b91506148a482615773565b604082019050919050565b60006148bc600d83615071565b91506148c7826157c2565b602082019050919050565b60006148df602283615071565b91506148ea826157eb565b604082019050919050565b6000614902602383615071565b915061490d8261583a565b604082019050919050565b6000614925602083615071565b915061493082615889565b602082019050919050565b6000614948602983615071565b9150614953826158b2565b604082019050919050565b600061496b602f83615071565b915061497682615901565b604082019050919050565b600061498e602183615071565b915061499982615950565b604082019050919050565b60006149b1601d83615071565b91506149bc8261599f565b602082019050919050565b60006149d4601983615071565b91506149df826159c8565b602082019050919050565b60006149f7603183615071565b9150614a02826159f1565b604082019050919050565b6000614a1a602a83615071565b9150614a2582615a40565b604082019050919050565b6000614a3d602c83615071565b9150614a4882615a8f565b604082019050919050565b6000614a60601983615071565b9150614a6b82615ade565b602082019050919050565b614a7f81615216565b82525050565b614a8e81615216565b82525050565b614a9d81615220565b82525050565b6000614aaf82876144f9565b601482019150614abf82866144f9565b601482019150614acf8285614615565b9150614adb8284614646565b915081905095945050505050565b6000614af58286614646565b9150614b018285614615565b9150614b0d8284614646565b9150819050949350505050565b6000614b258261472e565b9150614b31828461458c565b60208201915081905092915050565b6000602082019050614b5560008301846144ea565b92915050565b6000608082019050614b7060008301876144ea565b614b7d60208301866144ea565b614b8a6040830185614a85565b8181036060830152614b9c81846145a3565b905095945050505050565b60006020820190508181036000830152614bc18184614510565b905092915050565b6000602082019050614bde600083018461456e565b92915050565b6000608082019050614bf9600083018761457d565b614c066020830186614a94565b614c13604083018561457d565b614c20606083018461457d565b95945050505050565b60006020820190508181036000830152614c4381846145dc565b905092915050565b60006020820190508181036000830152614c64816146c5565b9050919050565b60006020820190508181036000830152614c84816146e8565b9050919050565b60006020820190508181036000830152614ca48161470b565b9050919050565b60006020820190508181036000830152614cc481614751565b9050919050565b60006020820190508181036000830152614ce481614774565b9050919050565b60006020820190508181036000830152614d0481614797565b9050919050565b60006020820190508181036000830152614d24816147ba565b9050919050565b60006020820190508181036000830152614d44816147dd565b9050919050565b60006020820190508181036000830152614d6481614800565b9050919050565b60006020820190508181036000830152614d8481614823565b9050919050565b60006020820190508181036000830152614da481614846565b9050919050565b60006020820190508181036000830152614dc481614869565b9050919050565b60006020820190508181036000830152614de48161488c565b9050919050565b60006020820190508181036000830152614e04816148af565b9050919050565b60006020820190508181036000830152614e24816148d2565b9050919050565b60006020820190508181036000830152614e44816148f5565b9050919050565b60006020820190508181036000830152614e6481614918565b9050919050565b60006020820190508181036000830152614e848161493b565b9050919050565b60006020820190508181036000830152614ea48161495e565b9050919050565b60006020820190508181036000830152614ec481614981565b9050919050565b60006020820190508181036000830152614ee4816149a4565b9050919050565b60006020820190508181036000830152614f04816149c7565b9050919050565b60006020820190508181036000830152614f24816149ea565b9050919050565b60006020820190508181036000830152614f4481614a0d565b9050919050565b60006020820190508181036000830152614f6481614a30565b9050919050565b60006020820190508181036000830152614f8481614a53565b9050919050565b6000602082019050614fa06000830184614a85565b92915050565b6000614fb0614fc1565b9050614fbc82826152a1565b919050565b6000604051905090565b600067ffffffffffffffff821115614fe657614fe5615407565b5b614fef82615436565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061509882615216565b91506150a383615216565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156150d8576150d761537a565b5b828201905092915050565b60006150ee82615216565b91506150f983615216565b925082615109576151086153a9565b5b828204905092915050565b600061511f82615216565b915061512a83615216565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156151635761516261537a565b5b828202905092915050565b600061517982615216565b915061518483615216565b9250828210156151975761519661537a565b5b828203905092915050565b60006151ad826151f6565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561525a57808201518184015260208101905061523f565b83811115615269576000848401525b50505050565b6000600282049050600182168061528757607f821691505b6020821081141561529b5761529a6153d8565b5b50919050565b6152aa82615436565b810181811067ffffffffffffffff821117156152c9576152c8615407565b5b80604052505050565b60006152dd82615216565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156153105761530f61537a565b5b600182019050919050565b600061532682615337565b9050919050565b6000819050919050565b600061534282615447565b9050919050565b600061535482615216565b915061535f83615216565b92508261536f5761536e6153a9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f496e76616c69642064656c656761746500000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f53706563696669656420737570706c79206973206c6f776572207468616e206360008201527f757272656e742062616c616e6365000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4f7264657220746f6f2062696700000000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20717565727920666f72206e6f6e6578697374656e7420746f60008201527f6b656e0000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f5369676e617475726520766572696669636174696f6e206661696c6564000000600082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d69736d617463686564206e756d626572206f6620616464726573736573206160008201527f6e642073706c6974732e00000000000000000000000000000000000000000000602082015250565b7f4d7573742070726f7669646520657175616c207175616e74697469657320616e60008201527f6420726563697069656e74730000000000000000000000000000000000000000602082015250565b7f4d696e742f6f72646572206578636565647320737570706c7900000000000000600082015250565b615b10816151a2565b8114615b1b57600080fd5b50565b615b27816151b4565b8114615b3257600080fd5b50565b615b3e816151ca565b8114615b4957600080fd5b50565b615b5581615216565b8114615b6057600080fd5b5056fea2646970667358221220205c64ea703276ed1c7090c1a33303eda09a10e8b84d7f68c108e2db1a03af2264736f6c63430008040033

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.