ETH Price: $3,475.15 (+1.65%)
Gas: 13 Gwei

Token

Wobblebug (WOB)
 

Overview

Max Total Supply

1,250 WOB

Holders

707

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 WOB
0x2d07cd174a5041bac0735cc55e49124fe86c4bf7
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Wobblebug is the first NFT-powered music artist packed with real world utility and also a bad-ass virtual space-alien Metaverse DJ! By holding a Wobblebug NFT you become part of the Wobblebug family, helping decide the future of Wobblebug’s career, remix music, release on Wobb...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Wobblebug

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : Wobblebug.sol
// SPDX-License-Identifier: MIT


//  o       o  o-o  o--o  o--o  o     o--o o--o  o   o  o-o  
//  |       | o   o |   | |   | |     |    |   | |   | o     
//  o   o   o |   | O--o  O--o  |     O-o  O--o  |   | |  -o 
//   \ / \ /  o   o |   | |   | |     |    |   | |   | o   | 
//    o   o    o-o  o--o  o--o  O---o o--o o--o   o-o   o-o  

// www.wobblebug.space
// www.twitter.com/wobblebug

// Wobblebug Team:

// Co-Founder | Music Producer: Kris Barman | @Wuki
// Co-Founder | Creative Director: Florian Tappeser | @digitalflowercg
// Project Manager | Blockchain Dev: Nick Zeigler | @AlphaMediaLabs
// 2D Artist | Co-Music Producer: Levi | @Rawtek
// Community Driver: Gabe Perez | @gabe__perez
// Creative Manager: JSTJR | @JSTJR
// Brand Manager: Courtney Roxanne | @roxanneonfilm
// Community Driver: Kaku | @Kakuberry

// Launched with Top Dog LaunchPad: https://topdogbeachclub.com/launchpad/

// By minting Wobblebugs, you are agreeing to our Terms of Service on our website
// as https://www.wobblebug.space/terms

pragma solidity ^0.8.9;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

contract Wobblebug is ERC721Enumerable, Ownable, ReentrancyGuard {
    enum WhitelisterStatus { Invalid, Unclaimed, Claimed }
    struct SaleConfig {
        uint16 MAX_WOBBLEBUGS;
        uint8 DEV_RESERVED;
        uint128 WOBBLEBUG_PRICE;
        uint8 PUBLIC_SALE_MAX_PURCHASE;
        uint8 PRE_SALE_MAX_PURCHASE;
        bool PUBLIC_SALE_IS_ACTIVE;
        bool PRE_SALE_IS_ACTIVE;
    }

    string public WOBBLEBUGS_PROVENANCE;
    SaleConfig private _config;
    bool private _canReserve = true;
    string private _baseTokenURI;

    mapping (address => WhitelisterStatus) private _whitelistedAddresses;

    constructor (string memory name, string memory symbol, string memory baseTokenURI) ERC721(name, symbol) {
        _config = SaleConfig(
            10000, // supply
            150, // team reserve
            0.063 ether, // mint price
            20, // max mint public
            10, // max mint presale
            false, // public sale active
            false // pre sale active
        );
        _baseTokenURI = baseTokenURI;
    }
    
    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;

        payable(0x435Cd3902d1b4f4E842F2C0fd5028EEE71dd099C).transfer(((balance * 50) / 10) / 100);
        payable(0x0cB121E3e18c364F318A1FB97bd304e5855c8250).transfer(((balance * 50) / 10) / 100);
        payable(0x927e093B623F90a0311C03009aA1D1DF4cf08634).transfer(((balance * 200) / 10) / 100);
        payable(0x0048D02963b97445a012Ad6D44Bd38A0239C5B88).transfer(((balance * 200) / 10) / 100);
        payable(0x491dc513212E0b896690B6Fb4483929f0Abde975).transfer(((balance * 200) / 10) / 100);
        payable(0x0f075aC7186A8D43c1b6A819B5BCEff7c936d7Cf).transfer(((balance * 125) / 10) / 100);
        payable(0xe1Db3822239a27451b68a0cfFC19a9160EE36f75).transfer(((balance * 175) / 10) / 100);
    }

    function emergencyWithdraw() external onlyOwner {
        require(payable(msg.sender).send(address(this).balance), ":-(");
    }
    
    function setProvenanceHash(string memory provenanceHash) external onlyOwner {
        WOBBLEBUGS_PROVENANCE = provenanceHash;
    }

    function setBaseTokenURI(string memory baseTokenURI) external onlyOwner {
        _baseTokenURI = baseTokenURI;
    }

    function togglePublicSale() external onlyOwner {
        _config.PUBLIC_SALE_IS_ACTIVE = !_config.PUBLIC_SALE_IS_ACTIVE;
    }

    function togglePreSale() external onlyOwner {
        _config.PRE_SALE_IS_ACTIVE = !_config.PRE_SALE_IS_ACTIVE;
    }

    function isPublicSaleActive() external view returns (bool status) {
        return _config.PUBLIC_SALE_IS_ACTIVE;
    }

    function isPreSaleActive() external view returns (bool status) {
        return _config.PRE_SALE_IS_ACTIVE;
    }

    function isWhitelisted(address wallet) external view returns (bool status) {
        return _whitelistedAddresses[wallet] != WhitelisterStatus.Invalid;
    }
    
    function updateWhitelist(address[] memory addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            _whitelistedAddresses[addresses[i]] = WhitelisterStatus.Unclaimed;
        }
    }
    
    function tokensOfOwner(address _owner) external view returns(uint256[] memory ) {
        uint256 tokenCount = balanceOf(_owner);

        if (tokenCount == 0) {
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);

            for (uint256 index = 0; index < tokenCount; index++) {
                result[index] = tokenOfOwnerByIndex(_owner, index);
            }

            return result;
        }
    }
    
    function mintWobblebugs(uint numberOfTokens) external payable nonReentrant() {
        require(_config.PUBLIC_SALE_IS_ACTIVE || _config.PRE_SALE_IS_ACTIVE, "Sale must be active to mint Wobblebugs");
        require(msg.value == numberOfTokens * _config.WOBBLEBUG_PRICE, "Ether value sent is not correct");
        
        if (_config.PRE_SALE_IS_ACTIVE) {
            require(numberOfTokens > 0 && numberOfTokens <= _config.PRE_SALE_MAX_PURCHASE, "Can only mint max 10 tokens at a time");
            require(_whitelistedAddresses[msg.sender] != WhitelisterStatus.Claimed, "You've already minted");
            require(_whitelistedAddresses[msg.sender] == WhitelisterStatus.Unclaimed, "You are not whitelisted, wait for the public mint");
        }
        else if (_config.PUBLIC_SALE_IS_ACTIVE) {
            require(numberOfTokens > 0 && numberOfTokens <= _config.PUBLIC_SALE_MAX_PURCHASE, "Can only mint max 20 tokens at a time");
        }

        _mintMultiple(msg.sender, numberOfTokens);
        if (_config.PRE_SALE_IS_ACTIVE) _whitelistedAddresses[msg.sender] = WhitelisterStatus.Claimed;
    }

    function reserve(address to, uint256 amount) external onlyOwner {
        require(amount > 0 && amount <= _config.DEV_RESERVED);

        _mintMultiple(to, amount);
        _config.DEV_RESERVED = _config.DEV_RESERVED - uint8(amount);
    }

    function _mintMultiple(address owner, uint256 amount) private {
        require(totalSupply() + amount <= _config.MAX_WOBBLEBUGS, "Mint would exceed max supply of Wobblebugs");

        for (uint256 i = 0; i < amount; i++) {
            _safeMint(owner, totalSupply());
        }
    }

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

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

pragma solidity ^0.8.0;

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

File 3 of 14 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 4 of 14 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 5 of 14 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 6 of 14 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 14 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 8 of 14 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 9 of 14 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 10 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 12 of 14 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 13 of 14 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseTokenURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"WOBBLEBUGS_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPreSaleActive","outputs":[{"internalType":"bool","name":"status","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"status","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"status","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintWobblebugs","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"updateWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600e60006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50604051620056d0380380620056d083398181016040528101906200005291906200055b565b828281600090805190602001906200006c9291906200030e565b508060019080519060200190620000859291906200030e565b505050620000a86200009c6200024060201b60201c565b6200024860201b60201c565b6001600b819055506040518060e0016040528061271061ffff168152602001609660ff16815260200166dfd22a8cd980006fffffffffffffffffffffffffffffffff168152602001601460ff168152602001600a60ff16815260200160001515815260200160001515815250600d60008201518160000160006101000a81548161ffff021916908361ffff16021790555060208201518160000160026101000a81548160ff021916908360ff16021790555060408201518160000160036101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060608201518160000160136101000a81548160ff021916908360ff16021790555060808201518160000160146101000a81548160ff021916908360ff16021790555060a08201518160000160156101000a81548160ff02191690831515021790555060c08201518160000160166101000a81548160ff02191690831515021790555090505080600f9080519060200190620002369291906200030e565b5050505062000679565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200031c9062000643565b90600052602060002090601f0160209004810192826200034057600085556200038c565b82601f106200035b57805160ff19168380011785556200038c565b828001600101855582156200038c579182015b828111156200038b5782518255916020019190600101906200036e565b5b5090506200039b91906200039f565b5090565b5b80821115620003ba576000816000905550600101620003a0565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200042782620003dc565b810181811067ffffffffffffffff82111715620004495762000448620003ed565b5b80604052505050565b60006200045e620003be565b90506200046c82826200041c565b919050565b600067ffffffffffffffff8211156200048f576200048e620003ed565b5b6200049a82620003dc565b9050602081019050919050565b60005b83811015620004c7578082015181840152602081019050620004aa565b83811115620004d7576000848401525b50505050565b6000620004f4620004ee8462000471565b62000452565b905082815260208101848484011115620005135762000512620003d7565b5b62000520848285620004a7565b509392505050565b600082601f83011262000540576200053f620003d2565b5b815162000552848260208601620004dd565b91505092915050565b600080600060608486031215620005775762000576620003c8565b5b600084015167ffffffffffffffff811115620005985762000597620003cd565b5b620005a68682870162000528565b935050602084015167ffffffffffffffff811115620005ca57620005c9620003cd565b5b620005d88682870162000528565b925050604084015167ffffffffffffffff811115620005fc57620005fb620003cd565b5b6200060a8682870162000528565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200065c57607f821691505b6020821081141562000673576200067262000614565b5b50919050565b61504780620006896000396000f3fe6080604052600436106101ee5760003560e01c80634fdcee971161010d578063a22cb465116100a0578063cc47a40b1161006f578063cc47a40b146106ee578063db2e21bc14610717578063e222c7f91461072e578063e985e9c514610745578063f2fde38b14610782576101ee565b8063a22cb46514610648578063b88d4fde14610671578063c87b56dd1461069a578063ca3cb522146106d7576101ee565b80638462151c116100dc5780638462151c1461058a5780638da5cb5b146105c757806395d89b41146105f25780639d044ed31461061d576101ee565b80634fdcee97146104ce5780636352211e146104f957806370a0823114610536578063715018a614610573576101ee565b806323b872dd116101855780633af32abf116101545780633af32abf146104145780633ccfd60b1461045157806342842e0e146104685780634f6ccce714610491576101ee565b806323b872dd1461035c5780632f745c591461038557806330176e13146103c257806335377214146103eb576101ee565b806310969523116101c157806310969523146102c157806314b8c2d2146102ea57806318160ddd146103065780631e84c41314610331576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a6004803603810190610215919061354a565b6107ab565b6040516102279190613592565b60405180910390f35b34801561023c57600080fd5b50610245610825565b6040516102529190613646565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d919061369e565b6108b7565b60405161028f919061370c565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190613753565b61093c565b005b3480156102cd57600080fd5b506102e860048036038101906102e391906138c8565b610a54565b005b61030460048036038101906102ff919061369e565b610aea565b005b34801561031257600080fd5b5061031b610f1f565b6040516103289190613920565b60405180910390f35b34801561033d57600080fd5b50610346610f2c565b6040516103539190613592565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e919061393b565b610f46565b005b34801561039157600080fd5b506103ac60048036038101906103a79190613753565b610fa6565b6040516103b99190613920565b60405180910390f35b3480156103ce57600080fd5b506103e960048036038101906103e491906138c8565b61104b565b005b3480156103f757600080fd5b50610412600480360381019061040d9190613a56565b6110e1565b005b34801561042057600080fd5b5061043b60048036038101906104369190613a9f565b611202565b6040516104489190613592565b60405180910390f35b34801561045d57600080fd5b5061046661127f565b005b34801561047457600080fd5b5061048f600480360381019061048a919061393b565b61167b565b005b34801561049d57600080fd5b506104b860048036038101906104b3919061369e565b61169b565b6040516104c59190613920565b60405180910390f35b3480156104da57600080fd5b506104e361170c565b6040516104f09190613646565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b919061369e565b61179a565b60405161052d919061370c565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190613a9f565b61184c565b60405161056a9190613920565b60405180910390f35b34801561057f57600080fd5b50610588611904565b005b34801561059657600080fd5b506105b160048036038101906105ac9190613a9f565b61198c565b6040516105be9190613b8a565b60405180910390f35b3480156105d357600080fd5b506105dc611a96565b6040516105e9919061370c565b60405180910390f35b3480156105fe57600080fd5b50610607611ac0565b6040516106149190613646565b60405180910390f35b34801561062957600080fd5b50610632611b52565b60405161063f9190613592565b60405180910390f35b34801561065457600080fd5b5061066f600480360381019061066a9190613bd8565b611b6c565b005b34801561067d57600080fd5b5061069860048036038101906106939190613cb9565b611ced565b005b3480156106a657600080fd5b506106c160048036038101906106bc919061369e565b611d4f565b6040516106ce9190613646565b60405180910390f35b3480156106e357600080fd5b506106ec611df6565b005b3480156106fa57600080fd5b5061071560048036038101906107109190613753565b611ea4565b005b34801561072357600080fd5b5061072c611f97565b005b34801561073a57600080fd5b50610743612089565b005b34801561075157600080fd5b5061076c60048036038101906107679190613d3c565b612137565b6040516107799190613592565b60405180910390f35b34801561078e57600080fd5b506107a960048036038101906107a49190613a9f565b6121cb565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061081e575061081d826122c3565b5b9050919050565b60606000805461083490613dab565b80601f016020809104026020016040519081016040528092919081815260200182805461086090613dab565b80156108ad5780601f10610882576101008083540402835291602001916108ad565b820191906000526020600020905b81548152906001019060200180831161089057829003601f168201915b5050505050905090565b60006108c2826123a5565b610901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f890613e4f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109478261179a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109af90613ee1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109d7612411565b73ffffffffffffffffffffffffffffffffffffffff161480610a065750610a0581610a00612411565b612137565b5b610a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3c90613f73565b60405180910390fd5b610a4f8383612419565b505050565b610a5c612411565b73ffffffffffffffffffffffffffffffffffffffff16610a7a611a96565b73ffffffffffffffffffffffffffffffffffffffff1614610ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac790613fdf565b60405180910390fd5b80600c9080519060200190610ae692919061343b565b5050565b6002600b541415610b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b279061404b565b60405180910390fd5b6002600b81905550600d60000160159054906101000a900460ff1680610b655750600d60000160169054906101000a900460ff165b610ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9b906140dd565b60405180910390fd5b600d60000160039054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681610be3919061412c565b3414610c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1b906141d2565b60405180910390fd5b600d60000160169054906101000a900460ff1615610e0b57600081118015610c615750600d60000160149054906101000a900460ff1660ff168111155b610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9790614264565b60405180910390fd5b600280811115610cb357610cb2614284565b5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166002811115610d1257610d11614284565b5b1415610d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4a906142ff565b60405180910390fd5b60016002811115610d6757610d66614284565b5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166002811115610dc657610dc5614284565b5b14610e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfd90614391565b60405180910390fd5b610e89565b600d60000160159054906101000a900460ff1615610e8857600081118015610e485750600d60000160139054906101000a900460ff1660ff168111155b610e87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7e90614423565b60405180910390fd5b5b5b610e9333826124d2565b600d60000160169054906101000a900460ff1615610f14576002601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690836002811115610f0e57610f0d614284565b5b02179055505b6001600b8190555050565b6000600880549050905090565b6000600d60000160159054906101000a900460ff16905090565b610f57610f51612411565b82612572565b610f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8d906144b5565b60405180910390fd5b610fa1838383612650565b505050565b6000610fb18361184c565b8210610ff2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe990614547565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b611053612411565b73ffffffffffffffffffffffffffffffffffffffff16611071611a96565b73ffffffffffffffffffffffffffffffffffffffff16146110c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110be90613fdf565b60405180910390fd5b80600f90805190602001906110dd92919061343b565b5050565b6110e9612411565b73ffffffffffffffffffffffffffffffffffffffff16611107611a96565b73ffffffffffffffffffffffffffffffffffffffff161461115d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115490613fdf565b60405180910390fd5b60005b81518110156111fe5760016010600084848151811061118257611181614567565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360028111156111e6576111e5614284565b5b021790555080806111f690614596565b915050611160565b5050565b600080600281111561121757611216614284565b5b601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16600281111561127657611275614284565b5b14159050919050565b611287612411565b73ffffffffffffffffffffffffffffffffffffffff166112a5611a96565b73ffffffffffffffffffffffffffffffffffffffff16146112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f290613fdf565b60405180910390fd5b600047905073435cd3902d1b4f4e842f2c0fd5028eee71dd099c73ffffffffffffffffffffffffffffffffffffffff166108fc6064600a60328561133f919061412c565b611349919061460e565b611353919061460e565b9081150290604051600060405180830381858888f1935050505015801561137e573d6000803e3d6000fd5b50730cb121e3e18c364f318a1fb97bd304e5855c825073ffffffffffffffffffffffffffffffffffffffff166108fc6064600a6032856113be919061412c565b6113c8919061460e565b6113d2919061460e565b9081150290604051600060405180830381858888f193505050501580156113fd573d6000803e3d6000fd5b5073927e093b623f90a0311c03009aa1d1df4cf0863473ffffffffffffffffffffffffffffffffffffffff166108fc6064600a60c88561143d919061412c565b611447919061460e565b611451919061460e565b9081150290604051600060405180830381858888f1935050505015801561147c573d6000803e3d6000fd5b507248d02963b97445a012ad6d44bd38a0239c5b8873ffffffffffffffffffffffffffffffffffffffff166108fc6064600a60c8856114bb919061412c565b6114c5919061460e565b6114cf919061460e565b9081150290604051600060405180830381858888f193505050501580156114fa573d6000803e3d6000fd5b5073491dc513212e0b896690b6fb4483929f0abde97573ffffffffffffffffffffffffffffffffffffffff166108fc6064600a60c88561153a919061412c565b611544919061460e565b61154e919061460e565b9081150290604051600060405180830381858888f19350505050158015611579573d6000803e3d6000fd5b50730f075ac7186a8d43c1b6a819b5bceff7c936d7cf73ffffffffffffffffffffffffffffffffffffffff166108fc6064600a607d856115b9919061412c565b6115c3919061460e565b6115cd919061460e565b9081150290604051600060405180830381858888f193505050501580156115f8573d6000803e3d6000fd5b5073e1db3822239a27451b68a0cffc19a9160ee36f7573ffffffffffffffffffffffffffffffffffffffff166108fc6064600a60af85611638919061412c565b611642919061460e565b61164c919061460e565b9081150290604051600060405180830381858888f19350505050158015611677573d6000803e3d6000fd5b5050565b61169683838360405180602001604052806000815250611ced565b505050565b60006116a5610f1f565b82106116e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116dd906146b1565b60405180910390fd5b600882815481106116fa576116f9614567565b5b90600052602060002001549050919050565b600c805461171990613dab565b80601f016020809104026020016040519081016040528092919081815260200182805461174590613dab565b80156117925780601f1061176757610100808354040283529160200191611792565b820191906000526020600020905b81548152906001019060200180831161177557829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183a90614743565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b4906147d5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61190c612411565b73ffffffffffffffffffffffffffffffffffffffff1661192a611a96565b73ffffffffffffffffffffffffffffffffffffffff1614611980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197790613fdf565b60405180910390fd5b61198a60006128ac565b565b606060006119998361184c565b905060008114156119f657600067ffffffffffffffff8111156119bf576119be61379d565b5b6040519080825280602002602001820160405280156119ed5781602001602082028036833780820191505090505b50915050611a91565b60008167ffffffffffffffff811115611a1257611a1161379d565b5b604051908082528060200260200182016040528015611a405781602001602082028036833780820191505090505b50905060005b82811015611a8a57611a588582610fa6565b828281518110611a6b57611a6a614567565b5b6020026020010181815250508080611a8290614596565b915050611a46565b5080925050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611acf90613dab565b80601f0160208091040260200160405190810160405280929190818152602001828054611afb90613dab565b8015611b485780601f10611b1d57610100808354040283529160200191611b48565b820191906000526020600020905b815481529060010190602001808311611b2b57829003601f168201915b5050505050905090565b6000600d60000160169054906101000a900460ff16905090565b611b74612411565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd990614841565b60405180910390fd5b8060056000611bef612411565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c9c612411565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ce19190613592565b60405180910390a35050565b611cfe611cf8612411565b83612572565b611d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d34906144b5565b60405180910390fd5b611d4984848484612972565b50505050565b6060611d5a826123a5565b611d99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d90906148d3565b60405180910390fd5b6000611da36129ce565b90506000815111611dc35760405180602001604052806000815250611dee565b80611dcd84612a60565b604051602001611dde92919061492f565b6040516020818303038152906040525b915050919050565b611dfe612411565b73ffffffffffffffffffffffffffffffffffffffff16611e1c611a96565b73ffffffffffffffffffffffffffffffffffffffff1614611e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6990613fdf565b60405180910390fd5b600d60000160169054906101000a900460ff1615600d60000160166101000a81548160ff021916908315150217905550565b611eac612411565b73ffffffffffffffffffffffffffffffffffffffff16611eca611a96565b73ffffffffffffffffffffffffffffffffffffffff1614611f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1790613fdf565b60405180910390fd5b600081118015611f455750600d60000160029054906101000a900460ff1660ff168111155b611f4e57600080fd5b611f5882826124d2565b80600d60000160029054906101000a900460ff16611f769190614960565b600d60000160026101000a81548160ff021916908360ff1602179055505050565b611f9f612411565b73ffffffffffffffffffffffffffffffffffffffff16611fbd611a96565b73ffffffffffffffffffffffffffffffffffffffff1614612013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200a90613fdf565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050612087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207e906149e0565b60405180910390fd5b565b612091612411565b73ffffffffffffffffffffffffffffffffffffffff166120af611a96565b73ffffffffffffffffffffffffffffffffffffffff1614612105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fc90613fdf565b60405180910390fd5b600d60000160159054906101000a900460ff1615600d60000160156101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6121d3612411565b73ffffffffffffffffffffffffffffffffffffffff166121f1611a96565b73ffffffffffffffffffffffffffffffffffffffff1614612247576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223e90613fdf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ae90614a72565b60405180910390fd5b6122c0816128ac565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061238e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061239e575061239d82612bc1565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661248c8361179a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600d60000160009054906101000a900461ffff1661ffff16816124f3610f1f565b6124fd9190614a92565b111561253e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253590614b5a565b60405180910390fd5b60005b8181101561256d5761255a83612555610f1f565b612c2b565b808061256590614596565b915050612541565b505050565b600061257d826123a5565b6125bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b390614bec565b60405180910390fd5b60006125c78361179a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061263657508373ffffffffffffffffffffffffffffffffffffffff1661261e846108b7565b73ffffffffffffffffffffffffffffffffffffffff16145b8061264757506126468185612137565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166126708261179a565b73ffffffffffffffffffffffffffffffffffffffff16146126c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bd90614c7e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612736576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272d90614d10565b60405180910390fd5b612741838383612c49565b61274c600082612419565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461279c9190614d30565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127f39190614a92565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61297d848484612650565b61298984848484612d5d565b6129c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129bf90614dd6565b60405180910390fd5b50505050565b6060600f80546129dd90613dab565b80601f0160208091040260200160405190810160405280929190818152602001828054612a0990613dab565b8015612a565780601f10612a2b57610100808354040283529160200191612a56565b820191906000526020600020905b815481529060010190602001808311612a3957829003601f168201915b5050505050905090565b60606000821415612aa8576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bbc565b600082905060005b60008214612ada578080612ac390614596565b915050600a82612ad3919061460e565b9150612ab0565b60008167ffffffffffffffff811115612af657612af561379d565b5b6040519080825280601f01601f191660200182016040528015612b285781602001600182028036833780820191505090505b5090505b60008514612bb557600182612b419190614d30565b9150600a85612b509190614df6565b6030612b5c9190614a92565b60f81b818381518110612b7257612b71614567565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612bae919061460e565b9450612b2c565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612c45828260405180602001604052806000815250612ef4565b5050565b612c54838383612f4f565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c9757612c9281612f54565b612cd6565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612cd557612cd48382612f9d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d1957612d148161310a565b612d58565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612d5757612d5682826131db565b5b5b505050565b6000612d7e8473ffffffffffffffffffffffffffffffffffffffff1661325a565b15612ee7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612da7612411565b8786866040518563ffffffff1660e01b8152600401612dc99493929190614e7c565b602060405180830381600087803b158015612de357600080fd5b505af1925050508015612e1457506040513d601f19601f82011682018060405250810190612e119190614edd565b60015b612e97573d8060008114612e44576040519150601f19603f3d011682016040523d82523d6000602084013e612e49565b606091505b50600081511415612e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8690614dd6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612eec565b600190505b949350505050565b612efe838361326d565b612f0b6000848484612d5d565b612f4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4190614dd6565b60405180910390fd5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612faa8461184c565b612fb49190614d30565b9050600060076000848152602001908152602001600020549050818114613099576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061311e9190614d30565b905060006009600084815260200190815260200160002054905060006008838154811061314e5761314d614567565b5b9060005260206000200154905080600883815481106131705761316f614567565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806131bf576131be614f0a565b5b6001900381819060005260206000200160009055905550505050565b60006131e68361184c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132d490614f85565b60405180910390fd5b6132e6816123a5565b15613326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161331d90614ff1565b60405180910390fd5b61333260008383612c49565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133829190614a92565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461344790613dab565b90600052602060002090601f01602090048101928261346957600085556134b0565b82601f1061348257805160ff19168380011785556134b0565b828001600101855582156134b0579182015b828111156134af578251825591602001919060010190613494565b5b5090506134bd91906134c1565b5090565b5b808211156134da5760008160009055506001016134c2565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613527816134f2565b811461353257600080fd5b50565b6000813590506135448161351e565b92915050565b6000602082840312156135605761355f6134e8565b5b600061356e84828501613535565b91505092915050565b60008115159050919050565b61358c81613577565b82525050565b60006020820190506135a76000830184613583565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156135e75780820151818401526020810190506135cc565b838111156135f6576000848401525b50505050565b6000601f19601f8301169050919050565b6000613618826135ad565b61362281856135b8565b93506136328185602086016135c9565b61363b816135fc565b840191505092915050565b60006020820190508181036000830152613660818461360d565b905092915050565b6000819050919050565b61367b81613668565b811461368657600080fd5b50565b60008135905061369881613672565b92915050565b6000602082840312156136b4576136b36134e8565b5b60006136c284828501613689565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006136f6826136cb565b9050919050565b613706816136eb565b82525050565b600060208201905061372160008301846136fd565b92915050565b613730816136eb565b811461373b57600080fd5b50565b60008135905061374d81613727565b92915050565b6000806040838503121561376a576137696134e8565b5b60006137788582860161373e565b925050602061378985828601613689565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6137d5826135fc565b810181811067ffffffffffffffff821117156137f4576137f361379d565b5b80604052505050565b60006138076134de565b905061381382826137cc565b919050565b600067ffffffffffffffff8211156138335761383261379d565b5b61383c826135fc565b9050602081019050919050565b82818337600083830152505050565b600061386b61386684613818565b6137fd565b90508281526020810184848401111561388757613886613798565b5b613892848285613849565b509392505050565b600082601f8301126138af576138ae613793565b5b81356138bf848260208601613858565b91505092915050565b6000602082840312156138de576138dd6134e8565b5b600082013567ffffffffffffffff8111156138fc576138fb6134ed565b5b6139088482850161389a565b91505092915050565b61391a81613668565b82525050565b60006020820190506139356000830184613911565b92915050565b600080600060608486031215613954576139536134e8565b5b60006139628682870161373e565b93505060206139738682870161373e565b925050604061398486828701613689565b9150509250925092565b600067ffffffffffffffff8211156139a9576139a861379d565b5b602082029050602081019050919050565b600080fd5b60006139d26139cd8461398e565b6137fd565b905080838252602082019050602084028301858111156139f5576139f46139ba565b5b835b81811015613a1e5780613a0a888261373e565b8452602084019350506020810190506139f7565b5050509392505050565b600082601f830112613a3d57613a3c613793565b5b8135613a4d8482602086016139bf565b91505092915050565b600060208284031215613a6c57613a6b6134e8565b5b600082013567ffffffffffffffff811115613a8a57613a896134ed565b5b613a9684828501613a28565b91505092915050565b600060208284031215613ab557613ab46134e8565b5b6000613ac38482850161373e565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613b0181613668565b82525050565b6000613b138383613af8565b60208301905092915050565b6000602082019050919050565b6000613b3782613acc565b613b418185613ad7565b9350613b4c83613ae8565b8060005b83811015613b7d578151613b648882613b07565b9750613b6f83613b1f565b925050600181019050613b50565b5085935050505092915050565b60006020820190508181036000830152613ba48184613b2c565b905092915050565b613bb581613577565b8114613bc057600080fd5b50565b600081359050613bd281613bac565b92915050565b60008060408385031215613bef57613bee6134e8565b5b6000613bfd8582860161373e565b9250506020613c0e85828601613bc3565b9150509250929050565b600067ffffffffffffffff821115613c3357613c3261379d565b5b613c3c826135fc565b9050602081019050919050565b6000613c5c613c5784613c18565b6137fd565b905082815260208101848484011115613c7857613c77613798565b5b613c83848285613849565b509392505050565b600082601f830112613ca057613c9f613793565b5b8135613cb0848260208601613c49565b91505092915050565b60008060008060808587031215613cd357613cd26134e8565b5b6000613ce18782880161373e565b9450506020613cf28782880161373e565b9350506040613d0387828801613689565b925050606085013567ffffffffffffffff811115613d2457613d236134ed565b5b613d3087828801613c8b565b91505092959194509250565b60008060408385031215613d5357613d526134e8565b5b6000613d618582860161373e565b9250506020613d728582860161373e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613dc357607f821691505b60208210811415613dd757613dd6613d7c565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613e39602c836135b8565b9150613e4482613ddd565b604082019050919050565b60006020820190508181036000830152613e6881613e2c565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ecb6021836135b8565b9150613ed682613e6f565b604082019050919050565b60006020820190508181036000830152613efa81613ebe565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613f5d6038836135b8565b9150613f6882613f01565b604082019050919050565b60006020820190508181036000830152613f8c81613f50565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613fc96020836135b8565b9150613fd482613f93565b602082019050919050565b60006020820190508181036000830152613ff881613fbc565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614035601f836135b8565b915061404082613fff565b602082019050919050565b6000602082019050818103600083015261406481614028565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e7420576f626260008201527f6c65627567730000000000000000000000000000000000000000000000000000602082015250565b60006140c76026836135b8565b91506140d28261406b565b604082019050919050565b600060208201905081810360008301526140f6816140ba565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061413782613668565b915061414283613668565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561417b5761417a6140fd565b5b828202905092915050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b60006141bc601f836135b8565b91506141c782614186565b602082019050919050565b600060208201905081810360008301526141eb816141af565b9050919050565b7f43616e206f6e6c79206d696e74206d617820313020746f6b656e73206174206160008201527f2074696d65000000000000000000000000000000000000000000000000000000602082015250565b600061424e6025836135b8565b9150614259826141f2565b604082019050919050565b6000602082019050818103600083015261427d81614241565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f596f7527766520616c7265616479206d696e7465640000000000000000000000600082015250565b60006142e96015836135b8565b91506142f4826142b3565b602082019050919050565b60006020820190508181036000830152614318816142dc565b9050919050565b7f596f7520617265206e6f742077686974656c69737465642c207761697420666f60008201527f7220746865207075626c6963206d696e74000000000000000000000000000000602082015250565b600061437b6031836135b8565b91506143868261431f565b604082019050919050565b600060208201905081810360008301526143aa8161436e565b9050919050565b7f43616e206f6e6c79206d696e74206d617820323020746f6b656e73206174206160008201527f2074696d65000000000000000000000000000000000000000000000000000000602082015250565b600061440d6025836135b8565b9150614418826143b1565b604082019050919050565b6000602082019050818103600083015261443c81614400565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061449f6031836135b8565b91506144aa82614443565b604082019050919050565b600060208201905081810360008301526144ce81614492565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614531602b836135b8565b915061453c826144d5565b604082019050919050565b6000602082019050818103600083015261456081614524565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006145a182613668565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145d4576145d36140fd565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061461982613668565b915061462483613668565b925082614634576146336145df565b5b828204905092915050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b600061469b602c836135b8565b91506146a68261463f565b604082019050919050565b600060208201905081810360008301526146ca8161468e565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061472d6029836135b8565b9150614738826146d1565b604082019050919050565b6000602082019050818103600083015261475c81614720565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006147bf602a836135b8565b91506147ca82614763565b604082019050919050565b600060208201905081810360008301526147ee816147b2565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061482b6019836135b8565b9150614836826147f5565b602082019050919050565b6000602082019050818103600083015261485a8161481e565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006148bd602f836135b8565b91506148c882614861565b604082019050919050565b600060208201905081810360008301526148ec816148b0565b9050919050565b600081905092915050565b6000614909826135ad565b61491381856148f3565b93506149238185602086016135c9565b80840191505092915050565b600061493b82856148fe565b915061494782846148fe565b91508190509392505050565b600060ff82169050919050565b600061496b82614953565b915061497683614953565b925082821015614989576149886140fd565b5b828203905092915050565b7f3a2d280000000000000000000000000000000000000000000000000000000000600082015250565b60006149ca6003836135b8565b91506149d582614994565b602082019050919050565b600060208201905081810360008301526149f9816149bd565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614a5c6026836135b8565b9150614a6782614a00565b604082019050919050565b60006020820190508181036000830152614a8b81614a4f565b9050919050565b6000614a9d82613668565b9150614aa883613668565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614add57614adc6140fd565b5b828201905092915050565b7f4d696e7420776f756c6420657863656564206d617820737570706c79206f662060008201527f576f62626c656275677300000000000000000000000000000000000000000000602082015250565b6000614b44602a836135b8565b9150614b4f82614ae8565b604082019050919050565b60006020820190508181036000830152614b7381614b37565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614bd6602c836135b8565b9150614be182614b7a565b604082019050919050565b60006020820190508181036000830152614c0581614bc9565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614c686029836135b8565b9150614c7382614c0c565b604082019050919050565b60006020820190508181036000830152614c9781614c5b565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614cfa6024836135b8565b9150614d0582614c9e565b604082019050919050565b60006020820190508181036000830152614d2981614ced565b9050919050565b6000614d3b82613668565b9150614d4683613668565b925082821015614d5957614d586140fd565b5b828203905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614dc06032836135b8565b9150614dcb82614d64565b604082019050919050565b60006020820190508181036000830152614def81614db3565b9050919050565b6000614e0182613668565b9150614e0c83613668565b925082614e1c57614e1b6145df565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000614e4e82614e27565b614e588185614e32565b9350614e688185602086016135c9565b614e71816135fc565b840191505092915050565b6000608082019050614e9160008301876136fd565b614e9e60208301866136fd565b614eab6040830185613911565b8181036060830152614ebd8184614e43565b905095945050505050565b600081519050614ed78161351e565b92915050565b600060208284031215614ef357614ef26134e8565b5b6000614f0184828501614ec8565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614f6f6020836135b8565b9150614f7a82614f39565b602082019050919050565b60006020820190508181036000830152614f9e81614f62565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614fdb601c836135b8565b9150614fe682614fa5565b602082019050919050565b6000602082019050818103600083015261500a81614fce565b905091905056fea2646970667358221220d09bc8a343b930c700c6ffa422d97c111fe9a4ee421ab739762705220adfcca564736f6c63430008090033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000009576f62626c6562756700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003574f420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f6170692e6461726b706f72742e746563682f776f62626c656275672f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80634fdcee971161010d578063a22cb465116100a0578063cc47a40b1161006f578063cc47a40b146106ee578063db2e21bc14610717578063e222c7f91461072e578063e985e9c514610745578063f2fde38b14610782576101ee565b8063a22cb46514610648578063b88d4fde14610671578063c87b56dd1461069a578063ca3cb522146106d7576101ee565b80638462151c116100dc5780638462151c1461058a5780638da5cb5b146105c757806395d89b41146105f25780639d044ed31461061d576101ee565b80634fdcee97146104ce5780636352211e146104f957806370a0823114610536578063715018a614610573576101ee565b806323b872dd116101855780633af32abf116101545780633af32abf146104145780633ccfd60b1461045157806342842e0e146104685780634f6ccce714610491576101ee565b806323b872dd1461035c5780632f745c591461038557806330176e13146103c257806335377214146103eb576101ee565b806310969523116101c157806310969523146102c157806314b8c2d2146102ea57806318160ddd146103065780631e84c41314610331576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a6004803603810190610215919061354a565b6107ab565b6040516102279190613592565b60405180910390f35b34801561023c57600080fd5b50610245610825565b6040516102529190613646565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d919061369e565b6108b7565b60405161028f919061370c565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190613753565b61093c565b005b3480156102cd57600080fd5b506102e860048036038101906102e391906138c8565b610a54565b005b61030460048036038101906102ff919061369e565b610aea565b005b34801561031257600080fd5b5061031b610f1f565b6040516103289190613920565b60405180910390f35b34801561033d57600080fd5b50610346610f2c565b6040516103539190613592565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e919061393b565b610f46565b005b34801561039157600080fd5b506103ac60048036038101906103a79190613753565b610fa6565b6040516103b99190613920565b60405180910390f35b3480156103ce57600080fd5b506103e960048036038101906103e491906138c8565b61104b565b005b3480156103f757600080fd5b50610412600480360381019061040d9190613a56565b6110e1565b005b34801561042057600080fd5b5061043b60048036038101906104369190613a9f565b611202565b6040516104489190613592565b60405180910390f35b34801561045d57600080fd5b5061046661127f565b005b34801561047457600080fd5b5061048f600480360381019061048a919061393b565b61167b565b005b34801561049d57600080fd5b506104b860048036038101906104b3919061369e565b61169b565b6040516104c59190613920565b60405180910390f35b3480156104da57600080fd5b506104e361170c565b6040516104f09190613646565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b919061369e565b61179a565b60405161052d919061370c565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190613a9f565b61184c565b60405161056a9190613920565b60405180910390f35b34801561057f57600080fd5b50610588611904565b005b34801561059657600080fd5b506105b160048036038101906105ac9190613a9f565b61198c565b6040516105be9190613b8a565b60405180910390f35b3480156105d357600080fd5b506105dc611a96565b6040516105e9919061370c565b60405180910390f35b3480156105fe57600080fd5b50610607611ac0565b6040516106149190613646565b60405180910390f35b34801561062957600080fd5b50610632611b52565b60405161063f9190613592565b60405180910390f35b34801561065457600080fd5b5061066f600480360381019061066a9190613bd8565b611b6c565b005b34801561067d57600080fd5b5061069860048036038101906106939190613cb9565b611ced565b005b3480156106a657600080fd5b506106c160048036038101906106bc919061369e565b611d4f565b6040516106ce9190613646565b60405180910390f35b3480156106e357600080fd5b506106ec611df6565b005b3480156106fa57600080fd5b5061071560048036038101906107109190613753565b611ea4565b005b34801561072357600080fd5b5061072c611f97565b005b34801561073a57600080fd5b50610743612089565b005b34801561075157600080fd5b5061076c60048036038101906107679190613d3c565b612137565b6040516107799190613592565b60405180910390f35b34801561078e57600080fd5b506107a960048036038101906107a49190613a9f565b6121cb565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061081e575061081d826122c3565b5b9050919050565b60606000805461083490613dab565b80601f016020809104026020016040519081016040528092919081815260200182805461086090613dab565b80156108ad5780601f10610882576101008083540402835291602001916108ad565b820191906000526020600020905b81548152906001019060200180831161089057829003601f168201915b5050505050905090565b60006108c2826123a5565b610901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f890613e4f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109478261179a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109af90613ee1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109d7612411565b73ffffffffffffffffffffffffffffffffffffffff161480610a065750610a0581610a00612411565b612137565b5b610a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3c90613f73565b60405180910390fd5b610a4f8383612419565b505050565b610a5c612411565b73ffffffffffffffffffffffffffffffffffffffff16610a7a611a96565b73ffffffffffffffffffffffffffffffffffffffff1614610ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac790613fdf565b60405180910390fd5b80600c9080519060200190610ae692919061343b565b5050565b6002600b541415610b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b279061404b565b60405180910390fd5b6002600b81905550600d60000160159054906101000a900460ff1680610b655750600d60000160169054906101000a900460ff165b610ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9b906140dd565b60405180910390fd5b600d60000160039054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681610be3919061412c565b3414610c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1b906141d2565b60405180910390fd5b600d60000160169054906101000a900460ff1615610e0b57600081118015610c615750600d60000160149054906101000a900460ff1660ff168111155b610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9790614264565b60405180910390fd5b600280811115610cb357610cb2614284565b5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166002811115610d1257610d11614284565b5b1415610d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4a906142ff565b60405180910390fd5b60016002811115610d6757610d66614284565b5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166002811115610dc657610dc5614284565b5b14610e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfd90614391565b60405180910390fd5b610e89565b600d60000160159054906101000a900460ff1615610e8857600081118015610e485750600d60000160139054906101000a900460ff1660ff168111155b610e87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7e90614423565b60405180910390fd5b5b5b610e9333826124d2565b600d60000160169054906101000a900460ff1615610f14576002601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690836002811115610f0e57610f0d614284565b5b02179055505b6001600b8190555050565b6000600880549050905090565b6000600d60000160159054906101000a900460ff16905090565b610f57610f51612411565b82612572565b610f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8d906144b5565b60405180910390fd5b610fa1838383612650565b505050565b6000610fb18361184c565b8210610ff2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe990614547565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b611053612411565b73ffffffffffffffffffffffffffffffffffffffff16611071611a96565b73ffffffffffffffffffffffffffffffffffffffff16146110c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110be90613fdf565b60405180910390fd5b80600f90805190602001906110dd92919061343b565b5050565b6110e9612411565b73ffffffffffffffffffffffffffffffffffffffff16611107611a96565b73ffffffffffffffffffffffffffffffffffffffff161461115d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115490613fdf565b60405180910390fd5b60005b81518110156111fe5760016010600084848151811061118257611181614567565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360028111156111e6576111e5614284565b5b021790555080806111f690614596565b915050611160565b5050565b600080600281111561121757611216614284565b5b601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16600281111561127657611275614284565b5b14159050919050565b611287612411565b73ffffffffffffffffffffffffffffffffffffffff166112a5611a96565b73ffffffffffffffffffffffffffffffffffffffff16146112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f290613fdf565b60405180910390fd5b600047905073435cd3902d1b4f4e842f2c0fd5028eee71dd099c73ffffffffffffffffffffffffffffffffffffffff166108fc6064600a60328561133f919061412c565b611349919061460e565b611353919061460e565b9081150290604051600060405180830381858888f1935050505015801561137e573d6000803e3d6000fd5b50730cb121e3e18c364f318a1fb97bd304e5855c825073ffffffffffffffffffffffffffffffffffffffff166108fc6064600a6032856113be919061412c565b6113c8919061460e565b6113d2919061460e565b9081150290604051600060405180830381858888f193505050501580156113fd573d6000803e3d6000fd5b5073927e093b623f90a0311c03009aa1d1df4cf0863473ffffffffffffffffffffffffffffffffffffffff166108fc6064600a60c88561143d919061412c565b611447919061460e565b611451919061460e565b9081150290604051600060405180830381858888f1935050505015801561147c573d6000803e3d6000fd5b507248d02963b97445a012ad6d44bd38a0239c5b8873ffffffffffffffffffffffffffffffffffffffff166108fc6064600a60c8856114bb919061412c565b6114c5919061460e565b6114cf919061460e565b9081150290604051600060405180830381858888f193505050501580156114fa573d6000803e3d6000fd5b5073491dc513212e0b896690b6fb4483929f0abde97573ffffffffffffffffffffffffffffffffffffffff166108fc6064600a60c88561153a919061412c565b611544919061460e565b61154e919061460e565b9081150290604051600060405180830381858888f19350505050158015611579573d6000803e3d6000fd5b50730f075ac7186a8d43c1b6a819b5bceff7c936d7cf73ffffffffffffffffffffffffffffffffffffffff166108fc6064600a607d856115b9919061412c565b6115c3919061460e565b6115cd919061460e565b9081150290604051600060405180830381858888f193505050501580156115f8573d6000803e3d6000fd5b5073e1db3822239a27451b68a0cffc19a9160ee36f7573ffffffffffffffffffffffffffffffffffffffff166108fc6064600a60af85611638919061412c565b611642919061460e565b61164c919061460e565b9081150290604051600060405180830381858888f19350505050158015611677573d6000803e3d6000fd5b5050565b61169683838360405180602001604052806000815250611ced565b505050565b60006116a5610f1f565b82106116e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116dd906146b1565b60405180910390fd5b600882815481106116fa576116f9614567565b5b90600052602060002001549050919050565b600c805461171990613dab565b80601f016020809104026020016040519081016040528092919081815260200182805461174590613dab565b80156117925780601f1061176757610100808354040283529160200191611792565b820191906000526020600020905b81548152906001019060200180831161177557829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183a90614743565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b4906147d5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61190c612411565b73ffffffffffffffffffffffffffffffffffffffff1661192a611a96565b73ffffffffffffffffffffffffffffffffffffffff1614611980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197790613fdf565b60405180910390fd5b61198a60006128ac565b565b606060006119998361184c565b905060008114156119f657600067ffffffffffffffff8111156119bf576119be61379d565b5b6040519080825280602002602001820160405280156119ed5781602001602082028036833780820191505090505b50915050611a91565b60008167ffffffffffffffff811115611a1257611a1161379d565b5b604051908082528060200260200182016040528015611a405781602001602082028036833780820191505090505b50905060005b82811015611a8a57611a588582610fa6565b828281518110611a6b57611a6a614567565b5b6020026020010181815250508080611a8290614596565b915050611a46565b5080925050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611acf90613dab565b80601f0160208091040260200160405190810160405280929190818152602001828054611afb90613dab565b8015611b485780601f10611b1d57610100808354040283529160200191611b48565b820191906000526020600020905b815481529060010190602001808311611b2b57829003601f168201915b5050505050905090565b6000600d60000160169054906101000a900460ff16905090565b611b74612411565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd990614841565b60405180910390fd5b8060056000611bef612411565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c9c612411565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ce19190613592565b60405180910390a35050565b611cfe611cf8612411565b83612572565b611d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d34906144b5565b60405180910390fd5b611d4984848484612972565b50505050565b6060611d5a826123a5565b611d99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d90906148d3565b60405180910390fd5b6000611da36129ce565b90506000815111611dc35760405180602001604052806000815250611dee565b80611dcd84612a60565b604051602001611dde92919061492f565b6040516020818303038152906040525b915050919050565b611dfe612411565b73ffffffffffffffffffffffffffffffffffffffff16611e1c611a96565b73ffffffffffffffffffffffffffffffffffffffff1614611e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6990613fdf565b60405180910390fd5b600d60000160169054906101000a900460ff1615600d60000160166101000a81548160ff021916908315150217905550565b611eac612411565b73ffffffffffffffffffffffffffffffffffffffff16611eca611a96565b73ffffffffffffffffffffffffffffffffffffffff1614611f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1790613fdf565b60405180910390fd5b600081118015611f455750600d60000160029054906101000a900460ff1660ff168111155b611f4e57600080fd5b611f5882826124d2565b80600d60000160029054906101000a900460ff16611f769190614960565b600d60000160026101000a81548160ff021916908360ff1602179055505050565b611f9f612411565b73ffffffffffffffffffffffffffffffffffffffff16611fbd611a96565b73ffffffffffffffffffffffffffffffffffffffff1614612013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200a90613fdf565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050612087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207e906149e0565b60405180910390fd5b565b612091612411565b73ffffffffffffffffffffffffffffffffffffffff166120af611a96565b73ffffffffffffffffffffffffffffffffffffffff1614612105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fc90613fdf565b60405180910390fd5b600d60000160159054906101000a900460ff1615600d60000160156101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6121d3612411565b73ffffffffffffffffffffffffffffffffffffffff166121f1611a96565b73ffffffffffffffffffffffffffffffffffffffff1614612247576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223e90613fdf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ae90614a72565b60405180910390fd5b6122c0816128ac565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061238e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061239e575061239d82612bc1565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661248c8361179a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600d60000160009054906101000a900461ffff1661ffff16816124f3610f1f565b6124fd9190614a92565b111561253e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253590614b5a565b60405180910390fd5b60005b8181101561256d5761255a83612555610f1f565b612c2b565b808061256590614596565b915050612541565b505050565b600061257d826123a5565b6125bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b390614bec565b60405180910390fd5b60006125c78361179a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061263657508373ffffffffffffffffffffffffffffffffffffffff1661261e846108b7565b73ffffffffffffffffffffffffffffffffffffffff16145b8061264757506126468185612137565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166126708261179a565b73ffffffffffffffffffffffffffffffffffffffff16146126c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bd90614c7e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612736576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272d90614d10565b60405180910390fd5b612741838383612c49565b61274c600082612419565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461279c9190614d30565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127f39190614a92565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61297d848484612650565b61298984848484612d5d565b6129c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129bf90614dd6565b60405180910390fd5b50505050565b6060600f80546129dd90613dab565b80601f0160208091040260200160405190810160405280929190818152602001828054612a0990613dab565b8015612a565780601f10612a2b57610100808354040283529160200191612a56565b820191906000526020600020905b815481529060010190602001808311612a3957829003601f168201915b5050505050905090565b60606000821415612aa8576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bbc565b600082905060005b60008214612ada578080612ac390614596565b915050600a82612ad3919061460e565b9150612ab0565b60008167ffffffffffffffff811115612af657612af561379d565b5b6040519080825280601f01601f191660200182016040528015612b285781602001600182028036833780820191505090505b5090505b60008514612bb557600182612b419190614d30565b9150600a85612b509190614df6565b6030612b5c9190614a92565b60f81b818381518110612b7257612b71614567565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612bae919061460e565b9450612b2c565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612c45828260405180602001604052806000815250612ef4565b5050565b612c54838383612f4f565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c9757612c9281612f54565b612cd6565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612cd557612cd48382612f9d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d1957612d148161310a565b612d58565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612d5757612d5682826131db565b5b5b505050565b6000612d7e8473ffffffffffffffffffffffffffffffffffffffff1661325a565b15612ee7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612da7612411565b8786866040518563ffffffff1660e01b8152600401612dc99493929190614e7c565b602060405180830381600087803b158015612de357600080fd5b505af1925050508015612e1457506040513d601f19601f82011682018060405250810190612e119190614edd565b60015b612e97573d8060008114612e44576040519150601f19603f3d011682016040523d82523d6000602084013e612e49565b606091505b50600081511415612e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8690614dd6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612eec565b600190505b949350505050565b612efe838361326d565b612f0b6000848484612d5d565b612f4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4190614dd6565b60405180910390fd5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612faa8461184c565b612fb49190614d30565b9050600060076000848152602001908152602001600020549050818114613099576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061311e9190614d30565b905060006009600084815260200190815260200160002054905060006008838154811061314e5761314d614567565b5b9060005260206000200154905080600883815481106131705761316f614567565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806131bf576131be614f0a565b5b6001900381819060005260206000200160009055905550505050565b60006131e68361184c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132d490614f85565b60405180910390fd5b6132e6816123a5565b15613326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161331d90614ff1565b60405180910390fd5b61333260008383612c49565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133829190614a92565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461344790613dab565b90600052602060002090601f01602090048101928261346957600085556134b0565b82601f1061348257805160ff19168380011785556134b0565b828001600101855582156134b0579182015b828111156134af578251825591602001919060010190613494565b5b5090506134bd91906134c1565b5090565b5b808211156134da5760008160009055506001016134c2565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613527816134f2565b811461353257600080fd5b50565b6000813590506135448161351e565b92915050565b6000602082840312156135605761355f6134e8565b5b600061356e84828501613535565b91505092915050565b60008115159050919050565b61358c81613577565b82525050565b60006020820190506135a76000830184613583565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156135e75780820151818401526020810190506135cc565b838111156135f6576000848401525b50505050565b6000601f19601f8301169050919050565b6000613618826135ad565b61362281856135b8565b93506136328185602086016135c9565b61363b816135fc565b840191505092915050565b60006020820190508181036000830152613660818461360d565b905092915050565b6000819050919050565b61367b81613668565b811461368657600080fd5b50565b60008135905061369881613672565b92915050565b6000602082840312156136b4576136b36134e8565b5b60006136c284828501613689565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006136f6826136cb565b9050919050565b613706816136eb565b82525050565b600060208201905061372160008301846136fd565b92915050565b613730816136eb565b811461373b57600080fd5b50565b60008135905061374d81613727565b92915050565b6000806040838503121561376a576137696134e8565b5b60006137788582860161373e565b925050602061378985828601613689565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6137d5826135fc565b810181811067ffffffffffffffff821117156137f4576137f361379d565b5b80604052505050565b60006138076134de565b905061381382826137cc565b919050565b600067ffffffffffffffff8211156138335761383261379d565b5b61383c826135fc565b9050602081019050919050565b82818337600083830152505050565b600061386b61386684613818565b6137fd565b90508281526020810184848401111561388757613886613798565b5b613892848285613849565b509392505050565b600082601f8301126138af576138ae613793565b5b81356138bf848260208601613858565b91505092915050565b6000602082840312156138de576138dd6134e8565b5b600082013567ffffffffffffffff8111156138fc576138fb6134ed565b5b6139088482850161389a565b91505092915050565b61391a81613668565b82525050565b60006020820190506139356000830184613911565b92915050565b600080600060608486031215613954576139536134e8565b5b60006139628682870161373e565b93505060206139738682870161373e565b925050604061398486828701613689565b9150509250925092565b600067ffffffffffffffff8211156139a9576139a861379d565b5b602082029050602081019050919050565b600080fd5b60006139d26139cd8461398e565b6137fd565b905080838252602082019050602084028301858111156139f5576139f46139ba565b5b835b81811015613a1e5780613a0a888261373e565b8452602084019350506020810190506139f7565b5050509392505050565b600082601f830112613a3d57613a3c613793565b5b8135613a4d8482602086016139bf565b91505092915050565b600060208284031215613a6c57613a6b6134e8565b5b600082013567ffffffffffffffff811115613a8a57613a896134ed565b5b613a9684828501613a28565b91505092915050565b600060208284031215613ab557613ab46134e8565b5b6000613ac38482850161373e565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613b0181613668565b82525050565b6000613b138383613af8565b60208301905092915050565b6000602082019050919050565b6000613b3782613acc565b613b418185613ad7565b9350613b4c83613ae8565b8060005b83811015613b7d578151613b648882613b07565b9750613b6f83613b1f565b925050600181019050613b50565b5085935050505092915050565b60006020820190508181036000830152613ba48184613b2c565b905092915050565b613bb581613577565b8114613bc057600080fd5b50565b600081359050613bd281613bac565b92915050565b60008060408385031215613bef57613bee6134e8565b5b6000613bfd8582860161373e565b9250506020613c0e85828601613bc3565b9150509250929050565b600067ffffffffffffffff821115613c3357613c3261379d565b5b613c3c826135fc565b9050602081019050919050565b6000613c5c613c5784613c18565b6137fd565b905082815260208101848484011115613c7857613c77613798565b5b613c83848285613849565b509392505050565b600082601f830112613ca057613c9f613793565b5b8135613cb0848260208601613c49565b91505092915050565b60008060008060808587031215613cd357613cd26134e8565b5b6000613ce18782880161373e565b9450506020613cf28782880161373e565b9350506040613d0387828801613689565b925050606085013567ffffffffffffffff811115613d2457613d236134ed565b5b613d3087828801613c8b565b91505092959194509250565b60008060408385031215613d5357613d526134e8565b5b6000613d618582860161373e565b9250506020613d728582860161373e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613dc357607f821691505b60208210811415613dd757613dd6613d7c565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613e39602c836135b8565b9150613e4482613ddd565b604082019050919050565b60006020820190508181036000830152613e6881613e2c565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ecb6021836135b8565b9150613ed682613e6f565b604082019050919050565b60006020820190508181036000830152613efa81613ebe565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613f5d6038836135b8565b9150613f6882613f01565b604082019050919050565b60006020820190508181036000830152613f8c81613f50565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613fc96020836135b8565b9150613fd482613f93565b602082019050919050565b60006020820190508181036000830152613ff881613fbc565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614035601f836135b8565b915061404082613fff565b602082019050919050565b6000602082019050818103600083015261406481614028565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e7420576f626260008201527f6c65627567730000000000000000000000000000000000000000000000000000602082015250565b60006140c76026836135b8565b91506140d28261406b565b604082019050919050565b600060208201905081810360008301526140f6816140ba565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061413782613668565b915061414283613668565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561417b5761417a6140fd565b5b828202905092915050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b60006141bc601f836135b8565b91506141c782614186565b602082019050919050565b600060208201905081810360008301526141eb816141af565b9050919050565b7f43616e206f6e6c79206d696e74206d617820313020746f6b656e73206174206160008201527f2074696d65000000000000000000000000000000000000000000000000000000602082015250565b600061424e6025836135b8565b9150614259826141f2565b604082019050919050565b6000602082019050818103600083015261427d81614241565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f596f7527766520616c7265616479206d696e7465640000000000000000000000600082015250565b60006142e96015836135b8565b91506142f4826142b3565b602082019050919050565b60006020820190508181036000830152614318816142dc565b9050919050565b7f596f7520617265206e6f742077686974656c69737465642c207761697420666f60008201527f7220746865207075626c6963206d696e74000000000000000000000000000000602082015250565b600061437b6031836135b8565b91506143868261431f565b604082019050919050565b600060208201905081810360008301526143aa8161436e565b9050919050565b7f43616e206f6e6c79206d696e74206d617820323020746f6b656e73206174206160008201527f2074696d65000000000000000000000000000000000000000000000000000000602082015250565b600061440d6025836135b8565b9150614418826143b1565b604082019050919050565b6000602082019050818103600083015261443c81614400565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061449f6031836135b8565b91506144aa82614443565b604082019050919050565b600060208201905081810360008301526144ce81614492565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614531602b836135b8565b915061453c826144d5565b604082019050919050565b6000602082019050818103600083015261456081614524565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006145a182613668565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145d4576145d36140fd565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061461982613668565b915061462483613668565b925082614634576146336145df565b5b828204905092915050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b600061469b602c836135b8565b91506146a68261463f565b604082019050919050565b600060208201905081810360008301526146ca8161468e565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061472d6029836135b8565b9150614738826146d1565b604082019050919050565b6000602082019050818103600083015261475c81614720565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006147bf602a836135b8565b91506147ca82614763565b604082019050919050565b600060208201905081810360008301526147ee816147b2565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061482b6019836135b8565b9150614836826147f5565b602082019050919050565b6000602082019050818103600083015261485a8161481e565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006148bd602f836135b8565b91506148c882614861565b604082019050919050565b600060208201905081810360008301526148ec816148b0565b9050919050565b600081905092915050565b6000614909826135ad565b61491381856148f3565b93506149238185602086016135c9565b80840191505092915050565b600061493b82856148fe565b915061494782846148fe565b91508190509392505050565b600060ff82169050919050565b600061496b82614953565b915061497683614953565b925082821015614989576149886140fd565b5b828203905092915050565b7f3a2d280000000000000000000000000000000000000000000000000000000000600082015250565b60006149ca6003836135b8565b91506149d582614994565b602082019050919050565b600060208201905081810360008301526149f9816149bd565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614a5c6026836135b8565b9150614a6782614a00565b604082019050919050565b60006020820190508181036000830152614a8b81614a4f565b9050919050565b6000614a9d82613668565b9150614aa883613668565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614add57614adc6140fd565b5b828201905092915050565b7f4d696e7420776f756c6420657863656564206d617820737570706c79206f662060008201527f576f62626c656275677300000000000000000000000000000000000000000000602082015250565b6000614b44602a836135b8565b9150614b4f82614ae8565b604082019050919050565b60006020820190508181036000830152614b7381614b37565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614bd6602c836135b8565b9150614be182614b7a565b604082019050919050565b60006020820190508181036000830152614c0581614bc9565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614c686029836135b8565b9150614c7382614c0c565b604082019050919050565b60006020820190508181036000830152614c9781614c5b565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614cfa6024836135b8565b9150614d0582614c9e565b604082019050919050565b60006020820190508181036000830152614d2981614ced565b9050919050565b6000614d3b82613668565b9150614d4683613668565b925082821015614d5957614d586140fd565b5b828203905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614dc06032836135b8565b9150614dcb82614d64565b604082019050919050565b60006020820190508181036000830152614def81614db3565b9050919050565b6000614e0182613668565b9150614e0c83613668565b925082614e1c57614e1b6145df565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000614e4e82614e27565b614e588185614e32565b9350614e688185602086016135c9565b614e71816135fc565b840191505092915050565b6000608082019050614e9160008301876136fd565b614e9e60208301866136fd565b614eab6040830185613911565b8181036060830152614ebd8184614e43565b905095945050505050565b600081519050614ed78161351e565b92915050565b600060208284031215614ef357614ef26134e8565b5b6000614f0184828501614ec8565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614f6f6020836135b8565b9150614f7a82614f39565b602082019050919050565b60006020820190508181036000830152614f9e81614f62565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614fdb601c836135b8565b9150614fe682614fa5565b602082019050919050565b6000602082019050818103600083015261500a81614fce565b905091905056fea2646970667358221220d09bc8a343b930c700c6ffa422d97c111fe9a4ee421ab739762705220adfcca564736f6c63430008090033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000009576f62626c6562756700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003574f420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f6170692e6461726b706f72742e746563682f776f62626c656275672f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Wobblebug
Arg [1] : symbol (string): WOB
Arg [2] : baseTokenURI (string): https://api.darkport.tech/wobblebug/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [4] : 576f62626c656275670000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 574f420000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000024
Arg [8] : 68747470733a2f2f6170692e6461726b706f72742e746563682f776f62626c65
Arg [9] : 6275672f00000000000000000000000000000000000000000000000000000000


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.