ETH Price: $3,417.76 (+7.07%)
Gas: 17 Gwei

Token

Mining Club (MYND)
 

Overview

Max Total Supply

194 MYND

Holders

46

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 MYND
0x79722abcd1732063d6a4908376dce3c309e6e3d0
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:
MYND

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-29
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/*
    Fully commented standard ERC721 Distilled from OpenZeppelin Docs
    Base for Building ERC721 by Martin McConnell
    All the utility without the fluff.
*/


interface IERC165 {
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

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`.
    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;
}

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);
}

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);
}

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, "Addr: cant send val, rcpt revert");
    }

    /**
     * @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, "Addr: low-level call value fail");
    }

    /**
     * @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, "Addr: insufficient balance 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, "Addr: low-level static call fail");
    }

    /**
     * @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), "Addr: static call 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, "Addr: low-level del 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), "Addr: delegate call non-contract");

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

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

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

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

abstract contract Functional {
    function toString(uint256 value) internal pure returns (string memory) {
        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);
    }
    
    bool private _reentryKey = false;
    modifier reentryLock {
        require(!_reentryKey, "attempt reenter locked function");
        _reentryKey = true;
        _;
        _reentryKey = false;
    }
}

// ******************************************************************************************************************************
// **************************************************  Start of Main Contract ***************************************************
// ******************************************************************************************************************************

contract MYND is IERC721, Ownable, Functional {

    using Address for address;
    
    // Token name
    string private _name;

    // Token symbol
    string private _symbol;
    
    // URI Root Location for Json Files
    string private _baseURI;

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

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

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

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;
    
    // Token bag for a holder
    mapping(address => uint256[]) private _ownerBag;
	mapping(uint256 => uint256) public countStamp;
	
    // Specific Functionality
    bool public mintActive;
    bool public revealed;  //for URI redirects
    uint256 public price;
    uint256 public numberMinted;
    uint256 public maxPerTxn;
    uint256 public distroCount;
    uint256 [] public reserved;
    uint256 public totalRewards;
    uint256 private _maxSupply;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor() {
        _name = "Mining Club";
        _symbol = "MYND";
        _baseURI = "https://miningclub.io/metadata/";
        _maxSupply = 10000;
		
        price = 300 * (10 ** 15); // Replace leading value with price in finney
        maxPerTxn = 100; //prevent gas block errors
    }

    //@dev See {IERC165-supportsInterface}. Interfaces Supported by this Standard
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return  interfaceId == type(IERC721).interfaceId ||
                interfaceId == type(IERC721Metadata).interfaceId ||
                interfaceId == type(IERC165).interfaceId ||
                interfaceId == MYND.onERC721Received.selector;
    }
    
    // Standard Withdraw function for the owner to pull the contract
    function withdraw() external onlyOwner {
        uint256 sendAmount = address(this).balance - totalRewards;
        (bool success, ) = msg.sender.call{value: sendAmount}("");
        require(success, "Transaction Unsuccessful");
    }

    function depositRewards() external payable onlyOwner {
        require( numberMinted > 0, "Division by Zero Error");
        require( msg.value > numberMinted, "Funds needed to distribute");
    	totalRewards += msg.value;
        reserved.push( msg.value / numberMinted ); //push the payout from the new distro without affecting previous
        totalRewards -= (msg.value % numberMinted ); //Prevent remainders from accumulating.
        distroCount++;
    }
    
    function mint(uint256 qty) external payable reentryLock {
        address _to = _msgSender();
        require(msg.value >= qty * price, "Mint: Insufficient Funds");
        require(qty <= maxPerTxn, "Mint: Above Trxn Threshold!");
        require(mintActive, "Mint: Not Currently Open");
        require(numberMinted + qty <= _maxSupply, "Not Enough Supply");
        
        uint256 mintSeedValue = numberMinted; //Store the starting value of the mint batch
        numberMinted += qty;
        
        //send tokens
        for(uint256 i = 0; i < qty; i++) {
            _safeMint(_to, mintSeedValue + i);
            countStamp[mintSeedValue + i] = distroCount;
        }
    }
    
    function claimRewards() external reentryLock {
    	uint256 bagsize = _ownerBag[_msgSender()].length;
    	uint256 payout = 0;
    	
    	for (uint256 i=0; i<bagsize; i++){
            uint256 tokenid = _ownerBag[_msgSender()][i];
    		uint256 tokencount = countStamp[tokenid];
    		uint256 payoutsLeft = distroCount - countStamp[tokenid];
    		if (payoutsLeft > 0) {
    			for (uint256 j=0; j < payoutsLeft; j++){
    				payout += reserved[j + tokencount];
    			}
                countStamp[tokenid] = distroCount;
    		}
    	}
    	
        totalRewards -= payout;

        uint256 sendAmount = payout;
        (bool success, ) = msg.sender.call{value: sendAmount}("");
        require(success, "Claim Unsuccessful");
    }
    
    function checkRewards(address payee) external view returns (uint256) {
    	uint256 bagsize = _ownerBag[payee].length;
    	uint256 payout = 0;
    	
    	for (uint256 i=0; i<bagsize; i++){
            uint256 tokenid = _ownerBag[payee][i];
    		uint256 tokencount = countStamp[tokenid];
    		uint256 payoutsLeft = distroCount - countStamp[tokenid];
    		if (payoutsLeft > 0) {
    			for (uint256 j=0; j<payoutsLeft; j++){
    				payout += reserved[j + tokencount];
    			}
    		}
    	}
    	
    	return payout;
    }
    
    // allows holders to burn their own tokens if desired
    function burn(uint256 tokenID) external {
        require(_msgSender() == ownerOf(tokenID));
        _burn(tokenID);
    }

    //////////////////////////////////////////////////////////////
    /////////////////////// INTERNAL ONLY ////////////////////////
    //////////////////////////////////////////////////////////////
    function _addBag(address account, uint256 tokenid) internal {
        _ownerBag[account].push(tokenid);
    }

    function _subBag(address account, uint256 tokenid) internal {
        // Dev note... tokenid should ALWAYS be known to be an element of this bag befor calling,
        // but for certainty, we will run a check.
        require( _owners[tokenid] == account, "Invalid search string");
        uint256 len = _ownerBag[account].length;
        // Search only until the second from last element
        for (uint256 i; i < (len - 1); i++){
            if (_ownerBag[account][i] == tokenid) { //found it
                _ownerBag[account][i] = _ownerBag[account][len -1]; //assign last element of the array to empty slot
                _ownerBag[account].pop(); //remove last element
                break;
            }
            // We know this account holds the token, so if it hasn't been discovered it MUST be the final token.
            // We'll optimize this by running one check rather than using a flag or verifying array length.
            if (_ownerBag[account][_ownerBag[account].length - 1] == tokenid) {
                _ownerBag[account].pop();
            }
        }
    }
    
    //////////////////////////////////////////////////////////////
    //////////////////// Setters and Getters /////////////////////
    //////////////////////////////////////////////////////////////
    function setMaxMintThreshold(uint256 maxMints) external onlyOwner {
        maxPerTxn = maxMints;
    }

    function scanTokens(address holder) public view returns (uint256[] memory){
        return _ownerBag[holder];
    }
    
    function setBaseURI(string memory newURI) public onlyOwner {
        _baseURI = newURI;
    }
    
    function activateMint() public onlyOwner {
        mintActive = true;
    }
    
    function deactivateMint() public onlyOwner {
        mintActive = false;
    }
    
    function setPrice(uint256 newPrice) public onlyOwner {
        price = newPrice;
    }
    
    function setMaxSupply(uint256 newTotalSupply) public onlyOwner {
    	_maxSupply = newTotalSupply;
    }

    function totalSupply() external view returns (uint256) {
        return numberMinted; //stupid bs for etherscan's call
    }
    
    function revealTokens() external onlyOwner {
        revealed = true;
    }

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

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

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

        require(
            msg.sender == owner || isApprovedForAll(owner, msg.sender),
            "ERC721: caller !owner/!approved"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved nonexistent tkn");
        return _tokenApprovals[tokenId];
    }

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

        _operatorApprovals[msg.sender][operator] = approved;
        emit ApprovalForAll(msg.sender, operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(msg.sender, tokenId), "ERC721: txfr !owner/approved");
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(msg.sender, tokenId), "ERC721: txfr !owner/approved");
        _safeTransfer(from, to, tokenId, _data);
    }

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

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

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

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

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

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

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

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

        _addBag(to, tokenId);

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

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

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

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

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

        _subBag(owner, tokenId);

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

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

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

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

        _addBag(to, tokenId);
        _subBag(from, tokenId);

        emit Transfer(from, to, tokenId);
    }

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

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

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

    // **************************************** Metadata Standard Functions **********
    //@dev Returns the token collection name.
    function name() external view returns (string memory){
        return _name;
    }

    //@dev Returns the token collection symbol.
    function symbol() external view returns (string memory){
        return _symbol;
    }

    //@dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
    function tokenURI(uint256 tokenId) external view returns (string memory){
        require(_exists(tokenId), "ERC721Metadata: URI 0x0 token");
        string memory tokenuri;
        
        if (revealed) {
            //Input flag data here to send to reveal URI
            tokenuri = string(abi.encodePacked(_baseURI, toString(tokenId), ".json"));
        } else {
            //redirect to mystery box
            tokenuri = string(abi.encodePacked(_baseURI, "metadata.json"));
        }
        
        return tokenuri;
    }
    
    function contractURI() public view returns (string memory) {
            return string(abi.encodePacked(_baseURI,"contract.json"));
    }
    // *******************************************************************************

    receive() external payable {}
    
    fallback() external payable {}
}

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":"activateMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"payee","type":"address"}],"name":"checkRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"countStamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deactivateMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"depositRewards","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"distroCount","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"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"},{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"reserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"holder","type":"address"}],"name":"scanTokens","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMints","type":"uint256"}],"name":"setMaxMintThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTotalSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405260008060146101000a81548160ff0219169083151502179055503480156200002b57600080fd5b506200004c620000406200014760201b60201c565b6200014f60201b60201c565b6040518060400160405280600b81526020017f4d696e696e6720436c7562000000000000000000000000000000000000000000815250600190816200009291906200048d565b506040518060400160405280600481526020017f4d594e440000000000000000000000000000000000000000000000000000000081525060029081620000d991906200048d565b506040518060400160405280601f81526020017f68747470733a2f2f6d696e696e67636c75622e696f2f6d657461646174612f00815250600390816200012091906200048d565b50612710601181905550670429d069189e0000600b819055506064600d8190555062000574565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200029557607f821691505b602082108103620002ab57620002aa6200024d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002d6565b620003218683620002d6565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200036e62000368620003628462000339565b62000343565b62000339565b9050919050565b6000819050919050565b6200038a836200034d565b620003a2620003998262000375565b848454620002e3565b825550505050565b600090565b620003b9620003aa565b620003c68184846200037f565b505050565b5b81811015620003ee57620003e2600082620003af565b600181019050620003cc565b5050565b601f8211156200043d576200040781620002b1565b6200041284620002c6565b8101602085101562000422578190505b6200043a6200043185620002c6565b830182620003cb565b50505b505050565b600082821c905092915050565b6000620004626000198460080262000442565b1980831691505092915050565b60006200047d83836200044f565b9150826002028217905092915050565b620004988262000213565b67ffffffffffffffff811115620004b457620004b36200021e565b5b620004c082546200027c565b620004cd828285620003f2565b600060209050601f831160018114620005055760008415620004f0578287015190505b620004fc85826200046f565b8655506200056c565b601f1984166200051586620002b1565b60005b828110156200053f5784890151825560018201915060208501945060208101905062000518565b868310156200055f57848901516200055b601f8916826200044f565b8355505b6001600288020188555050505b505050505050565b614f7580620005846000396000f3fe6080604052600436106102555760003560e01c806353f9195e11610139578063a0712d68116100b6578063c91c04621161007a578063c91c046214610878578063d78c06fa1461088f578063df11dde3146108b8578063e8a3d485146108e3578063e985e9c51461090e578063f2fde38b1461094b5761025c565b8063a0712d6814610790578063a22cb465146107ac578063ada4ee31146107d5578063b88d4fde14610812578063c87b56dd1461083b5761025c565b8063715018a6116100fd578063715018a6146106cf5780638da5cb5b146106e657806391b7f5ed1461071157806395d89b411461073a578063a035b1fe146107655761025c565b806353f9195e146105c657806355f804b3146106035780636352211e1461062c5780636f8b44b01461066957806370a08231146106925761025c565b806323b872dd116101d25780633cb51994116101965780633cb51994146104dc5780633ccfd60b1461050757806342842e0e1461051e57806342966c681461054757806349a772b514610570578063518302271461059b5761025c565b806323b872dd1461044357806325fd90f31461046c5780632e56f71e14610497578063372500ab146104ae5780633ba5939d146104c55761025c565b80630e15561a116102195780630e15561a146103695780630f81db3e14610394578063150b7a02146103d1578063152111f71461040e57806318160ddd146104185761025c565b806301ffc9a71461025e578063046ff0d31461029b57806306fdde03146102d8578063081812fc14610303578063095ea7b3146103405761025c565b3661025c57005b005b34801561026a57600080fd5b50610285600480360381019061028091906133f0565b610974565b6040516102929190613438565b60405180910390f35b3480156102a757600080fd5b506102c260048036038101906102bd91906134b1565b610afd565b6040516102cf91906134f7565b60405180910390f35b3480156102e457600080fd5b506102ed610c6f565b6040516102fa91906135a2565b60405180910390f35b34801561030f57600080fd5b5061032a600480360381019061032591906135f0565b610d01565b604051610337919061362c565b60405180910390f35b34801561034c57600080fd5b5061036760048036038101906103629190613647565b610d86565b005b34801561037557600080fd5b5061037e610e8f565b60405161038b91906134f7565b60405180910390f35b3480156103a057600080fd5b506103bb60048036038101906103b691906134b1565b610e95565b6040516103c89190613745565b60405180910390f35b3480156103dd57600080fd5b506103f860048036038101906103f391906137cc565b610f2c565b6040516104059190613863565b60405180910390f35b610416610f41565b005b34801561042457600080fd5b5061042d6110d5565b60405161043a91906134f7565b60405180910390f35b34801561044f57600080fd5b5061046a6004803603810190610465919061387e565b6110df565b005b34801561047857600080fd5b50610481611138565b60405161048e9190613438565b60405180910390f35b3480156104a357600080fd5b506104ac61114b565b005b3480156104ba57600080fd5b506104c36111e4565b005b3480156104d157600080fd5b506104da6114c8565b005b3480156104e857600080fd5b506104f1611561565b6040516104fe91906134f7565b60405180910390f35b34801561051357600080fd5b5061051c611567565b005b34801561052a57600080fd5b506105456004803603810190610540919061387e565b6116a5565b005b34801561055357600080fd5b5061056e600480360381019061056991906135f0565b6116c5565b005b34801561057c57600080fd5b50610585611718565b60405161059291906134f7565b60405180910390f35b3480156105a757600080fd5b506105b061171e565b6040516105bd9190613438565b60405180910390f35b3480156105d257600080fd5b506105ed60048036038101906105e891906135f0565b611731565b6040516105fa91906134f7565b60405180910390f35b34801561060f57600080fd5b5061062a60048036038101906106259190613a01565b611755565b005b34801561063857600080fd5b50610653600480360381019061064e91906135f0565b6117e4565b604051610660919061362c565b60405180910390f35b34801561067557600080fd5b50610690600480360381019061068b91906135f0565b611895565b005b34801561069e57600080fd5b506106b960048036038101906106b491906134b1565b61191b565b6040516106c691906134f7565b60405180910390f35b3480156106db57600080fd5b506106e46119d2565b005b3480156106f257600080fd5b506106fb611a5a565b604051610708919061362c565b60405180910390f35b34801561071d57600080fd5b50610738600480360381019061073391906135f0565b611a83565b005b34801561074657600080fd5b5061074f611b09565b60405161075c91906135a2565b60405180910390f35b34801561077157600080fd5b5061077a611b9b565b60405161078791906134f7565b60405180910390f35b6107aa60048036038101906107a591906135f0565b611ba1565b005b3480156107b857600080fd5b506107d360048036038101906107ce9190613a76565b611de6565b005b3480156107e157600080fd5b506107fc60048036038101906107f791906135f0565b611f51565b60405161080991906134f7565b60405180910390f35b34801561081e57600080fd5b5061083960048036038101906108349190613b57565b611f69565b005b34801561084757600080fd5b50610862600480360381019061085d91906135f0565b611fc4565b60405161086f91906135a2565b60405180910390f35b34801561088457600080fd5b5061088d612084565b005b34801561089b57600080fd5b506108b660048036038101906108b191906135f0565b61211d565b005b3480156108c457600080fd5b506108cd6121a3565b6040516108da91906134f7565b60405180910390f35b3480156108ef57600080fd5b506108f86121a9565b60405161090591906135a2565b60405180910390f35b34801561091a57600080fd5b5061093560048036038101906109309190613bda565b6121d1565b6040516109429190613438565b60405180910390f35b34801561095757600080fd5b50610972600480360381019061096d91906134b1565b612265565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a3f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aa757507f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610af6575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600080600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905090506000805b82811015610c64576000600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208281548110610ba457610ba3613c1a565b5b9060005260206000200154905060006009600083815260200190815260200160002054905060006009600084815260200190815260200160002054600e54610bec9190613c78565b90506000811115610c4e5760005b81811015610c4c57600f8382610c109190613cac565b81548110610c2157610c20613c1a565b5b906000526020600020015486610c379190613cac565b95508080610c4490613ce0565b915050610bfa565b505b5050508080610c5c90613ce0565b915050610b49565b508092505050919050565b606060018054610c7e90613d57565b80601f0160208091040260200160405190810160405280929190818152602001828054610caa90613d57565b8015610cf75780601f10610ccc57610100808354040283529160200191610cf7565b820191906000526020600020905b815481529060010190602001808311610cda57829003601f168201915b5050505050905090565b6000610d0c8261235c565b610d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4290613dd4565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d91826117e4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df890613e40565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610e415750610e4081336121d1565b5b610e80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7790613eac565b60405180910390fd5b610e8a83836123c8565b505050565b60105481565b6060600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015610f2057602002820191906000526020600020905b815481526020019060010190808311610f0c575b50505050509050919050565b600063150b7a0260e01b905095945050505050565b610f49612481565b73ffffffffffffffffffffffffffffffffffffffff16610f67611a5a565b73ffffffffffffffffffffffffffffffffffffffff1614610fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb490613f18565b60405180910390fd5b6000600c5411611002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff990613f84565b60405180910390fd5b600c543411611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d90613ff0565b60405180910390fd5b34601060008282546110589190613cac565b92505081905550600f600c543461106f919061403f565b9080600181540180825580915050600190039060005260206000200160009091909190915055600c54346110a39190614070565b601060008282546110b49190613c78565b92505081905550600e60008154809291906110ce90613ce0565b9190505550565b6000600c54905090565b6110e93382612489565b611128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111f906140ed565b60405180910390fd5b611133838383612567565b505050565b600a60009054906101000a900460ff1681565b611153612481565b73ffffffffffffffffffffffffffffffffffffffff16611171611a5a565b73ffffffffffffffffffffffffffffffffffffffff16146111c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111be90613f18565b60405180910390fd5b6000600a60006101000a81548160ff021916908315150217905550565b600060149054906101000a900460ff1615611234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122b90614159565b60405180910390fd5b6001600060146101000a81548160ff02191690831515021790555060006008600061125d612481565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905090506000805b828110156113dd576000600860006112b7612481565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020828154811061130357611302613c1a565b5b9060005260206000200154905060006009600083815260200190815260200160002054905060006009600084815260200190815260200160002054600e5461134b9190613c78565b905060008111156113c75760005b818110156113ab57600f838261136f9190613cac565b815481106113805761137f613c1a565b5b9060005260206000200154866113969190613cac565b955080806113a390613ce0565b915050611359565b50600e5460096000858152602001908152602001600020819055505b50505080806113d590613ce0565b9150506112a1565b5080601060008282546113f09190613c78565b92505081905550600081905060003373ffffffffffffffffffffffffffffffffffffffff1682604051611422906141aa565b60006040518083038185875af1925050503d806000811461145f576040519150601f19603f3d011682016040523d82523d6000602084013e611464565b606091505b50509050806114a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149f9061420b565b60405180910390fd5b5050505060008060146101000a81548160ff021916908315150217905550565b6114d0612481565b73ffffffffffffffffffffffffffffffffffffffff166114ee611a5a565b73ffffffffffffffffffffffffffffffffffffffff1614611544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153b90613f18565b60405180910390fd5b6001600a60016101000a81548160ff021916908315150217905550565b600d5481565b61156f612481565b73ffffffffffffffffffffffffffffffffffffffff1661158d611a5a565b73ffffffffffffffffffffffffffffffffffffffff16146115e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115da90613f18565b60405180910390fd5b6000601054476115f39190613c78565b905060003373ffffffffffffffffffffffffffffffffffffffff168260405161161b906141aa565b60006040518083038185875af1925050503d8060008114611658576040519150601f19603f3d011682016040523d82523d6000602084013e61165d565b606091505b50509050806116a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169890614277565b60405180910390fd5b5050565b6116c083838360405180602001604052806000815250611f69565b505050565b6116ce816117e4565b73ffffffffffffffffffffffffffffffffffffffff166116ec612481565b73ffffffffffffffffffffffffffffffffffffffff161461170c57600080fd5b611715816127d6565b50565b600c5481565b600a60019054906101000a900460ff1681565b600f818154811061174157600080fd5b906000526020600020016000915090505481565b61175d612481565b73ffffffffffffffffffffffffffffffffffffffff1661177b611a5a565b73ffffffffffffffffffffffffffffffffffffffff16146117d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c890613f18565b60405180910390fd5b80600390816117e09190614443565b5050565b6000806004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361188c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188390614561565b60405180910390fd5b80915050919050565b61189d612481565b73ffffffffffffffffffffffffffffffffffffffff166118bb611a5a565b73ffffffffffffffffffffffffffffffffffffffff1614611911576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190890613f18565b60405180910390fd5b8060118190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361198b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611982906145cd565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6119da612481565b73ffffffffffffffffffffffffffffffffffffffff166119f8611a5a565b73ffffffffffffffffffffffffffffffffffffffff1614611a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4590613f18565b60405180910390fd5b611a5860006128f1565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a8b612481565b73ffffffffffffffffffffffffffffffffffffffff16611aa9611a5a565b73ffffffffffffffffffffffffffffffffffffffff1614611aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af690613f18565b60405180910390fd5b80600b8190555050565b606060028054611b1890613d57565b80601f0160208091040260200160405190810160405280929190818152602001828054611b4490613d57565b8015611b915780601f10611b6657610100808354040283529160200191611b91565b820191906000526020600020905b815481529060010190602001808311611b7457829003601f168201915b5050505050905090565b600b5481565b600060149054906101000a900460ff1615611bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be890614159565b60405180910390fd5b6001600060146101000a81548160ff0219169083151502179055506000611c16612481565b9050600b5482611c2691906145ed565b341015611c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5f9061467b565b60405180910390fd5b600d54821115611cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca4906146e7565b60405180910390fd5b600a60009054906101000a900460ff16611cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf390614753565b60405180910390fd5b60115482600c54611d0d9190613cac565b1115611d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d45906147bf565b60405180910390fd5b6000600c54905082600c6000828254611d679190613cac565b9250508190555060005b83811015611dc657611d8e838284611d899190613cac565b6129b5565b600e54600960008385611da19190613cac565b8152602001908152602001600020819055508080611dbe90613ce0565b915050611d71565b50505060008060146101000a81548160ff02191690831515021790555050565b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4b9061482b565b60405180910390fd5b80600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f459190613438565b60405180910390a35050565b60096020528060005260406000206000915090505481565b611f733383612489565b611fb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa9906140ed565b60405180910390fd5b611fbe848484846129d3565b50505050565b6060611fcf8261235c565b61200e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200590614897565b60405180910390fd5b6060600a60019054906101000a900460ff161561205757600361203084612a2f565b6040516020016120419291906149c2565b604051602081830303815290604052905061207b565b60036040516020016120699190614a3d565b60405160208183030381529060405290505b80915050919050565b61208c612481565b73ffffffffffffffffffffffffffffffffffffffff166120aa611a5a565b73ffffffffffffffffffffffffffffffffffffffff1614612100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f790613f18565b60405180910390fd5b6001600a60006101000a81548160ff021916908315150217905550565b612125612481565b73ffffffffffffffffffffffffffffffffffffffff16612143611a5a565b73ffffffffffffffffffffffffffffffffffffffff1614612199576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219090613f18565b60405180910390fd5b80600d8190555050565b600e5481565b606060036040516020016121bd9190614aab565b604051602081830303815290604052905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61226d612481565b73ffffffffffffffffffffffffffffffffffffffff1661228b611a5a565b73ffffffffffffffffffffffffffffffffffffffff16146122e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d890613f18565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234790614b19565b60405180910390fd5b612359816128f1565b50565b60008073ffffffffffffffffffffffffffffffffffffffff166004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661243b836117e4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600033905090565b60006124948261235c565b6124d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ca90614b85565b60405180910390fd5b60006124de836117e4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061254d57508373ffffffffffffffffffffffffffffffffffffffff1661253584610d01565b73ffffffffffffffffffffffffffffffffffffffff16145b8061255e575061255d81856121d1565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612587826117e4565b73ffffffffffffffffffffffffffffffffffffffff16146125dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d490614bf1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361264c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264390614c5d565b60405180910390fd5b612657838383612b8f565b6126626000826123c8565b6001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126b29190613c78565b925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127099190613cac565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061276c8282612b94565b6127768382612bfe565b808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006127e1826117e4565b90506127ef81600084612b8f565b6127fa6000836123c8565b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461284a9190613c78565b925050819055506004600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556128918183612bfe565b81600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6129cf828260405180602001604052806000815250612fbf565b5050565b6129de848484612567565b6129ea8484848461301a565b612a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2090614cc9565b60405180910390fd5b50505050565b606060008203612a76576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b8a565b600082905060005b60008214612aa8578080612a9190613ce0565b915050600a82612aa1919061403f565b9150612a7e565b60008167ffffffffffffffff811115612ac457612ac36138d6565b5b6040519080825280601f01601f191660200182016040528015612af65781602001600182028036833780820191505090505b5090505b60008514612b8357600182612b0f9190613c78565b9150600a85612b1e9190614070565b6030612b2a9190613cac565b60f81b818381518110612b4057612b3f613c1a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b7c919061403f565b9450612afa565b8093505050505b919050565b505050565b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150506001900390600052602060002001600090919091909150555050565b8173ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9690614d35565b60405180910390fd5b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050905060005b600182612cf69190613c78565b811015612fb95782600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208281548110612d4f57612d4e613c1a565b5b906000526020600020015403612e9057600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600183612dab9190613c78565b81548110612dbc57612dbb613c1a565b5b9060005260206000200154600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208281548110612e1857612e17613c1a565b5b9060005260206000200181905550600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480612e7557612e74614d55565b5b60019003818190600052602060002001600090559055612fb9565b82600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001600860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050612f1f9190613c78565b81548110612f3057612f2f613c1a565b5b906000526020600020015403612fa657600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480612f8f57612f8e614d55565b5b600190038181906000526020600020016000905590555b8080612fb190613ce0565b915050612ce9565b50505050565b612fc9838361319a565b612fd6600084848461301a565b613015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300c90614cc9565b60405180910390fd5b505050565b600061303b8473ffffffffffffffffffffffffffffffffffffffff16613371565b1561318d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02338786866040518563ffffffff1660e01b815260040161307f9493929190614dd9565b6020604051808303816000875af19250505080156130bb57506040513d601f19601f820116820180604052508101906130b89190614e3a565b60015b61313d573d80600081146130eb576040519150601f19603f3d011682016040523d82523d6000602084013e6130f0565b606091505b506000815103613135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312c90614cc9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613192565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613209576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320090614eb3565b60405180910390fd5b6132128161235c565b15613252576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161324990614f1f565b60405180910390fd5b61325e60008383612b8f565b6001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132ae9190613cac565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506133118282612b94565b808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6133cd81613398565b81146133d857600080fd5b50565b6000813590506133ea816133c4565b92915050565b6000602082840312156134065761340561338e565b5b6000613414848285016133db565b91505092915050565b60008115159050919050565b6134328161341d565b82525050565b600060208201905061344d6000830184613429565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061347e82613453565b9050919050565b61348e81613473565b811461349957600080fd5b50565b6000813590506134ab81613485565b92915050565b6000602082840312156134c7576134c661338e565b5b60006134d58482850161349c565b91505092915050565b6000819050919050565b6134f1816134de565b82525050565b600060208201905061350c60008301846134e8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561354c578082015181840152602081019050613531565b60008484015250505050565b6000601f19601f8301169050919050565b600061357482613512565b61357e818561351d565b935061358e81856020860161352e565b61359781613558565b840191505092915050565b600060208201905081810360008301526135bc8184613569565b905092915050565b6135cd816134de565b81146135d857600080fd5b50565b6000813590506135ea816135c4565b92915050565b6000602082840312156136065761360561338e565b5b6000613614848285016135db565b91505092915050565b61362681613473565b82525050565b6000602082019050613641600083018461361d565b92915050565b6000806040838503121561365e5761365d61338e565b5b600061366c8582860161349c565b925050602061367d858286016135db565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6136bc816134de565b82525050565b60006136ce83836136b3565b60208301905092915050565b6000602082019050919050565b60006136f282613687565b6136fc8185613692565b9350613707836136a3565b8060005b8381101561373857815161371f88826136c2565b975061372a836136da565b92505060018101905061370b565b5085935050505092915050565b6000602082019050818103600083015261375f81846136e7565b905092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261378c5761378b613767565b5b8235905067ffffffffffffffff8111156137a9576137a861376c565b5b6020830191508360018202830111156137c5576137c4613771565b5b9250929050565b6000806000806000608086880312156137e8576137e761338e565b5b60006137f68882890161349c565b95505060206138078882890161349c565b9450506040613818888289016135db565b935050606086013567ffffffffffffffff81111561383957613838613393565b5b61384588828901613776565b92509250509295509295909350565b61385d81613398565b82525050565b60006020820190506138786000830184613854565b92915050565b6000806000606084860312156138975761389661338e565b5b60006138a58682870161349c565b93505060206138b68682870161349c565b92505060406138c7868287016135db565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61390e82613558565b810181811067ffffffffffffffff8211171561392d5761392c6138d6565b5b80604052505050565b6000613940613384565b905061394c8282613905565b919050565b600067ffffffffffffffff82111561396c5761396b6138d6565b5b61397582613558565b9050602081019050919050565b82818337600083830152505050565b60006139a461399f84613951565b613936565b9050828152602081018484840111156139c0576139bf6138d1565b5b6139cb848285613982565b509392505050565b600082601f8301126139e8576139e7613767565b5b81356139f8848260208601613991565b91505092915050565b600060208284031215613a1757613a1661338e565b5b600082013567ffffffffffffffff811115613a3557613a34613393565b5b613a41848285016139d3565b91505092915050565b613a538161341d565b8114613a5e57600080fd5b50565b600081359050613a7081613a4a565b92915050565b60008060408385031215613a8d57613a8c61338e565b5b6000613a9b8582860161349c565b9250506020613aac85828601613a61565b9150509250929050565b600067ffffffffffffffff821115613ad157613ad06138d6565b5b613ada82613558565b9050602081019050919050565b6000613afa613af584613ab6565b613936565b905082815260208101848484011115613b1657613b156138d1565b5b613b21848285613982565b509392505050565b600082601f830112613b3e57613b3d613767565b5b8135613b4e848260208601613ae7565b91505092915050565b60008060008060808587031215613b7157613b7061338e565b5b6000613b7f8782880161349c565b9450506020613b908782880161349c565b9350506040613ba1878288016135db565b925050606085013567ffffffffffffffff811115613bc257613bc1613393565b5b613bce87828801613b29565b91505092959194509250565b60008060408385031215613bf157613bf061338e565b5b6000613bff8582860161349c565b9250506020613c108582860161349c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613c83826134de565b9150613c8e836134de565b9250828203905081811115613ca657613ca5613c49565b5b92915050565b6000613cb7826134de565b9150613cc2836134de565b9250828201905080821115613cda57613cd9613c49565b5b92915050565b6000613ceb826134de565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613d1d57613d1c613c49565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d6f57607f821691505b602082108103613d8257613d81613d28565b5b50919050565b7f4552433732313a20617070726f766564206e6f6e6578697374656e7420746b6e600082015250565b6000613dbe60208361351d565b9150613dc982613d88565b602082019050919050565b60006020820190508181036000830152613ded81613db1565b9050919050565b7f4552433732313a20617070726f76616c2063757272656e74206f776e65720000600082015250565b6000613e2a601e8361351d565b9150613e3582613df4565b602082019050919050565b60006020820190508181036000830152613e5981613e1d565b9050919050565b7f4552433732313a2063616c6c657220216f776e65722f21617070726f76656400600082015250565b6000613e96601f8361351d565b9150613ea182613e60565b602082019050919050565b60006020820190508181036000830152613ec581613e89565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f0260208361351d565b9150613f0d82613ecc565b602082019050919050565b60006020820190508181036000830152613f3181613ef5565b9050919050565b7f4469766973696f6e206279205a65726f204572726f7200000000000000000000600082015250565b6000613f6e60168361351d565b9150613f7982613f38565b602082019050919050565b60006020820190508181036000830152613f9d81613f61565b9050919050565b7f46756e6473206e656564656420746f2064697374726962757465000000000000600082015250565b6000613fda601a8361351d565b9150613fe582613fa4565b602082019050919050565b6000602082019050818103600083015261400981613fcd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061404a826134de565b9150614055836134de565b92508261406557614064614010565b5b828204905092915050565b600061407b826134de565b9150614086836134de565b92508261409657614095614010565b5b828206905092915050565b7f4552433732313a207478667220216f776e65722f617070726f76656400000000600082015250565b60006140d7601c8361351d565b91506140e2826140a1565b602082019050919050565b60006020820190508181036000830152614106816140ca565b9050919050565b7f617474656d7074207265656e746572206c6f636b65642066756e6374696f6e00600082015250565b6000614143601f8361351d565b915061414e8261410d565b602082019050919050565b6000602082019050818103600083015261417281614136565b9050919050565b600081905092915050565b50565b6000614194600083614179565b915061419f82614184565b600082019050919050565b60006141b582614187565b9150819050919050565b7f436c61696d20556e7375636365737366756c0000000000000000000000000000600082015250565b60006141f560128361351d565b9150614200826141bf565b602082019050919050565b60006020820190508181036000830152614224816141e8565b9050919050565b7f5472616e73616374696f6e20556e7375636365737366756c0000000000000000600082015250565b600061426160188361351d565b915061426c8261422b565b602082019050919050565b6000602082019050818103600083015261429081614254565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026142f97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826142bc565b61430386836142bc565b95508019841693508086168417925050509392505050565b6000819050919050565b600061434061433b614336846134de565b61431b565b6134de565b9050919050565b6000819050919050565b61435a83614325565b61436e61436682614347565b8484546142c9565b825550505050565b600090565b614383614376565b61438e818484614351565b505050565b5b818110156143b2576143a760008261437b565b600181019050614394565b5050565b601f8211156143f7576143c881614297565b6143d1846142ac565b810160208510156143e0578190505b6143f46143ec856142ac565b830182614393565b50505b505050565b600082821c905092915050565b600061441a600019846008026143fc565b1980831691505092915050565b60006144338383614409565b9150826002028217905092915050565b61444c82613512565b67ffffffffffffffff811115614465576144646138d6565b5b61446f8254613d57565b61447a8282856143b6565b600060209050601f8311600181146144ad576000841561449b578287015190505b6144a58582614427565b86555061450d565b601f1984166144bb86614297565b60005b828110156144e3578489015182556001820191506020850194506020810190506144be565b8683101561450057848901516144fc601f891682614409565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a206f776e207175657279206e6f6e657869737420746b6e0000600082015250565b600061454b601e8361351d565b915061455682614515565b602082019050919050565b6000602082019050818103600083015261457a8161453e565b9050919050565b7f4552433732313a2062616c2071727920666f72207a65726f2061646472657373600082015250565b60006145b760208361351d565b91506145c282614581565b602082019050919050565b600060208201905081810360008301526145e6816145aa565b9050919050565b60006145f8826134de565b9150614603836134de565b9250828202614611816134de565b9150828204841483151761462857614627613c49565b5b5092915050565b7f4d696e743a20496e73756666696369656e742046756e64730000000000000000600082015250565b600061466560188361351d565b91506146708261462f565b602082019050919050565b6000602082019050818103600083015261469481614658565b9050919050565b7f4d696e743a2041626f7665205472786e205468726573686f6c64210000000000600082015250565b60006146d1601b8361351d565b91506146dc8261469b565b602082019050919050565b60006020820190508181036000830152614700816146c4565b9050919050565b7f4d696e743a204e6f742043757272656e746c79204f70656e0000000000000000600082015250565b600061473d60188361351d565b915061474882614707565b602082019050919050565b6000602082019050818103600083015261476c81614730565b9050919050565b7f4e6f7420456e6f75676820537570706c79000000000000000000000000000000600082015250565b60006147a960118361351d565b91506147b482614773565b602082019050919050565b600060208201905081810360008301526147d88161479c565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061481560198361351d565b9150614820826147df565b602082019050919050565b6000602082019050818103600083015261484481614808565b9050919050565b7f4552433732314d657461646174613a205552492030783020746f6b656e000000600082015250565b6000614881601d8361351d565b915061488c8261484b565b602082019050919050565b600060208201905081810360008301526148b081614874565b9050919050565b600081905092915050565b600081546148cf81613d57565b6148d981866148b7565b945060018216600081146148f457600181146149095761493c565b60ff198316865281151582028601935061493c565b61491285614297565b60005b8381101561493457815481890152600182019150602081019050614915565b838801955050505b50505092915050565b600061495082613512565b61495a81856148b7565b935061496a81856020860161352e565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006149ac6005836148b7565b91506149b782614976565b600582019050919050565b60006149ce82856148c2565b91506149da8284614945565b91506149e58261499f565b91508190509392505050565b7f6d657461646174612e6a736f6e00000000000000000000000000000000000000600082015250565b6000614a27600d836148b7565b9150614a32826149f1565b600d82019050919050565b6000614a4982846148c2565b9150614a5482614a1a565b915081905092915050565b7f636f6e74726163742e6a736f6e00000000000000000000000000000000000000600082015250565b6000614a95600d836148b7565b9150614aa082614a5f565b600d82019050919050565b6000614ab782846148c2565b9150614ac282614a88565b915081905092915050565b7f4f776e61626c653a206e6577206f776e65722069732030782061646472657373600082015250565b6000614b0360208361351d565b9150614b0e82614acd565b602082019050919050565b60006020820190508181036000830152614b3281614af6565b9050919050565b7f4552433732313a206f70207175657279206e6f6e6578697374656e7420746b6e600082015250565b6000614b6f60208361351d565b9150614b7a82614b39565b602082019050919050565b60006020820190508181036000830152614b9e81614b62565b9050919050565b7f4552433732313a207478667220746f6b656e206e6f74206f776e656400000000600082015250565b6000614bdb601c8361351d565b9150614be682614ba5565b602082019050919050565b60006020820190508181036000830152614c0a81614bce565b9050919050565b7f4552433732313a207478667220746f2030783020616464726573730000000000600082015250565b6000614c47601b8361351d565b9150614c5282614c11565b602082019050919050565b60006020820190508181036000830152614c7681614c3a565b9050919050565b7f7478667220746f206e6f6e204552433732315265636965766572000000000000600082015250565b6000614cb3601a8361351d565b9150614cbe82614c7d565b602082019050919050565b60006020820190508181036000830152614ce281614ca6565b9050919050565b7f496e76616c69642073656172636820737472696e670000000000000000000000600082015250565b6000614d1f60158361351d565b9150614d2a82614ce9565b602082019050919050565b60006020820190508181036000830152614d4e81614d12565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000614dab82614d84565b614db58185614d8f565b9350614dc581856020860161352e565b614dce81613558565b840191505092915050565b6000608082019050614dee600083018761361d565b614dfb602083018661361d565b614e0860408301856134e8565b8181036060830152614e1a8184614da0565b905095945050505050565b600081519050614e34816133c4565b92915050565b600060208284031215614e5057614e4f61338e565b5b6000614e5e84828501614e25565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614e9d60208361351d565b9150614ea882614e67565b602082019050919050565b60006020820190508181036000830152614ecc81614e90565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614f09601c8361351d565b9150614f1482614ed3565b602082019050919050565b60006020820190508181036000830152614f3881614efc565b905091905056fea264697066735822122040ba2a6e083d95e42c4c13dd7ab26c72d7440c887c22d49b757ed4577f05163464736f6c63430008110033

Deployed Bytecode

0x6080604052600436106102555760003560e01c806353f9195e11610139578063a0712d68116100b6578063c91c04621161007a578063c91c046214610878578063d78c06fa1461088f578063df11dde3146108b8578063e8a3d485146108e3578063e985e9c51461090e578063f2fde38b1461094b5761025c565b8063a0712d6814610790578063a22cb465146107ac578063ada4ee31146107d5578063b88d4fde14610812578063c87b56dd1461083b5761025c565b8063715018a6116100fd578063715018a6146106cf5780638da5cb5b146106e657806391b7f5ed1461071157806395d89b411461073a578063a035b1fe146107655761025c565b806353f9195e146105c657806355f804b3146106035780636352211e1461062c5780636f8b44b01461066957806370a08231146106925761025c565b806323b872dd116101d25780633cb51994116101965780633cb51994146104dc5780633ccfd60b1461050757806342842e0e1461051e57806342966c681461054757806349a772b514610570578063518302271461059b5761025c565b806323b872dd1461044357806325fd90f31461046c5780632e56f71e14610497578063372500ab146104ae5780633ba5939d146104c55761025c565b80630e15561a116102195780630e15561a146103695780630f81db3e14610394578063150b7a02146103d1578063152111f71461040e57806318160ddd146104185761025c565b806301ffc9a71461025e578063046ff0d31461029b57806306fdde03146102d8578063081812fc14610303578063095ea7b3146103405761025c565b3661025c57005b005b34801561026a57600080fd5b50610285600480360381019061028091906133f0565b610974565b6040516102929190613438565b60405180910390f35b3480156102a757600080fd5b506102c260048036038101906102bd91906134b1565b610afd565b6040516102cf91906134f7565b60405180910390f35b3480156102e457600080fd5b506102ed610c6f565b6040516102fa91906135a2565b60405180910390f35b34801561030f57600080fd5b5061032a600480360381019061032591906135f0565b610d01565b604051610337919061362c565b60405180910390f35b34801561034c57600080fd5b5061036760048036038101906103629190613647565b610d86565b005b34801561037557600080fd5b5061037e610e8f565b60405161038b91906134f7565b60405180910390f35b3480156103a057600080fd5b506103bb60048036038101906103b691906134b1565b610e95565b6040516103c89190613745565b60405180910390f35b3480156103dd57600080fd5b506103f860048036038101906103f391906137cc565b610f2c565b6040516104059190613863565b60405180910390f35b610416610f41565b005b34801561042457600080fd5b5061042d6110d5565b60405161043a91906134f7565b60405180910390f35b34801561044f57600080fd5b5061046a6004803603810190610465919061387e565b6110df565b005b34801561047857600080fd5b50610481611138565b60405161048e9190613438565b60405180910390f35b3480156104a357600080fd5b506104ac61114b565b005b3480156104ba57600080fd5b506104c36111e4565b005b3480156104d157600080fd5b506104da6114c8565b005b3480156104e857600080fd5b506104f1611561565b6040516104fe91906134f7565b60405180910390f35b34801561051357600080fd5b5061051c611567565b005b34801561052a57600080fd5b506105456004803603810190610540919061387e565b6116a5565b005b34801561055357600080fd5b5061056e600480360381019061056991906135f0565b6116c5565b005b34801561057c57600080fd5b50610585611718565b60405161059291906134f7565b60405180910390f35b3480156105a757600080fd5b506105b061171e565b6040516105bd9190613438565b60405180910390f35b3480156105d257600080fd5b506105ed60048036038101906105e891906135f0565b611731565b6040516105fa91906134f7565b60405180910390f35b34801561060f57600080fd5b5061062a60048036038101906106259190613a01565b611755565b005b34801561063857600080fd5b50610653600480360381019061064e91906135f0565b6117e4565b604051610660919061362c565b60405180910390f35b34801561067557600080fd5b50610690600480360381019061068b91906135f0565b611895565b005b34801561069e57600080fd5b506106b960048036038101906106b491906134b1565b61191b565b6040516106c691906134f7565b60405180910390f35b3480156106db57600080fd5b506106e46119d2565b005b3480156106f257600080fd5b506106fb611a5a565b604051610708919061362c565b60405180910390f35b34801561071d57600080fd5b50610738600480360381019061073391906135f0565b611a83565b005b34801561074657600080fd5b5061074f611b09565b60405161075c91906135a2565b60405180910390f35b34801561077157600080fd5b5061077a611b9b565b60405161078791906134f7565b60405180910390f35b6107aa60048036038101906107a591906135f0565b611ba1565b005b3480156107b857600080fd5b506107d360048036038101906107ce9190613a76565b611de6565b005b3480156107e157600080fd5b506107fc60048036038101906107f791906135f0565b611f51565b60405161080991906134f7565b60405180910390f35b34801561081e57600080fd5b5061083960048036038101906108349190613b57565b611f69565b005b34801561084757600080fd5b50610862600480360381019061085d91906135f0565b611fc4565b60405161086f91906135a2565b60405180910390f35b34801561088457600080fd5b5061088d612084565b005b34801561089b57600080fd5b506108b660048036038101906108b191906135f0565b61211d565b005b3480156108c457600080fd5b506108cd6121a3565b6040516108da91906134f7565b60405180910390f35b3480156108ef57600080fd5b506108f86121a9565b60405161090591906135a2565b60405180910390f35b34801561091a57600080fd5b5061093560048036038101906109309190613bda565b6121d1565b6040516109429190613438565b60405180910390f35b34801561095757600080fd5b50610972600480360381019061096d91906134b1565b612265565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a3f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aa757507f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610af6575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600080600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905090506000805b82811015610c64576000600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208281548110610ba457610ba3613c1a565b5b9060005260206000200154905060006009600083815260200190815260200160002054905060006009600084815260200190815260200160002054600e54610bec9190613c78565b90506000811115610c4e5760005b81811015610c4c57600f8382610c109190613cac565b81548110610c2157610c20613c1a565b5b906000526020600020015486610c379190613cac565b95508080610c4490613ce0565b915050610bfa565b505b5050508080610c5c90613ce0565b915050610b49565b508092505050919050565b606060018054610c7e90613d57565b80601f0160208091040260200160405190810160405280929190818152602001828054610caa90613d57565b8015610cf75780601f10610ccc57610100808354040283529160200191610cf7565b820191906000526020600020905b815481529060010190602001808311610cda57829003601f168201915b5050505050905090565b6000610d0c8261235c565b610d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4290613dd4565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d91826117e4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df890613e40565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610e415750610e4081336121d1565b5b610e80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7790613eac565b60405180910390fd5b610e8a83836123c8565b505050565b60105481565b6060600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015610f2057602002820191906000526020600020905b815481526020019060010190808311610f0c575b50505050509050919050565b600063150b7a0260e01b905095945050505050565b610f49612481565b73ffffffffffffffffffffffffffffffffffffffff16610f67611a5a565b73ffffffffffffffffffffffffffffffffffffffff1614610fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb490613f18565b60405180910390fd5b6000600c5411611002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff990613f84565b60405180910390fd5b600c543411611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d90613ff0565b60405180910390fd5b34601060008282546110589190613cac565b92505081905550600f600c543461106f919061403f565b9080600181540180825580915050600190039060005260206000200160009091909190915055600c54346110a39190614070565b601060008282546110b49190613c78565b92505081905550600e60008154809291906110ce90613ce0565b9190505550565b6000600c54905090565b6110e93382612489565b611128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111f906140ed565b60405180910390fd5b611133838383612567565b505050565b600a60009054906101000a900460ff1681565b611153612481565b73ffffffffffffffffffffffffffffffffffffffff16611171611a5a565b73ffffffffffffffffffffffffffffffffffffffff16146111c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111be90613f18565b60405180910390fd5b6000600a60006101000a81548160ff021916908315150217905550565b600060149054906101000a900460ff1615611234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122b90614159565b60405180910390fd5b6001600060146101000a81548160ff02191690831515021790555060006008600061125d612481565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905090506000805b828110156113dd576000600860006112b7612481565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020828154811061130357611302613c1a565b5b9060005260206000200154905060006009600083815260200190815260200160002054905060006009600084815260200190815260200160002054600e5461134b9190613c78565b905060008111156113c75760005b818110156113ab57600f838261136f9190613cac565b815481106113805761137f613c1a565b5b9060005260206000200154866113969190613cac565b955080806113a390613ce0565b915050611359565b50600e5460096000858152602001908152602001600020819055505b50505080806113d590613ce0565b9150506112a1565b5080601060008282546113f09190613c78565b92505081905550600081905060003373ffffffffffffffffffffffffffffffffffffffff1682604051611422906141aa565b60006040518083038185875af1925050503d806000811461145f576040519150601f19603f3d011682016040523d82523d6000602084013e611464565b606091505b50509050806114a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149f9061420b565b60405180910390fd5b5050505060008060146101000a81548160ff021916908315150217905550565b6114d0612481565b73ffffffffffffffffffffffffffffffffffffffff166114ee611a5a565b73ffffffffffffffffffffffffffffffffffffffff1614611544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153b90613f18565b60405180910390fd5b6001600a60016101000a81548160ff021916908315150217905550565b600d5481565b61156f612481565b73ffffffffffffffffffffffffffffffffffffffff1661158d611a5a565b73ffffffffffffffffffffffffffffffffffffffff16146115e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115da90613f18565b60405180910390fd5b6000601054476115f39190613c78565b905060003373ffffffffffffffffffffffffffffffffffffffff168260405161161b906141aa565b60006040518083038185875af1925050503d8060008114611658576040519150601f19603f3d011682016040523d82523d6000602084013e61165d565b606091505b50509050806116a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169890614277565b60405180910390fd5b5050565b6116c083838360405180602001604052806000815250611f69565b505050565b6116ce816117e4565b73ffffffffffffffffffffffffffffffffffffffff166116ec612481565b73ffffffffffffffffffffffffffffffffffffffff161461170c57600080fd5b611715816127d6565b50565b600c5481565b600a60019054906101000a900460ff1681565b600f818154811061174157600080fd5b906000526020600020016000915090505481565b61175d612481565b73ffffffffffffffffffffffffffffffffffffffff1661177b611a5a565b73ffffffffffffffffffffffffffffffffffffffff16146117d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c890613f18565b60405180910390fd5b80600390816117e09190614443565b5050565b6000806004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361188c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188390614561565b60405180910390fd5b80915050919050565b61189d612481565b73ffffffffffffffffffffffffffffffffffffffff166118bb611a5a565b73ffffffffffffffffffffffffffffffffffffffff1614611911576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190890613f18565b60405180910390fd5b8060118190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361198b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611982906145cd565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6119da612481565b73ffffffffffffffffffffffffffffffffffffffff166119f8611a5a565b73ffffffffffffffffffffffffffffffffffffffff1614611a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4590613f18565b60405180910390fd5b611a5860006128f1565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a8b612481565b73ffffffffffffffffffffffffffffffffffffffff16611aa9611a5a565b73ffffffffffffffffffffffffffffffffffffffff1614611aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af690613f18565b60405180910390fd5b80600b8190555050565b606060028054611b1890613d57565b80601f0160208091040260200160405190810160405280929190818152602001828054611b4490613d57565b8015611b915780601f10611b6657610100808354040283529160200191611b91565b820191906000526020600020905b815481529060010190602001808311611b7457829003601f168201915b5050505050905090565b600b5481565b600060149054906101000a900460ff1615611bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be890614159565b60405180910390fd5b6001600060146101000a81548160ff0219169083151502179055506000611c16612481565b9050600b5482611c2691906145ed565b341015611c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5f9061467b565b60405180910390fd5b600d54821115611cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca4906146e7565b60405180910390fd5b600a60009054906101000a900460ff16611cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf390614753565b60405180910390fd5b60115482600c54611d0d9190613cac565b1115611d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d45906147bf565b60405180910390fd5b6000600c54905082600c6000828254611d679190613cac565b9250508190555060005b83811015611dc657611d8e838284611d899190613cac565b6129b5565b600e54600960008385611da19190613cac565b8152602001908152602001600020819055508080611dbe90613ce0565b915050611d71565b50505060008060146101000a81548160ff02191690831515021790555050565b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4b9061482b565b60405180910390fd5b80600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f459190613438565b60405180910390a35050565b60096020528060005260406000206000915090505481565b611f733383612489565b611fb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa9906140ed565b60405180910390fd5b611fbe848484846129d3565b50505050565b6060611fcf8261235c565b61200e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200590614897565b60405180910390fd5b6060600a60019054906101000a900460ff161561205757600361203084612a2f565b6040516020016120419291906149c2565b604051602081830303815290604052905061207b565b60036040516020016120699190614a3d565b60405160208183030381529060405290505b80915050919050565b61208c612481565b73ffffffffffffffffffffffffffffffffffffffff166120aa611a5a565b73ffffffffffffffffffffffffffffffffffffffff1614612100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f790613f18565b60405180910390fd5b6001600a60006101000a81548160ff021916908315150217905550565b612125612481565b73ffffffffffffffffffffffffffffffffffffffff16612143611a5a565b73ffffffffffffffffffffffffffffffffffffffff1614612199576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219090613f18565b60405180910390fd5b80600d8190555050565b600e5481565b606060036040516020016121bd9190614aab565b604051602081830303815290604052905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61226d612481565b73ffffffffffffffffffffffffffffffffffffffff1661228b611a5a565b73ffffffffffffffffffffffffffffffffffffffff16146122e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d890613f18565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234790614b19565b60405180910390fd5b612359816128f1565b50565b60008073ffffffffffffffffffffffffffffffffffffffff166004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661243b836117e4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600033905090565b60006124948261235c565b6124d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ca90614b85565b60405180910390fd5b60006124de836117e4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061254d57508373ffffffffffffffffffffffffffffffffffffffff1661253584610d01565b73ffffffffffffffffffffffffffffffffffffffff16145b8061255e575061255d81856121d1565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612587826117e4565b73ffffffffffffffffffffffffffffffffffffffff16146125dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d490614bf1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361264c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264390614c5d565b60405180910390fd5b612657838383612b8f565b6126626000826123c8565b6001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126b29190613c78565b925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127099190613cac565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061276c8282612b94565b6127768382612bfe565b808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006127e1826117e4565b90506127ef81600084612b8f565b6127fa6000836123c8565b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461284a9190613c78565b925050819055506004600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556128918183612bfe565b81600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6129cf828260405180602001604052806000815250612fbf565b5050565b6129de848484612567565b6129ea8484848461301a565b612a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2090614cc9565b60405180910390fd5b50505050565b606060008203612a76576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b8a565b600082905060005b60008214612aa8578080612a9190613ce0565b915050600a82612aa1919061403f565b9150612a7e565b60008167ffffffffffffffff811115612ac457612ac36138d6565b5b6040519080825280601f01601f191660200182016040528015612af65781602001600182028036833780820191505090505b5090505b60008514612b8357600182612b0f9190613c78565b9150600a85612b1e9190614070565b6030612b2a9190613cac565b60f81b818381518110612b4057612b3f613c1a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b7c919061403f565b9450612afa565b8093505050505b919050565b505050565b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150506001900390600052602060002001600090919091909150555050565b8173ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9690614d35565b60405180910390fd5b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050905060005b600182612cf69190613c78565b811015612fb95782600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208281548110612d4f57612d4e613c1a565b5b906000526020600020015403612e9057600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600183612dab9190613c78565b81548110612dbc57612dbb613c1a565b5b9060005260206000200154600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208281548110612e1857612e17613c1a565b5b9060005260206000200181905550600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480612e7557612e74614d55565b5b60019003818190600052602060002001600090559055612fb9565b82600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001600860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050612f1f9190613c78565b81548110612f3057612f2f613c1a565b5b906000526020600020015403612fa657600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480612f8f57612f8e614d55565b5b600190038181906000526020600020016000905590555b8080612fb190613ce0565b915050612ce9565b50505050565b612fc9838361319a565b612fd6600084848461301a565b613015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300c90614cc9565b60405180910390fd5b505050565b600061303b8473ffffffffffffffffffffffffffffffffffffffff16613371565b1561318d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02338786866040518563ffffffff1660e01b815260040161307f9493929190614dd9565b6020604051808303816000875af19250505080156130bb57506040513d601f19601f820116820180604052508101906130b89190614e3a565b60015b61313d573d80600081146130eb576040519150601f19603f3d011682016040523d82523d6000602084013e6130f0565b606091505b506000815103613135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312c90614cc9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613192565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613209576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320090614eb3565b60405180910390fd5b6132128161235c565b15613252576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161324990614f1f565b60405180910390fd5b61325e60008383612b8f565b6001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132ae9190613cac565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506133118282612b94565b808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6133cd81613398565b81146133d857600080fd5b50565b6000813590506133ea816133c4565b92915050565b6000602082840312156134065761340561338e565b5b6000613414848285016133db565b91505092915050565b60008115159050919050565b6134328161341d565b82525050565b600060208201905061344d6000830184613429565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061347e82613453565b9050919050565b61348e81613473565b811461349957600080fd5b50565b6000813590506134ab81613485565b92915050565b6000602082840312156134c7576134c661338e565b5b60006134d58482850161349c565b91505092915050565b6000819050919050565b6134f1816134de565b82525050565b600060208201905061350c60008301846134e8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561354c578082015181840152602081019050613531565b60008484015250505050565b6000601f19601f8301169050919050565b600061357482613512565b61357e818561351d565b935061358e81856020860161352e565b61359781613558565b840191505092915050565b600060208201905081810360008301526135bc8184613569565b905092915050565b6135cd816134de565b81146135d857600080fd5b50565b6000813590506135ea816135c4565b92915050565b6000602082840312156136065761360561338e565b5b6000613614848285016135db565b91505092915050565b61362681613473565b82525050565b6000602082019050613641600083018461361d565b92915050565b6000806040838503121561365e5761365d61338e565b5b600061366c8582860161349c565b925050602061367d858286016135db565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6136bc816134de565b82525050565b60006136ce83836136b3565b60208301905092915050565b6000602082019050919050565b60006136f282613687565b6136fc8185613692565b9350613707836136a3565b8060005b8381101561373857815161371f88826136c2565b975061372a836136da565b92505060018101905061370b565b5085935050505092915050565b6000602082019050818103600083015261375f81846136e7565b905092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261378c5761378b613767565b5b8235905067ffffffffffffffff8111156137a9576137a861376c565b5b6020830191508360018202830111156137c5576137c4613771565b5b9250929050565b6000806000806000608086880312156137e8576137e761338e565b5b60006137f68882890161349c565b95505060206138078882890161349c565b9450506040613818888289016135db565b935050606086013567ffffffffffffffff81111561383957613838613393565b5b61384588828901613776565b92509250509295509295909350565b61385d81613398565b82525050565b60006020820190506138786000830184613854565b92915050565b6000806000606084860312156138975761389661338e565b5b60006138a58682870161349c565b93505060206138b68682870161349c565b92505060406138c7868287016135db565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61390e82613558565b810181811067ffffffffffffffff8211171561392d5761392c6138d6565b5b80604052505050565b6000613940613384565b905061394c8282613905565b919050565b600067ffffffffffffffff82111561396c5761396b6138d6565b5b61397582613558565b9050602081019050919050565b82818337600083830152505050565b60006139a461399f84613951565b613936565b9050828152602081018484840111156139c0576139bf6138d1565b5b6139cb848285613982565b509392505050565b600082601f8301126139e8576139e7613767565b5b81356139f8848260208601613991565b91505092915050565b600060208284031215613a1757613a1661338e565b5b600082013567ffffffffffffffff811115613a3557613a34613393565b5b613a41848285016139d3565b91505092915050565b613a538161341d565b8114613a5e57600080fd5b50565b600081359050613a7081613a4a565b92915050565b60008060408385031215613a8d57613a8c61338e565b5b6000613a9b8582860161349c565b9250506020613aac85828601613a61565b9150509250929050565b600067ffffffffffffffff821115613ad157613ad06138d6565b5b613ada82613558565b9050602081019050919050565b6000613afa613af584613ab6565b613936565b905082815260208101848484011115613b1657613b156138d1565b5b613b21848285613982565b509392505050565b600082601f830112613b3e57613b3d613767565b5b8135613b4e848260208601613ae7565b91505092915050565b60008060008060808587031215613b7157613b7061338e565b5b6000613b7f8782880161349c565b9450506020613b908782880161349c565b9350506040613ba1878288016135db565b925050606085013567ffffffffffffffff811115613bc257613bc1613393565b5b613bce87828801613b29565b91505092959194509250565b60008060408385031215613bf157613bf061338e565b5b6000613bff8582860161349c565b9250506020613c108582860161349c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613c83826134de565b9150613c8e836134de565b9250828203905081811115613ca657613ca5613c49565b5b92915050565b6000613cb7826134de565b9150613cc2836134de565b9250828201905080821115613cda57613cd9613c49565b5b92915050565b6000613ceb826134de565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613d1d57613d1c613c49565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d6f57607f821691505b602082108103613d8257613d81613d28565b5b50919050565b7f4552433732313a20617070726f766564206e6f6e6578697374656e7420746b6e600082015250565b6000613dbe60208361351d565b9150613dc982613d88565b602082019050919050565b60006020820190508181036000830152613ded81613db1565b9050919050565b7f4552433732313a20617070726f76616c2063757272656e74206f776e65720000600082015250565b6000613e2a601e8361351d565b9150613e3582613df4565b602082019050919050565b60006020820190508181036000830152613e5981613e1d565b9050919050565b7f4552433732313a2063616c6c657220216f776e65722f21617070726f76656400600082015250565b6000613e96601f8361351d565b9150613ea182613e60565b602082019050919050565b60006020820190508181036000830152613ec581613e89565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f0260208361351d565b9150613f0d82613ecc565b602082019050919050565b60006020820190508181036000830152613f3181613ef5565b9050919050565b7f4469766973696f6e206279205a65726f204572726f7200000000000000000000600082015250565b6000613f6e60168361351d565b9150613f7982613f38565b602082019050919050565b60006020820190508181036000830152613f9d81613f61565b9050919050565b7f46756e6473206e656564656420746f2064697374726962757465000000000000600082015250565b6000613fda601a8361351d565b9150613fe582613fa4565b602082019050919050565b6000602082019050818103600083015261400981613fcd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061404a826134de565b9150614055836134de565b92508261406557614064614010565b5b828204905092915050565b600061407b826134de565b9150614086836134de565b92508261409657614095614010565b5b828206905092915050565b7f4552433732313a207478667220216f776e65722f617070726f76656400000000600082015250565b60006140d7601c8361351d565b91506140e2826140a1565b602082019050919050565b60006020820190508181036000830152614106816140ca565b9050919050565b7f617474656d7074207265656e746572206c6f636b65642066756e6374696f6e00600082015250565b6000614143601f8361351d565b915061414e8261410d565b602082019050919050565b6000602082019050818103600083015261417281614136565b9050919050565b600081905092915050565b50565b6000614194600083614179565b915061419f82614184565b600082019050919050565b60006141b582614187565b9150819050919050565b7f436c61696d20556e7375636365737366756c0000000000000000000000000000600082015250565b60006141f560128361351d565b9150614200826141bf565b602082019050919050565b60006020820190508181036000830152614224816141e8565b9050919050565b7f5472616e73616374696f6e20556e7375636365737366756c0000000000000000600082015250565b600061426160188361351d565b915061426c8261422b565b602082019050919050565b6000602082019050818103600083015261429081614254565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026142f97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826142bc565b61430386836142bc565b95508019841693508086168417925050509392505050565b6000819050919050565b600061434061433b614336846134de565b61431b565b6134de565b9050919050565b6000819050919050565b61435a83614325565b61436e61436682614347565b8484546142c9565b825550505050565b600090565b614383614376565b61438e818484614351565b505050565b5b818110156143b2576143a760008261437b565b600181019050614394565b5050565b601f8211156143f7576143c881614297565b6143d1846142ac565b810160208510156143e0578190505b6143f46143ec856142ac565b830182614393565b50505b505050565b600082821c905092915050565b600061441a600019846008026143fc565b1980831691505092915050565b60006144338383614409565b9150826002028217905092915050565b61444c82613512565b67ffffffffffffffff811115614465576144646138d6565b5b61446f8254613d57565b61447a8282856143b6565b600060209050601f8311600181146144ad576000841561449b578287015190505b6144a58582614427565b86555061450d565b601f1984166144bb86614297565b60005b828110156144e3578489015182556001820191506020850194506020810190506144be565b8683101561450057848901516144fc601f891682614409565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a206f776e207175657279206e6f6e657869737420746b6e0000600082015250565b600061454b601e8361351d565b915061455682614515565b602082019050919050565b6000602082019050818103600083015261457a8161453e565b9050919050565b7f4552433732313a2062616c2071727920666f72207a65726f2061646472657373600082015250565b60006145b760208361351d565b91506145c282614581565b602082019050919050565b600060208201905081810360008301526145e6816145aa565b9050919050565b60006145f8826134de565b9150614603836134de565b9250828202614611816134de565b9150828204841483151761462857614627613c49565b5b5092915050565b7f4d696e743a20496e73756666696369656e742046756e64730000000000000000600082015250565b600061466560188361351d565b91506146708261462f565b602082019050919050565b6000602082019050818103600083015261469481614658565b9050919050565b7f4d696e743a2041626f7665205472786e205468726573686f6c64210000000000600082015250565b60006146d1601b8361351d565b91506146dc8261469b565b602082019050919050565b60006020820190508181036000830152614700816146c4565b9050919050565b7f4d696e743a204e6f742043757272656e746c79204f70656e0000000000000000600082015250565b600061473d60188361351d565b915061474882614707565b602082019050919050565b6000602082019050818103600083015261476c81614730565b9050919050565b7f4e6f7420456e6f75676820537570706c79000000000000000000000000000000600082015250565b60006147a960118361351d565b91506147b482614773565b602082019050919050565b600060208201905081810360008301526147d88161479c565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061481560198361351d565b9150614820826147df565b602082019050919050565b6000602082019050818103600083015261484481614808565b9050919050565b7f4552433732314d657461646174613a205552492030783020746f6b656e000000600082015250565b6000614881601d8361351d565b915061488c8261484b565b602082019050919050565b600060208201905081810360008301526148b081614874565b9050919050565b600081905092915050565b600081546148cf81613d57565b6148d981866148b7565b945060018216600081146148f457600181146149095761493c565b60ff198316865281151582028601935061493c565b61491285614297565b60005b8381101561493457815481890152600182019150602081019050614915565b838801955050505b50505092915050565b600061495082613512565b61495a81856148b7565b935061496a81856020860161352e565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006149ac6005836148b7565b91506149b782614976565b600582019050919050565b60006149ce82856148c2565b91506149da8284614945565b91506149e58261499f565b91508190509392505050565b7f6d657461646174612e6a736f6e00000000000000000000000000000000000000600082015250565b6000614a27600d836148b7565b9150614a32826149f1565b600d82019050919050565b6000614a4982846148c2565b9150614a5482614a1a565b915081905092915050565b7f636f6e74726163742e6a736f6e00000000000000000000000000000000000000600082015250565b6000614a95600d836148b7565b9150614aa082614a5f565b600d82019050919050565b6000614ab782846148c2565b9150614ac282614a88565b915081905092915050565b7f4f776e61626c653a206e6577206f776e65722069732030782061646472657373600082015250565b6000614b0360208361351d565b9150614b0e82614acd565b602082019050919050565b60006020820190508181036000830152614b3281614af6565b9050919050565b7f4552433732313a206f70207175657279206e6f6e6578697374656e7420746b6e600082015250565b6000614b6f60208361351d565b9150614b7a82614b39565b602082019050919050565b60006020820190508181036000830152614b9e81614b62565b9050919050565b7f4552433732313a207478667220746f6b656e206e6f74206f776e656400000000600082015250565b6000614bdb601c8361351d565b9150614be682614ba5565b602082019050919050565b60006020820190508181036000830152614c0a81614bce565b9050919050565b7f4552433732313a207478667220746f2030783020616464726573730000000000600082015250565b6000614c47601b8361351d565b9150614c5282614c11565b602082019050919050565b60006020820190508181036000830152614c7681614c3a565b9050919050565b7f7478667220746f206e6f6e204552433732315265636965766572000000000000600082015250565b6000614cb3601a8361351d565b9150614cbe82614c7d565b602082019050919050565b60006020820190508181036000830152614ce281614ca6565b9050919050565b7f496e76616c69642073656172636820737472696e670000000000000000000000600082015250565b6000614d1f60158361351d565b9150614d2a82614ce9565b602082019050919050565b60006020820190508181036000830152614d4e81614d12565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000614dab82614d84565b614db58185614d8f565b9350614dc581856020860161352e565b614dce81613558565b840191505092915050565b6000608082019050614dee600083018761361d565b614dfb602083018661361d565b614e0860408301856134e8565b8181036060830152614e1a8184614da0565b905095945050505050565b600081519050614e34816133c4565b92915050565b600060208284031215614e5057614e4f61338e565b5b6000614e5e84828501614e25565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614e9d60208361351d565b9150614ea882614e67565b602082019050919050565b60006020820190508181036000830152614ecc81614e90565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614f09601c8361351d565b9150614f1482614ed3565b602082019050919050565b60006020820190508181036000830152614f3881614efc565b905091905056fea264697066735822122040ba2a6e083d95e42c4c13dd7ab26c72d7440c887c22d49b757ed4577f05163464736f6c63430008110033

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.